QUOTE
<!-- start
http://exitcashflow.com/get_paid.php?ref=xxxxxxx code -->
<script language="JavaScript">
<!--
window.open('http://exitcashflow.com/get_paid.php?ref=xxxxxxx');
--></script>
<!-- end
http://exitcashflow.com/get_paid.php?ref=xxxxxxx code -->
doesn't the browser treat this as a comment?
try removing it...
and why don't you try frames?
i'm using frames?
The comments within the <script> tag are for backwards compatibility. If the browser isn't running javascript, the comments are there to prevent them from being printed to the document. If they aren't there, you get unpredictale results with old browsers.
Comments within script tags are denoted by "//", as it is in Java, C++ and javascript.
<!-- --> Are comments for HTML. Once the reader on the browser enters the script tag, it applies different rules.
QUOTE
You do not have an event for that action that's why i will give you both examples:
It makes no difference really. The program will execute anything in the script tags with impunity. Try adding all the possible arguments to the
window.open('<URL>','<Window Name>','<Params>');example:
window.open('http://exitcashflow.com/get_paid.php?ref=xxxxxxx','_blank','WIDTH=200,HEIGHT=200');Otherwise the code is fine. Make sure javascript is enabled and your popup-blocker is disabled. Popup blockers typically catch the "NewWindow" event set off by browsers for new instances of browsers (ie. popups in browsers).