Current Path :
/
home
/
develito
/
httpdocs
/
media
/
mod_sr_menu
/
js
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//home/develito/httpdocs/media/mod_sr_menu/js/mod_sr_menu.js
// Javascript to undo the modifications to our select list made by Chosen // - try every 40ms, up to 20 times // - because we don't know if we will be loaded before or after the Chosen initialisation // - usually in the worst case, this only re-tries once jQuery(document).ready(function() { var srm_interval; var srm_count = 0; srm_interval = setInterval(function() { if (jQuery('#srm_select_list_chzn').length) { jQuery('#srm_select_list_chzn').remove(); jQuery('#srm_select_list').show(); clearInterval(srm_interval); } if (srm_count ++ > 20) clearInterval(srm_interval); } , 40); } );