For the following code in Javavscript:
// add HTML to container
// show the container on the DOM
// call a non-existent function on an object
I successfully see Firefox and IE display my HTML. The third line of code, which shows a JS error in Firebug and IE, appears to be suppressed/ignored.
Do browsers generally ignore bad JS? Or, let's say I added alert("line 4"); after my 3rd line of code. Would the 4th line be ignored since JS interpretation would end on the illegal JS line of code?
I tested my scenario in jsFiddle, but I'm not sure if jsFiddle behaves in the same way as a browser.
<script>block. there's (thankfully) no equivalent of VB'son error resume next. – Marc B Jan 10 at 16:06alert("line 4")would not get called since the line above it (#3) would've stopped JS execution – Kevin Jan 10 at 16:11