• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Javascript Variables Passed Through URL

You could just use PHP to insert the value of the variable that was passed through:

<script language=JavaScript><!--
var strVariable = <?php
print($variable);

?>;
//-->
</script>
 
Arg, only its on a CGI page that frickin I can't edit and PHP won't parse stuff on that. It's GOTTA be pure Javascript.

 
Above script gives errors:

Line: 35
Character: 1
Error: Object doesn't support this property or method.
Code: 0


Whoppee!

Line 35 btw is: var pos = pairs.indexOf('=');


Using IE 5.0
 
Back
Top