I've kinda figured out a bit why this is happening.

When the .clickable items are loaded into the page via ajax,
[code]
  $.ajax({
                                type: "GET",
                                url: "processes/addNow.php",
                                data: "uid="+uid+"&sid="+sid+,
                                success: function(response2){
                                        $("."+usid
+"-"+uid).html(response2);
                                $("#addForm").fadeOut("slow");
                                        }

                        });
[/code]

i'm guessing they are not available to the DOM. this is my guess
because when I view the table source after a new item has been loaded
via the ajax call, that new class is not visible in the html source.

How do I get jquery to refresh and look for new objects?

Reply via email to