Is there a clever jQuery selector for selecting a text node like this:
one two three
Not without some programming. If your main DIV had an ID or class, you could do this:
var html = $("#my_div").html(); var array = html.split(""); array[1] = "" + array[1] + ""; html = array[0] + "" + array[1]; $("#my_div").html(html);