Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(function() {
- $(".delbutton").click(function(){
- //Save the link in a variable called element
- var element = $(this);
- //Find the id of the link that was clicked
- var del_id = element.attr("id");
- //Built a url to send
- var info = 'id=' + del_id;
- if(confirm("Are you sure you want to delete this Record?"))
- {
- $.ajax({
- type: "GET",
- url: "delete.php",
- data: info,
- success: function(){
- }
- });
- $(this).parents(".record").animate({ backgroundColor: "#fbc7c7" }, "fast")
- .animate({ opacity: "hide" }, "slow");
- }
- return false;
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement