function UncheckAll(){ var w = document.getElementsByTagName('input'); for(var i = 0; i < w.length; i++){ if(w[i].type=='checkbox'){ w[i].checked = false; } } }2. Create page dynamics
Event: Page Load Condition: No Condition Action: Eecute Javascript Code Code: UncheckAll()Locate and open the true event "Execute Javascript Code" of create dynamic action, check "Fire On Page Load"
No comments:
Post a Comment