quick question:
i want to send this in a script using control send
Code:
javascript:function getLinks(){top.w=window.open('','getlinks','width=350,height=250'+',menubar=0'+',toolbar=0'+',status=0'+',scrollbars=1'+',resizable=1');docRef=top.w.document.open("text/html","replace"); for(var i=0;i<document.links.length;i++){link=document.links[i]; top.w.document.writeln(i+' '+link.href+'<br>');}};getLinks();
the problem is, it wont send beacuse it has semicolons (;) in it, which, when used in a script, doesnt include the words after the semicolon.
is there anyway to make it so it ignors the semicolon and sends everything after the semicolon?
thanks.