Your IP : 216.73.216.224


Current Path : /var/www/html/modules/mod_slideshowck/elements/ckradio2/
Upload File :
Current File : /var/www/html/modules/mod_slideshowck/elements/ckradio2/ckradio2.js

window.addEvent('domready', function() {

    $$('.radioClass').each(function(el2){el2.setStyle('opacity','0'); });
    
    var monimage = $$('.boutonRadio');
    monimage.each(function(el) {
        el.addEvent('click',function(){
            monimage.removeClass('coche');
            el.addClass('coche');
            var moninput = el.getFirst();
            
            // test
            var identifier = el.getProperty('identifier');
            if ($(identifier)) $(identifier).value = moninput.value;
            $$('.radioClass').each(function(el2){el2.removeAttribute("checked","checked"); });
                moninput.setAttribute("checked","checked");
            });
        });
    });