Getting this error in the /administrator/components/com_mycomponent/js/jquery.validationEngine.js
line 28...
$(".formError").live("click", function() {
Its preventing jQuery(document).ready(function($)... scripts from running.
Has .live has been depreciated?
Workaround - replace line 28 with...
$(document).on("click",".formError", function() {
I'm using
- Firefox (latest)
- Jcook V2.0
- JS Framework:Jquery
- Embed Framework:No
- Form Style: Condensed
- Features: JDom Complete (so I don't get those todo graphics)
- Todo:No
- DB Auto: Model
Cheers