Javascript question
Javascript question
- Started
- Last post
- 1 Response
- pushme
I'd like to pass a javascript variable from a simple link to a function on another page. That link will have to pop that page up as well. The pop up works of course but the function call from the link does not.
link - page 1:
a href="test.html" onclick="linkFromCMS('asx_files... target="new");>click herefunction - page 2
function linkFromCMS(args){
document.mediaPlayer.fileName = args;
alert (args)
}
- pushme0
bump