D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
diafrica
/
result.dominicaninstitute.org
/
Filename :
semesterdresult.js
back
Copy
// JavaScript Document $(document).ready(function(){ // Begin $('.dactiond').click(function(){ var el = this; var id = this.id; var splitid = id.split("_"); // The Link id var dpage = splitid[0]; var daction = splitid[1]; var did = splitid[2]; var dtable = splitid[3]; var dmessage = splitid[4]; var dmessage2 = splitid[5]; var dmessage3 = splitid[6]; var dmsg="Confirmation: \n\n\n" + dmessage + dmessage2 + " Record: " + dmessage3; //Background Working Method var r = confirm(dmsg); if(r == true){ $(el).closest('tr').css('background-color','#f3c3c3'); var div = $(el).closest('tr'); div.animate({fontSize: '22px', opacity: '0.4'}, "slow"); div.animate({fontSize: '14px', opacity: '1.0'}, "slow"); $(el).closest('tr').fadeOut(600, function(){ $(this).remove(); }); } else { //alert("You cancelled the action"); } //End of Background Working Method //Redirection Method /* var r = confirm(dmsg); if(r == true){ var url = dpage + "?" + daction + "=" + did; $(location).attr('href',url); } else { alert("You cancelled the action"); } */ //End of Redirection Method }); //End });