Hi I have a simple html structure
Title text inner text
What I want is to replace only the te
Another short jQuery solution:
$("h1").contents().first().replaceWith("new text");
DEMO: http://jsfiddle.net/FvbJa/1/