2c97312af7611c5246e37e0b8b4bc688dd08eba6
[platform/framework/web/web-ui-fw.git] / demos / tizen-gray / widgets / radio / radio.js
1 $( "#radio-demo" ).live("pagecreate", function () {
2         $("input[type='radio']").bind( "change", function(event, ui) {
3                 if( this.checked )
4                         $( ".triggered-radio" ).text( this.id + " is selected..." );
5         });
6
7 });
8
9