views:

34

answers:

1

I am using jQuery 1.2.6 to build up HTML elements in memory. The image below alt textis a snippet of how I am doing it. When I profile the HTML that is generated, below is what I am seeing. Why is this happening? What about my jQuery is incorrect here?alt text

+2  A: 

jQuery is creating unique ids for your elements. This is not a bug. It is for storing data with the data() function.

galambalazs