robcowie / jquery-stopwatch

A jQuery plugin that renders a count-up clock from a defined start time
http://robcowie.github.com/jquery-stopwatch/
87 stars 31 forks source link

Using stopwatch with dynamically created elements #14

Open aHumanBeing opened 8 years ago

aHumanBeing commented 8 years ago

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