2b0d836dd0fa9132819054edfe1604c9cc91a521
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.0.1pre / js / jquery.mobile.links.js
1 /*
2 * "links" plugin - simple class additions for links
3 */
4
5 (function( $, undefined ) {
6
7 $( document ).bind( "pagecreate create", function( e ){
8         
9         //links within content areas
10         $( e.target )
11                 .find( "a" )
12                 .not( ".ui-btn, .ui-link-inherit, :jqmData(role='none'), :jqmData(role='nojs')" )
13                 .addClass( "ui-link" );
14
15 });
16
17 })( jQuery );