Just found out that any message over 40KB in size must
be reviewed by the moderator…don’t know how long that
takes so I thought I’d rewrite…
Apparently the jQuery code has to be placed (in my example, anyway)
right next to the text itself.
This doesn’t work:
<dl id=”ann”>
<table>
<dt>
<tr>
Announcement Title…
</tr>
</dt>
<dd>
<tr>
Announcement Details…
</tr>
</dd>
</table>
</dl>
This does:
<table>
<tr>
<dl id=”ann”>
<dt>
Announcement Title…
</dt>
<dd>
Announcement Details…
</dd>
</dl>
</tr>
</table>
Is this a jQuery thing or _javascript_ characteristic in general?
Rick
_______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
