var table = $("#contact_list");table.empty();$("group",data).each(function(){var group_name = $(this).attr("name");table.append("<tr><td>"+group_name+"</td></tr>");$("user",$(this)).each(function(){var username = $(this).text();table.append("<tr><td>"+username+"</td></tr>");});});
When I saw IE6 crashed, I tried to figure out what was the problem and found it was an append function. So I tried to implement the code in many ways and I saw something.It will crashes if the html string as an argument of the function is not a properly dom object or closed tag. For example
var box = $("#contact_list");box.append('<table>');//do something.....box.append('</table>');
So I solved this problem by define an variable for collecting all the html string which I want to append and append it by append() in the end. And the code works fine on IE6.
hi i am using that script but i am not getting where is declaration of $() function is done... or mozilla ,ie6,7 they are giving inbuild. i haven't know of it. you have used for xpath search..
ReplyDeleteplz mail me what it was..patidarchat@gmail.com
ReplyDelete$() is the important function of JQuery library.It's the selector function for selecting the DOM objects in the document.If you want to use it, you must include a JQuery library first.You can see this in detail at http://docs.jquery.com/Main_Page
ReplyDelete