I have problems with Jquery Address in IE 7 and 8. I did like that:

<script>
$.address.crawlable(false);
$.address.state('/');
$.address.strict(false);
$.address.parameter("param", "new_value");
</script>

In browsers is like this: www.site.com/?param=new_value

but, only IEs is like this: www.site.com/#?param=new_value

and still does the redirection the site, Anyone know how to solve this? I've looked at the documentation, but found nothing.

Thanks

link|improve this question
As $.address is no part of core jquery you might want to add which plugin you're using. – Yoshi Jan 24 at 12:41
Looks like the jQuery address plugin: asual.com/jquery/address – danwellman Jan 24 at 12:45
feedback

1 Answer

up vote 0 down vote accepted

I solved this problem:

<script>
$.address.state('/');
$.address.value("?param=new_value");
</script>

In IE displays like this: www.site.com/#/?param=new_value

Out of curiosity, because in IE it adds the hash (#)? Thanks

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.