I'm not all the familiar with the .load functionality of jQuery, but it would be REALLY cool if I could do what's in the url.
Basically, I've got a PHP loop that cycles for 10 pieces of content per page. This is based on a Query String
http://domain.com/page/?offSet=0&rpp=10
will load the 10 most recent bits of content (rpp=10)
http://domain.com/page/?offSet=10&rpp=10
this loads the content 11-20 (notice offset=10). Offset 20 will produce 21-30, etc.
BASICALLY - I've got some links at the bottom that use PHP math to determine the current offset and add 10 or subtract 10.
Currently, they reload the whole page (gross). Can I use .load with the query strings to grab the container div with the other content?
$.load()calls, though) on page "request".domain.com/page.aspxetc. with no query string to boot. Figured I'd ask for those who want to know but don't know and spend all day on SO