jQuery function doesn't work after running Ajax

jQuery function doesn't work after running Ajax

hello,
 
I'm trying to add/Edit a DIV content with jquery function to toggle another DIV.
I'm doing it by Ajax (I tested it both by Prototype and Jquery Ajax). and I use $(document).ready(function() to be sure that the content is loaded.
 
but the toggle function for new added/edited DIV does not work.
 
it seems that jquery creat an specific ID like:
 
jQuery1275516513501="5"
 
<button id="deleteConfirm94" jQuery1275516513501="5" onclick="deleteAjax('94');" style="WIDTH: 3em">
 
I find it by copy and pate the page in a editor. and every time th enimber is different.
for each item calling jQuery function, when the page is loaded. but when I add a DIV by ajax that DIV does not have that ID and the jquery funtion does not work for that.
 
Any idea can help me.