Is it possible to prompt jquery from a specific url? I want something like example.com/videos.html#open and have the anchor "#open" to prompt the function. Any help would be greatly appreciated!
Fotiman
6:37 pm on Sep 15, 2010 (gmt 0)
On your videos.html page, you would need to do something like:
var h = location.hash; if (h == '#open') { // do something }