portail-citoyen: local.js oublié...

This commit is contained in:
Thomas NOËL 2015-01-27 15:41:53 +01:00
parent abc2daeb25
commit 648c88e2a3
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
$(document).ready(function() {
$('#services > ul > li').hover(
function(){$( this ).addClass( "hover" );},
function(){$( this ).removeClass( "hover" );}
);
$('#services > ul > li').click(
function(){
var link = $(this).children("strong").children("a").attr("href");
window.open (link+"#content","_self");
}
);
});