I have a javascript thats breaking. Now Is there a way i can call the function from content editor web part and debug to see where the hick up is?
|
closed as not a real question by Kit Menke♦ May 6 '11 at 14:02
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Use the Developer Tools available in Internet Explorer, enable Debugging and it should break when the error comes up. |
|||||||
|
|
There are some skills around debugging JavaScript that you'll need to learn. Firebug and the IE Developer Tools (or equivalent in Chrome, etc.) are the tools, but you'll need to learn how to use them well. There's not really an "answer" to your question. Generally, you'll have syntax errors like missing commas, brackets, parentheses, or semicolons. That's always the first thing I look for in my scripts. |
|||
|
|