//add delete confirm dialog var Del_url = ''; function addConfirmTo(ele) { ele.each(function() { $(this).click(function() { $('#dialog-delete-confirm').modal({appendTo:'#main'}); Del_url = $(this).attr('data'); }); }); } $('#yes-btn').click(function() { location.href = Del_url; }); //handle table $("table tr:nth-child(even)").addClass("even"); $("table tr:nth-child(odd)").addClass("odd"); //highlight the tr when mouse hover on it $("table tr:gt(0)").hover( function() { $(this).addClass('hl'); }, function() { $(this).removeClass('hl'); } );