Search code examples
javascriptvalidationjspmyeclipse

MyEclipse disable javascript validation in JSP


Is there a way I can disable js validation in jsp in myeclipse. I have jsp page which has java script code in onclick of a button, something like below and jsp is showing syntax error saying there should be ; instead on : after javascript so I want to disable js check in jsp. I know to disable js validation in js file but not from jsp file.

<button onclick="javascript:var .....some js code">Button</button>


Solution

  • Go to MyEclipse->Preferences->MyEclipse->Validation, where you can remove the JSP validators. You can also customise the JSP validator at MyEclipse->Preferences->Validation->JSP. In addition, you can exclude certain resources from validation by right-clicking on the project and selecting MyEclipse->Manage Validation, then excluding folders and/or files.

    I hope this helps.