Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

1.passing values to new window

Status
Not open for further replies.

Nanda

Programmer
Nov 14, 2000
104
US
If anybody knows, how to do following...

I need to pass on a value to a new open window...how do I do it?
I have opened a new window using javascript on a hyperlink
function goLink(kw){
urlPath="definition_text.asp"
window.open(urlPath,'definition')
}

I need to pass on keyword to jump to appropriate definition.

Thanks
 
Pass it in a querystring, like so:
urlPath="definition_text.asp?define=this"

Then, in definition_text.asp, read your "define" value to determine what to show.

HTH

Choo Khor
choo.khor@intelebill.com
 
Thank you Choo for your prompt reply.
It solved my problem.
Thanks again.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top