javascript - create horizontal menu webapplication -


i have small web application developed jsps , servlets. have homepage has header section (logo), below there horizontal menu bar going links jsps. when click on link, content of jsp should load on same page beneath menu bar instead of loading jsp in fresh page. have shown layout in attachment, please guide me technology/concept for. dont need code, want know how achieve it, google , learn. thank you.enter image description here

check jquery.load()

you can bind onclick event on links jquery load function, retrieve data server, , place returning content inside matching element

$( "#result" ).load( "ajax/test.html" ); 

Comments