// // // // we will add our javascript code here $(document).ready(function() { $(".listSelected").click(function() { var $item_id = new Array($(this).attr("id")); //ajax call ----------------------------- $.ajax({ type: "POST", data: "item_id[]=" + $item_id + "&list_action=delete", url: "/index.php/rental/ajax", success: function(del){ //alert($item_id + " Has been removed!"); $(".category-project-control-helpguide-view-contents").load("/index.php/rental/ajax"); } }); //ajax end ------------------------------- //animates item being removed $(this).parents(".listItem").animate({ opacity: "hide" }, "slow"); //uncheck item on other page $('input[id='+ $item_id +']').attr('checked', false); }); $("#category-project-control-helpguide-view-contents-close").click( function() { $(".category-project-control-helpguide-view-contents").animate({height: 'toggle'}, { duration: "fast" }); }); });