Tagged Questions

0
votes
2answers
76 views

document.obj.write() ..is it possible?

what i wanted to do is when i clicked on a checkbox it will automatically appear on a certain part of the page. i tried to give a checkbox an onclick='displayit()'/oncchange='displayit()' where ...
0
votes
1answer
635 views

Javascript floodlight tracking iframe leaves browser window blank, please help!

I have been asked to implement a javascript floodlight tag onto my site which is to be called everytime a customer downloads a pdf file. I have tried to implement this as follows: <script ...
0
votes
2answers
1k views

When using onclick-event and document.write in javascript, does it always have to open in new window

Does it have to open in the sam Eg: function write(){ document.write("write") } input type="button" onclick="write()" value="Click"