Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other How to open a link into a container within the index page 4m mainnavigation bar? Reply To: How to open a link into a container within the index page 4m mainnavigation bar?

#151776
Energ
Participant

If you want to load some content into a div for example you need AJAX techniques. With jQuery you can do something like:
$( “.container” ).load( “services.html”, function() {
alert( “Load was performed.” );
});

More here.