hey there :-)
Okay, i have a job to do before tomorrow morning..
i'm working on some jquery. Where i load some external file data..
What i really want to know, is how am i going to load some data when i $.post / or $.get some data through jquery
Send request into jquery <a href="javascript:;" onclick="$.view.load('prices');">hey </a>
and the same time change the url browser to ex. mywebsite.com/prices/ without making the refresh on the page
is it possible, and how to do ?
// edit (not working)
<li><a href="/prices" onclick="$.view.show('prices');"> <span>prices</span></a></li>
jquery: $('a.prices').click(function(e) {
e.preventDefault();
$.view.show('prices');
});`
but can see that some of the others samples are not that easy to make it work..