Cannot Break On Jquery.validate Callbacks
I'm using Firefox/Firebug, trying to step through some of the jquery.validate() callbacks. Why do breakpoints on the below // Breakpoint lines not trigger upon clicking the submit
Solution 1:
Unfortunately, the jquery.validate() options don't seem to function when used in combination with unobtrusive validation. Removing that reference from my file fixes the issue, but of course, breaks my unobtrusive validation.
So I ended up using another solution to hook into the validation events.
Post a Comment for "Cannot Break On Jquery.validate Callbacks"