The following is an output from an old CMS.
I’d like to insert
<br />
after
(<A HREF="edit-8.asp">Rediger dine kundeopplysninger</A>)
to become
(<A HREF="edit-8.asp">Rediger dine kundeopplysninger</A>)<br />
with jQuery.
<div id="system">
<FORM ACTION="confirm-8.asp" METHOD="post" NAME="kassaForm">
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="2" WIDTH="100%">
<TR>
<TD CLASS="td-menu" COLSPAN="7">
Kundeopplysninger
</TD>
</TR>
<TR>
<TD CLASS="td-main" COLSPAN="7">
<BR>
here any name (<A HREF="edit-8.asp">Rediger dine kundeopplysninger</A>)
here any address<BR>
<BR>
2nd part of address<BR>
<BR>
</TD>
</TR>
more after here.....
Try this:
Example: http://jsfiddle.net/pYTgc/
Or if you don’t want the span there, you can unwrap it.
Example: http://jsfiddle.net/pYTgc/1/