Skip to main content
Stack Overflow
  1. About
  2. For Teams

Return to Revisions

2 of 2
added 132 characters in body

Set .text()

t.children("h2").text('new sample'));

If you want to set [.html()](http://api.jquery.com/html/) content
t.children("h2").html('new sample'));

Child Selector ("parent > child")

$('.content > h2').html('new sample');

AltStyle によって変換されたページ (->オリジナル) /