Passing Two Values Through One Single Function - Jquery/ajax
Hi everyone,
Here is my code:
-
<script type="text/javascript">
function nextpage(str)
{
$('#content1').html('Loading data, please wait...').load("nextpage.php?q="+str+"&r="+str);
}
</script>
<a href="java script:nextpage('1&2')">Next</a>
The one should be the value of q and the 2 the value of r... I can't get it.
I can get the q variable to pass no problem and can echo it via php, but nada with the r. I am pretty weak with javascript so any advice would help.
I thought the ampersand would separate the two values but it doesn't. How can I do it in a single function since <a href="java script:nextpage('1&1')"> does not work?
Thanks.