Designing with Jquery

Tilar / 2009-07-09 22:39:52   

I was wondering if people know of any indexhebit examples that have used Jquery to enhance their sites. I just started to trying to work with it I found a tutorial which walks you through appending content.

Jquery Content Append Tutorial


$(document).ready(function() {

$('#contentMenu2 li a').click(function(){

var toLoad = $(this).attr('href')+' #containerContent';
$('#containerContent').hide('fast',loadContent);
$('#load').remove();
$('#content').append('LOADING...');
$('#load').fadeIn('normal');
function loadContent() {
$('#containerContent').load(toLoad,'',showNewContent())
}
function showNewContent() {
$('#containerContent').show('normal',hideLoader());
}
function hideLoader() {
$('#load').fadeOut('normal');
}
return false;

});
});

Any incite or info you could give when using Jquery with Indexhebit would be fantastic. Thank you very much.

Vaska A / 2009-07-09 22:44:25   

But, it's just Jquery...you use it just as you use any kind of Javascript. Indexhibit doesn't really matter to this equation if you learn how to use Jquery.

This thread has been closed, thank you.