mardi 03 août 2010
jQuery(function($) {
$(document).ready(function() {
$("#titredoc").keyup(function(){
$.get("live-search/titredoc.php",, function(data){
$("#buttontext1").html(data + " Résultats");
});
});
$("#titredoc").keyup(function(event){
if(event.keyCode == "13")
{
getResults();
}
});
...