jQuery(document).ready(function($) { $(".ninja_annc_close").click(function(event){ event.preventDefault(); var cont_id = this.id.replace("close_", ""); var annc_id = this.id.replace("close_ninja_annc_container_", ""); $.post("/include/process.php", { action: "close", annc_id: annc_id }, function(data){ } ); $("#" + cont_id).hide("explode"); }); });