I am trying to integrate qUnit in my web application from javascript, when I enable qunit every files and HTML needed are added dynamically,
However it seems qunit use window.load, and it does not currently load what is inside, I tried to recall qunit using QUnit.init() but it always says 0 test cases when In fact there are severals loaded..
Hi guys, I got a plugin I want to do the localisation in french of my inline form validator. I decided to go with a similar solution of the UI datepicker.
Adding a french js. But it just do not work and i don't have a clue how.
The core js : jQuery.fn.validationEngine = function(settings) { allRules = {"required":{ // Add your regex rules here, you can take telephone as an example "regex":"none", "alertText":"* This field is required"}
} .............................. });
The French js:
jQuery(function($){ $.validationEngine.allRules = {"required":{ "regex":"none", "alertText":"* Ce champs est requis"} } });