
December 17th, 2012, 08:34 AM
|
|
Registered User
|
|
Join Date: May 2010
Posts: 28
Time spent in forums: 4 h 41 m 2 sec
Reputation Power: 0
|
|
How to run/test JavaScript?
Hello,
I'm reading David Flanagan's " javascript: The Definitive Guide, 6th ed".
It only actually tells users how to run JS code on page 311, where users are told of the following solutions:
"Client-side JavaScript code is embedded within HTML documents in four ways: - Inline, between a pair of <script> and </script> tags
- From an external file specified by the src attribute of a <script> tag
- In an HTML event handler attribute, such as onclick or onmouseover
- In a URL that uses the special javascript: protocol
."
I was wondering what professional JS developers use to write and test their code: Do they use a good text editor with syntax high-lighting + autocompletion, hit F5 in the browser to reload the page every time they make a change, and use some add-on in the browser to investigate errors? Or are there full-fledged IDE's similar to MS VisualStudio for non-web languages?
Thank you.
--------
<strike>Edit: For instance, I wrote this piece of code, which doesn't work (nothing displayed on screen when calling index.html), but Firefox doesn't display any error. How would I go trying to understand why it's not working?</strike>
Firebug showed that a .js file shouldn't contain <script>...</script> lines.
|