
1 2 3 4 5 6 7 8 9 10 11 12 | <script> jQuery(document).ready( function ($){ $( '#elm' ).hover( function (){ $(this).addClass( 'hover' ) }, function (){ $(this).removeClass( 'hover' ) } ) }); </script> <style> .hover {font-size:33px;} </style> <div id= "elm" >test</div> |