Rick Faircloth schrieb: > 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
Hi Rick, both examples are totally invalid HTML (to be honest, the first one really hurts my eyes), so do not expect jQuery (or in more general any CSS and DOM scripting) to work correct. The second example may work because your browser implicitly puts a <td> element into the mix before rendering the definition list. -- Klaus _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
