I am using the JQuery load functionality to load content of one page into another. My main page (index.html) has a div tag with id 'abcd'. I need to load contents of another page (page1.html) into the div tag specified. So, I write the following code :-
$('#abcd').load('page1.html?title=xyz','',function(){})
Note that I am also passing parameter 'title=xyz' alongwith the URL of the page to load. I need to get this parameter and work with it in page1.html content. How can I fetch this in page1.html page?