13 lines
407 B
JavaScript
13 lines
407 B
JavaScript
$(document).ready( function () {
|
|
$( '#nav' ).load( '/modules/nav.html' );
|
|
$( '#footer' ).load( '/modules/footer.html' );
|
|
|
|
$( '.button' ).mouseenter ( function () {
|
|
$( this ).stop();
|
|
$( this ).animate( { 'border-radius': '0'} );
|
|
} );
|
|
$( '.button' ).mouseleave ( function () {
|
|
$( this ).stop();
|
|
$( this ).animate( { 'border-radius': '50px'} );
|
|
} );
|
|
} ); |