kidult schrieb: > how do i determine wether the location.href has changed without reloading a > page. i am passing values to a frame via GET using location.href but i dont > want the page to reload. i am adding values to a cookie via GET and adding > images as well. what is the easiest way to do this?
The only way to do that is changing the hash...: location.hash = ... I'm using that in the tabs plugin. To determine wether that hash has changed, you could maybe utilize my history plugin: http://stilbuero.de/jquery/history/ Or do you simply need a function to be executed after the images has been added? Then you could just use a callback for your XHR request. -- Klaus _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
