Jump to content

Passing two values through one single function - jQuery/Ajax call


suttercain

Recommended Posts

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="javascript:nextpage('1&1')">Next</a>

 

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="javascript:nextpage('1&1')"> does not work?

 

Thanks.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.