views:

721

answers:

2

I'm struggling getting my lavalamp to work on a site i'm redesigning. the jquery and links were taken from the previous site but they're not working when you click on them.

note all pages aren't finished yet, about us page is live on the site to check

www.alwaystwisted.com/sandbox/stagecraft/index.html

any ideas?

I'm sure it's something simple, but still too complext for me.

thanks in advance

Stu

+3  A: 

Your returning false when the link has been clicked!

 $("#1, #2, #3").lavaLamp({
                fx: "backout", 
                speed: 600,
                click: function(event, menuItem) {
                    //this stops the link from following
                    return false;
                }
            });
redsquare
this helped, thanksI'm a bit curious though why the author would have put the click function in?
Daniel
A: 

Use this code, it solves the problem:

var $tlt = jQuery.noConflict();
$tlt(function() {
    $tlt('.lavamenu').lavalamp( ... );


});
tejas tank