How to display the dynamically created elements for some time?
Posted
by Holicreature
on Stack Overflow
See other posts from Stack Overflow
or by Holicreature
Published on 2010-04-13T10:07:59Z
Indexed on
2010/04/13
10:12 UTC
Read the original article
Hit count: 245
JavaScript
|dom
i have some rows of data displayed in a table and on mouse over of each row i've list two buttons inside a div element and then display it for some time. And i've associated some functions to be called on clicking the buttons that are dynamically created and displayed elements..
So what i did was i wrote a function which will create elements dynamically and place them exactly where i wanted using styles. And i wrote another function which will remove these dynamically added elements.
I called them on mouseover and mouseout events of the row. now when i move mouse out the row to click the button they get disappeared bcoz of my mouseout function.
So how can i proceed this?
And what is the perfect method to create these kind of stuffs?
© Stack Overflow or respective owner