How is it possible - in jQuery- to fetch the URL when clicking inline links like following?
http://domain.com/#!/?model=ford
http://domain.com/#!/?color=blue
Following code grabs when you reload the whole browser, but not when you click the "inline links"
$(location).attr('href');
A site using the technique Im looking for is the following: http://www.modezine.com/se/#!/?category=women Try pressing the different colors and look at the URL and the content being reloaded without browser reload.