Say I have an html page as the following: <html> <head> <script> function test() { alert("Test"); } </script> </head></html>How would I go about to access that function
through the url? Something like these (these
don't work):test.html?test
or
test.html#test
You might try something like if(document.location.search == '?test') { test(); }
HTH
