up vote 3 down vote favorite
share [g+] share [fb]

After updating or creating a record I use url helper to redirect to the part on the page where the record happened to be located:

if record.save
  ....
  redirect_to records_url, :anchor => "record_" + record_id.to_s
end

the resulting url will be something like

http://localhost:3000/records#record_343242

I want to highlight the record using jquery or prototype, and the anchor is the exact id that I am looking for. Can I capture it?

link|improve this question

57% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I presume you're trying to capture it in JavaScript?

var record_id = window.location.href.hash.split("_")[1];

In Prototype you could write:

var record_id = window.location.href.hash.split("_").last;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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