You can reach it with DOM properties: $('input').each(function(){ while (this.nextSibling && this.nextSibling.nodeType == 3) { $(this.nextSibling).remove(); } });
- ricardo On Oct 28, 7:01 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Working with Lotus Notes developer - apparently, when building a form > with radio buttons elements, Lotus automatically puts the value in > text beside the button. He says there is no way to override this. So > we get: > > <input name="joe" type="radio" value="1" />1 > <input name="joe" type="radio" value="2" />2 > <input name="joe" type="radio" value="3" />3 > <input name="joe" type="radio" value="4" />4 > <input name="joe" type="radio" value="5" />5 > > I said maybe we can hide that text with jQuery, but I find that I can > target anything in the input tag, but I can't seem to get the text > after it. Any help appreciated.