How do I insert <a> tag using :after css property?

plusav84

New Member
\[code\]<tr id="TR_Select_Color"> <td valign="top"> <span class="boldtext">Select Color :</span> </td> <td> <select id="ctl01_Select_Color" > <option value="http://stackoverflow.com/questions/15610600/Black">Black</option> <option value="http://stackoverflow.com/questions/15610600/Brown">Brown</option> </select> </td></tr>\[/code\]In the above code, I want to insert an \[code\]<a>\[/code\] tag after the \[code\]<select>\[/code\] tag. If it is not possible with CSS, how can I do it with JavaScript and jQuery?
 
Back
Top