upload tizen1.0 source
[framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.0.1pre / js / jquery.mobile.nojs.js
1 /*
2 * "nojs" plugin - class to make elements hidden to A grade browsers
3 */
4
5 (function( $, undefined ) {
6
7 $( document ).bind( "pagecreate create", function( e ){
8         $( ":jqmData(role='nojs')", e.target ).addClass( "ui-nojs" );
9         
10 });
11
12 })( jQuery );