JQuery

use expression at the selector javascript

If you’re finding by Contains then it’ll be like this $(« input[id*=’DiscountType’] »).each(function (i, el) { //It’ll be an array of elements }); If you’re finding by Starts With then it’ll be like this $(« input[id^=’DiscountType’] »).each(function (i, el) { //It’ll be an array of elements }); If you’re finding by Ends With then it’ll be like this $(« input[id$=’DiscountType’] »).each(function […]

use expression at the selector javascript Read More »

configurer la jquery datepicker en francais

<code> <script> $(function() { $( « #datepicker » ).datepicker({     altField: « #datepicker »,     closeText: ‘Fermer’,     prevText: ‘Précédent’,     nextText: ‘Suivant’,     currentText: ‘Aujourd\’hui’,     monthNames: [‘Janvier’, ‘Février’, ‘Mars’, ‘Avril’, ‘Mai’, ‘Juin’, ‘Juillet’, ‘Août’, ‘Septembre’, ‘Octobre’, ‘Novembre’, ‘Décembre’],     monthNamesShort: [‘Janv.’, ‘Févr.’, ‘Mars’, ‘Avril’, ‘Mai’, ‘Juin’, ‘Juil.’, ‘Août’, ‘Sept.’, ‘Oct.’, ‘Nov.’, ‘Déc.’],     dayNames: [‘Dimanche’, ‘Lundi’, ‘Mardi’, ‘Mercredi’, ‘Jeudi’, ‘Vendredi’, ‘Samedi’],     dayNamesShort: [‘Dim.’, ‘Lun.’, ‘Mar.’,

configurer la jquery datepicker en francais Read More »

Panier