[jQuery] Can you please help me to fix this
hi
i need a basic idea of how to do this jquery part as im still a
beginner.
i have table row which has 3 table data which is repeating until all
data finish for one client(family).i have to get all family members
name and age above 25.
this section in my HTML page:
<tr name="clientrow" id="row">
<td align="center" class="table2" height="30" name="cname">#clientn#</
td>
<td align="left" class="table1" height="30" name="cdob"> #age#</
td>
<td align="center" class="table2" height="30"><input type="checkbox"
name="clist[]" value="#clientname#" checked></td>
</tr>
this is in my php file where i call above table data through preg
replacement.
$clientcount=0;
for( $ii=0; $ii<$x; $ii++)
{
if (getAge(strtotime($clientinfo->get(strval($ii)."/DOB")))>=25
{
print "custindex".$custIndex;
replace('#clientn#', $clientinfo->get(strval($ii)."/clientname"));
replace('#clientage#', trim($clientinfo->get(strval($ii)."/
clientage")));
replace('#cleintname#', $clientinfo->get(strval($ii)."/
clientname"));
Javascript();
$clientcount++;
}
}
but in this case it doesn't show all the family members.
so i want to write jquery for this
can anyone pleasse help me
Thanks
<script language="javascript">
$(document).ready(function() {
$"#custrow").get(function() {