After searching a lot over the internet I finally decided to post this question.
I am using THICKBOX jquery tabs.When any of the tab is clicked I want to pass the URL.IDNUMBER to the iframe which on tab pages . I was able to send the IDNUMBER and display it in a text box by simply using jquery on the main page
$("#mytest").val('IDNUMBER');
Tab Page:
<input id="mytest" name="IDNUMBER" type="text">
But am unable to pass the idnumber as a url parameter to the iframe.The tab page is an HTML page.
Thank You
Today I faced the same problem. I solved it with the following approach:
Then inside the iframe we can parse the GET from javascript, I've used this
http://jquery-howto.blogspot.com/2009/09/get-url-parameters-values-with-jquery.html
so then I had all the get variables and therefore could do so something like:
Hope I've helped. Please note that although the link is from a jQuery site, the code is generic JavaScript.