rajasekhar
rajasekhar

Reputation: 17

Span manipulation in jQuery

Can you please explain the term "span manipulation: in jQuery and give a small example?

Upvotes: 0

Views: 291

Answers (1)

kobe
kobe

Reputation: 15835

I am just giving an example for span manipulation

   <span class="test">hello world</span>

$('.test').click(function() {
$(this).text("Rajasekhar"); // this will update hello world to rajasekhar
});

$('.test').text(); // gives you hello world

Upvotes: 1

Related Questions