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