I want to catch an error, correct it and continue executing the program. http://jsfiddle.net/Gthv9/12/
But, I can\'t do it!
If you click on: \"re Check On Mo
I added another line to the error handler from @RPNiemeyer to console the node causing the error in the catch block - makes it really easy to find an error on a complex page:
if (console && console.log) {
console.log("Error in binding: " + e.message);
console.log("Node causing error:");
console.log(node);
}