Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for mblan180131
Member Avatar for Matt_17

I am writing a web site and I am using javascript to read/write to a file. There are multiple sites that say to do this: var file = new File(txtFile); however, it doesn't work. I fired up chrome's developer tools and went to the javascript console, and it gave me …

Member Avatar for stbuchok
0
210
Member Avatar for sarahtodde

Siju 1, this is not a case of css not loading. It seems your JavaScript and images are turned off. web pages will appear like this if your javascript and images are not on.

Member Avatar for almostbob
0
444
Member Avatar for killingmonk

I think what is happening here is that javascript is seeing the **document.getElementById('clickMe').onclick = testOne();** and is assigning the **document.getElementById('clickMe').onclick** value to whatever testOne(); returns. so just try doing this: <input type="submit" value="Click Me" id="clickMe" **onclick="testOne()"**/>

Member Avatar for Matt_17
0
210

The End.