robcowie / jquery-stopwatch

A jQuery plugin that renders a count-up clock from a defined start time

Home Page:http://robcowie.github.com/jquery-stopwatch/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Using stopwatch with dynamically created elements

aHumanBeing opened this issue · comments

Any way to get this working with dynamically created elements? I have

or maybe another element type that is created dynamically (and with random quantity). Currently, this plugin only seems to work if
exists statically within the page.

e.g. The table element below is static in my page. The rows, columns (td) and divs are all dynamic.

<table>
<tr>
<td>
<div id='1'></div>
</td>
<td>
<div id='2'></div>
</td>
</tr>
</table>

Thank you