View Single Post
Old 12-01-2009, 01:44 AM   #6 (permalink)
bellsonracing
The Visitor
 
Join Date: Dec 2009
Posts: 1
Thanks: 0
bellsonracing is on a distinguished road
Default Got it to work

window.addEvent('domready', function(){
FancyForm.start( 0, {
onSelect: function(chk){
alert(chk.inputElement.getProperty('name'));
alert(chk.inputElement.getProperty('checked'));
},
onDeselect: function(chk){
alert(chk.inputElement.getProperty('name'));
alert(chk.inputElement.getProperty('checked'));
}

});
});
bellsonracing is offline  
Reply With Quote