JQuery Address of the changed event

I am trying to use jQuery URL http://www.asual.com/jquery/address/

On the click event, I am setting $ .address.value (mypath);

This disables the $ .address.change () event.

When I click a link, I want the behavior to be slightly different from when this event is triggered by a back / forward button click or with a bookmark or link.

Is there any way to distinguish between the two events. I looked at the event object passed to $ .address.change () and they seem to be the same in both situations.

+2


a source to share


1 answer


I think I found the answer. There are two more events: $ .address.internalChange (fn) and $ .address.externalChange (fn). ExternalChange event for buttons and forward / back links. This is what I need.



+5


a source







All Articles