mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
15 lines
No EOL
385 B
JavaScript
15 lines
No EOL
385 B
JavaScript
/*
|
|
* jQuery Mobile Framework : "nojs" plugin - class to make elements hidden to A grade browsers
|
|
* Copyright (c) jQuery Project
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
* http://jquery.org/license
|
|
*/
|
|
|
|
(function( $, undefined ) {
|
|
|
|
$( document ).bind( "pagecreate create", function( e ){
|
|
$( ":jqmData(role='nojs')", e.target ).addClass( "ui-nojs" );
|
|
|
|
});
|
|
|
|
})( jQuery ); |