function setTitle(){ document.title = $('#titre').text();
}
$(document).ready( function() {
setTitle();
$("#home").hover(
function () {
$(this).css("cursor","pointer");
$(this).bind("click", function(){
history.go(-1);
});
},
function () {
}
);
});
Tags:
Permalink Reply by Marc Lebrun on October 29, 2010 at 11:56pm
Permalink Reply by Michel L'HUILLIER on October 30, 2010 at 3:01am $('a.maclass').live('click' function(evt) {
evt.preventDefault();
}
Cool ! Merci !© 2012 Created by jqueryadmin.