$.address.change() runs twice when using $.address.queryString()
if have a url of:
www.example.com
and i run the following code:
$.address.change(function(event)
{
if(event.parameters['user_id'])
{
alert(event.parameters['user_id'])
}
});
$.address.queryString('user_id=902715614&user_name=James');
it alerts the user_id twice
however, shouldn't it only alert once?