vote up 0 vote down star

as title suggests. id string is passed to view as ViewData variable.

flag

72% accept rate

3 Answers

vote up 3 vote down check

Looks like there is a nice plug-in for jQuery available to do just that here: http://flesler.blogspot.com/2007/10/jqueryscrollto.html

link|flag
vote up 0 vote down

You could also append the ID to the URL using the hash:

http://www.someurl.com/page.html#the_id
link|flag
Works if it's an anchor, but not if it is any generic element on the page. – tvanfosson Aug 11 at 21:53
Presumably this is also on the rendering side which would mean that you'd have to redirect to the new url and process the request again, but this time with the tag. – tvanfosson Aug 11 at 22:01
anchor like <a name="test"></a>? It works with every ID on the page. – fphilipe Aug 12 at 5:33
vote up 2 vote down

$('#id')[0].focus() should do it

link|flag
That will trigger the focus event handlers, but it won't actually call the focus() method on the underlying object. – tvanfosson Aug 11 at 21:48
@tvanfosson you're right, i fixed that. – Rex M Aug 11 at 21:49
It's weird that the documentation says one thing, but they have an example that does the opposite. In retrospect, I'd say, maybe try the focus() method on the jQuery object itself and see if it works. – tvanfosson Aug 11 at 21:53
Note: even if it works, it will probably only work for an input element. Not every DOM object supports the focus method. – tvanfosson Aug 11 at 21:55
@tvanfosson yeah, I've done something like this in the past but now that I've let it sit on my brain for a few minutes I'm not so sure if this was it. – Rex M Aug 11 at 22:00
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.