this code :
document.write chr(34)
to print (") but it's in VBScript.
How can I write this code but using JavaScript ?
Printable View
this code :
document.write chr(34)
to print (") but it's in VBScript.
How can I write this code but using JavaScript ?
-MattCode:<script type="text/javascript" language="JavaScript">
<!--//
document.write(char(34));
//-->
</script>
Why don't you just do document.write('"') or document.write("\"")?