Sam
Sam

Reputation: 1

Javascript links open in same page

How do i use Javascript to load content on the same page without reloading the entire page,

Upvotes: 0

Views: 467

Answers (2)

kingjeffrey
kingjeffrey

Reputation: 15260

The easiest way is to use the jQuery append method: http://api.jquery.com/append/ or the jQuery text method: http://api.jquery.com/text/

Upvotes: 1

oezi
oezi

Reputation: 51797

what you are looking for is called AJAX - and there are lots of tutorials out there.

Upvotes: 1

Related Questions