LavaLamp for jQuery lovers! August 23rd, 2007

Hover above and feel for yourself, the nifty effect of Lava Lamp. What you just experienced is nothing but the LavaLamp menu packaged as a plugin for the amazing jQuery javascript library. I personally believe that the effect rivals that of flash – Don’t you? Especially considering the fact that it is extremely light weight.

Just so you know, it weighs just 700 bytes(minified)!


Often I have noticed, that the credits are usually granted towards the end. Just for a change, i am going to give my credits at the beginning. This effect was originally written by Guillermo Rauch for the mootools javascript library. All I did was to port it for the benefit of jQuery lovers. Thanks Guillermo for inspiring the javascript world with such a nice effect. A special thanks to Stephan Beal who named it “LavaLamp”, and to Glen Lipka for generously helping with the image sprites. Many fellow jQuery lovers also helped shape this plugin with valuable feedback in the mailing list. Thanks a ton, all you guys.

As User Interface developers, we know that one of the first widgets our visitors use is a “Menu”. Capturing their attention right there is something that we always strive for, and I guess LavaLamp is a step in that direction. Before you get bored with all this useless talk, let me get you started on integrating LavaLamp into your jQuery powered site.

I hope you agree that a typical HTML widget consists of 3 distinct components.

  • A semantically correct HTML markup
  • A CSS to skin the markup
  • An unobstrusive javascript that gives it a purpose

Now lets follow the above steps and implement the LavaLamp menu for your site. Remember, In the process of porting from mootools to jQuery, i have simplified both the javascript and CSS for your convenience. So, be informed that you will need to follow the instructions on this page to get the jQuery version running. Follow the instructions on Guillermo Rauch’s page for the mootools version.

Step 1: The HTML

Since most UI developers believe that an unordered list(ul) represents the correct semantic structure for a Menu/Navbar, we will start by writing just that.

        <ul class="lavaLamp">
            <li><a href="#">Home</a></li>
            <li><a href="#">Plant a tree</a></li>
            <li><a href="#">Travel</a></li>
            <li><a href="#">Ride an elephant</a></li>
        </ul>
        

In the markup above, “ul” represents the menu, and each “li” represents a menu-item. At this point it is crucial to understand that we will be adding another artificial “li” to represent the background of the currently highlighted menu-item. Since the background itself is cosmetic and doesn’t represent a menu-item, we will be adding it from javascript. Just to make sure we are in sync, “you need not add this li”, the LavaLamp plugin will take care of it. Once added, the “li” representing the background will look like this.

        <li class="back"><div class="left"></div></li>
        

Step 2: The CSS

You can skin this markup in many different ways to achieve your own personalized menu. The following style sheet is just one possibility. A few more possibilities are demonstrated in the “Bonus” section towards the end of this blog entry.

/* Styles for the entire LavaLamp menu */
.lavaLamp {
    position: relative;
    height: 29px; width: 421px;
    background: url("../image/bg.gif") no-repeat top;
    padding: 15px; margin: 10px 0;
    overflow: hidden;
}
    /* Force the list to flow horizontally */
    .lavaLamp li {
        float: left;
        list-style: none;
    }
        /* Represents the background of the highlighted menu-item. */
        .lavaLamp li.back {
            background: url("../image/lava.gif") no-repeat right -30px;
            width: 9px; height: 30px;
            z-index: 8;
            position: absolute;
        }
            .lavaLamp li.back .left {
                background: url("../image/lava.gif") no-repeat top left;
                height: 30px;
                margin-right: 9px;
            }
        /* Styles for each menu-item. */
        .lavaLamp li a {
            position: relative; overflow: hidden;
            text-decoration: none;
            text-transform: uppercase;
            font: bold 14px arial;
            color: #fff; outline: none;
            text-align: center;
            height: 30px; top: 7px;
            z-index: 10; letter-spacing: 0;
            float: left; display: block;
            margin: auto 10px;
        }
        

Trust me, this is a simple style sheet. Follow along to understand what is done in each of its sections.

First, we style the “ul” with the bright orange background image and some basic properties like height, width, padding, margin etc. We use relative positioning because, that way we can absolutely position the background “li” relative to the “ul”. This helps by enabling us to move this background “li” freely within the context of the parent “ul”.

Next, we make the “li”s flow horizontally instead of vertically. By default, it flows vertically. There are a couple of techniques to do this. In this case, we are using the “float:left” to achieve this effect.

Next, we style the artifical “li” that represents the background of the currently highlighted menu-item. This uses the sliding doors technique. Also, notice the absolute positioning used as mentioned above.

Finally, we style the anchor that represents the actual clickable portion of each menu-item. These styles are mostly cosmetic and self-explanatory.

Some of the above rules may not be obvious if you are not very confident in how “positioning” works in CSS. For those, i highly encourage you to quickly read this article on CSS positioning. It is short, sweet and very informative.

Step 3: The Javascript

This is the easy part. Most of the javascript work is taken care by the Lava Lamp plugin itself. As a developer, you just have to include the mandatory and/or optional javascript files and fire a call to initialize the menu.

<script type="text/javascript" src="path/to/jquery.js"></script>
<script type="text/javascript" src="path/to/jquery.lavalamp.js"></script>
<!-- Optional -->
<script type="text/javascript" src="path/to/jquery.easing.js"></script>

<script type="text/javascript">
    $(function() { $(".lavaLamp").lavaLamp({ fx: "backout", speed: 700 })});
</script>
        

Include a reference to the jQuery library and the LavaLamp plugin. Optionally, include the easing plugin as well. It has many cool effects, that are not contained in the core. For instance, the “backout” effect used in this demo is part of the easing plugin. You can download jQuery here, Easing plugin here, and the LavaLamp plugin here.

Next, in the document.ready event, fire a call to initialize the menu. You have the option to supply an easing “fx” , the “speed” with which the animation happens and a callback to be executed when a menu-item is clicked. They are optional, the default “fx” being “linear” and the default “speed” being “500″ ms.

That’s it. At this point you should have a working version of LavaLamp menu for your site.

Bonus

Just with some minor changes in the style sheet, you can get a totally different look n feel for the menu. And yes, the HTML markup and the Javascript remain the same.

Here is one more variation, again with just some minor changes to the style sheet. I know, they don’t look pretty, but all i am saying is that you are limited only by your imagination.

Finally, for your convenience, i have zipped up all the necessary files into a cohesive package. Download it, and open the demo.html to see all the 3 variations in one page.

Feel free to leave a comment with your feedback, suggestions, requests etc.

Update

Based on popular request, LavaLamp Menu has been updated to support jquery 1.2.x versions. Download the zip file for version 0.2.0 of LavaLamp and open the demo.html to check it out for yourself. Since Firefox 3 has some issues with $(document).ready() function, try using $(window).load() instead if you face any problems. Hopefully a future version of Firefox or jQuery will fix the problem.

1,425 Responses to “LavaLamp for jQuery lovers!”

  1. 1. commadot.com » Blog Archive » Horizontal Menus on August 23rd, 2007 at 4:45 pm

    [...] is a great effect for a menu, with lots of easy customization.  It’s called LavaLamp. (jQuery [...]

  2. 2. Hector on August 23rd, 2007 at 5:05 pm

    Very cool. But I think there is a missing closing } in the startup code. I get a JS error on that line.

  3. 3. ItsAllEasy » Blog Archive » LavaLamp Menu Effect on August 24th, 2007 at 2:24 am

    [...] LavaLamp jQuery plugin provides a really nice effect for menus…and another reason for me to go get and play with [...]

  4. 4. Nicolas Hoizey on August 24th, 2007 at 6:51 am

    This is really impressive, bravo!

  5. 5. Ganeshji Marwaha on August 24th, 2007 at 9:51 am

    @Hector – Thanks, It should be fixed now.

  6. 6. Robert on August 24th, 2007 at 1:45 pm

    That is pretty darn neat.

  7. 7. Rich Marr’s Justgiving Blog JQuery « on August 24th, 2007 at 4:38 pm

    [...] August 24th, 2007 — richmarr I was shown this excellent JQuery menu effect today, which reminded me what a mind-numbingly great Javascript library it really is. In case you [...]

  8. [...] Ganesh » Blog Archive » LavaLamp for jQuery lovers! (tags: jquery plugin menu javascript effect sliding doors) [...]

  9. 9. Jackson Tomlinson on August 24th, 2007 at 9:48 pm

    How do you set the initial ’selected’ menu?

  10. 10. Ganeshji Marwaha on August 25th, 2007 at 1:43 am

    @Jackson Tomlinson – You can give a class attribute of “current” to any “li” that you want initially selected.

    <li class=”current”><a href=”#”>Ride an elephant</a></li>

  11. 11. links for 2007-08-25 « Mandarine on August 25th, 2007 at 4:27 am

    [...] LavaLamp for jQuery lovers! A plugin for the amazing jQuery javascript library. I personally believe that the effect rivals that of flash – Don’t you? Especially considering the fact that it is extremely light weight. (tags: animation javascript jquery webdesign css) [...]

  12. 12. All in a days work… on August 25th, 2007 at 5:57 am

    [...] Lava Lamp Menu Hover Effect For jQuery (tags: Menus jQuery MooTools) [...]

  13. 13. comasp on August 26th, 2007 at 12:54 am

    very nice.

  14. 14. Tyler on August 26th, 2007 at 7:58 am

    hey I was wondering if jQuery works with a linux server? mootools does not and i was wondering if there was any luck with this one working as intended? and if yes, then how?

  15. 15. Ganeshji Marwaha on August 26th, 2007 at 9:30 am

    I don’t see any connection between jQuery (or mootools or any other javascript library) and any server for that matter. These code get executed on the client side – on the computer in which the browser is running. So, as long as you have a browser that supports javascript, these libraries should work. I may be approaching your question completely wrong. So, clarify with more detail, if my answer didn’t make any sense.

  16. 16. Bdesign on August 26th, 2007 at 4:06 pm

    Lol…Did you heard about FancyMenu?? Google it:P :) )

  17. 17. Ganeshji Marwaha on August 26th, 2007 at 5:31 pm

    @Bdesign – Yes, LavaLamp is a port of FancyMenu(written in mootools) to jQuery. I have mentioned it in the credits section of this blog entry.

  18. 18. Tyler on August 26th, 2007 at 5:59 pm

    Sorry for kinda being vague – what i meant was that when testing my website offline (using mootools library) this menu showed up perfectly fine. However, as soon as i uploaded it to my server (running Linux if that means anything to why this isnt working) it just showed my links on the left and does not seem to execute the java whatsoever

  19. 19. Ganeshji Marwaha on August 26th, 2007 at 6:39 pm

    I wouldn’t think it is the Linux Server, because, my website is hosted on a linux server and as you can see it works just fine.

    Only thing, i am able to think of is, there could be some problem with the paths and the difference between paths in the local machine and the remote server.

  20. 20. LeoTheMaster on August 27th, 2007 at 10:13 am

    thx a lot

  21. 21. Tyler on August 27th, 2007 at 1:04 pm

    I use GoDaddy Hosting (the Deluxe plan, which includes Java support and abilties) and i called them and they said my bar isnt working apparently because they dont support the “module” i’m using. Is this correct? I am using mootools and they said that jQuery should probably work over that. I just want to make sure jQuery wil work so that im not wasting another couple hours perfecting the image files and changing the colors and fonts and labels in photoshop.

  22. [...] know how to write it yourself find out at the author’s page or download the package above which includes several working [...]

  23. [...] JQuery ile yap?lm?? flash benzeri ho? bir menü örne?i. Link [...]

  24. 24. Ganeshji Marwaha on August 28th, 2007 at 10:44 am

    @Tyler – I don’t think it has anything to do with the hosting account. If mootools works for you, then jQuery must and will. But, now that you have mentioned about mootools, i can see the problem. Both mootools and jQuery are javascript libraries and they both (like other javascript libraries) use the $ symbol for shortcutting function calls. So, typically when you use these libraries together they will clash with each other. The good news is that jQuery has a solution for this. You will have to goto jQuery site, or even google “jQuery noConflict” and follow the links. I am unable to give you the exact link, coz, right now i am sending you this comment from the singapore airport and the internet enabled machines is not allowing me to open more than one browser window. Once, i reach home, i will send you the exact link that might help you.

  25. 25. Cujo77 on August 28th, 2007 at 3:11 pm

    This is great!

    Thank you!

  26. 26. links for 2007-08-28 « toonz on August 28th, 2007 at 11:27 pm

    [...] Ganesh » Blog Archive » LavaLamp for jQuery lovers! (tags: jquery javascript menu css animation) [...]

  27. 27. Tyler on August 29th, 2007 at 5:07 am

    Ah no sorry, I wasn’t trying to use them together. As you know there are two versions of this menu bar: the mootools one and the jQuery one (your port). I used java and mootools ONLY for the menu bar for my website, uploaded it to the server and the java would not run whatsoever. Then, I removed everything related to the menu bar and mootools from my site, included your jQuery port, uploaded it and I still get nothing. I called GoDaddy and they said that they don’t “support it.” Now i find this hard to believe as it’s simply another linux server and i have enabled server side javascript. It works when i test it in my own browser offline, but as soon as i upload it – it doesn’t work online. Do you know why this is?

  28. 28. Ganeshji Marwaha on August 29th, 2007 at 9:06 am

    @Tyler – Do u really mean that u are using java for the serverside. If yes, then most hosting services out there don’t support java. Most of the hosting providers out there provide support for PHP, Ruby on Rails etc, but java providers are limited to a few. Examples of a few who support java are dailyrazor.com and supplehost.com. Hope that answers your question.

  29. 29. mehmet on August 30th, 2007 at 7:02 am

    Manipage

    but index.html doesnt opening why?

  30. 30. Ganeshji Marwaha on August 30th, 2007 at 4:58 pm

    @mehmet – before i answer that… why do u need that? u can always use gmarwaha.com/blog.

  31. 31. links for 2007-08-30 « napyfab:blog on August 30th, 2007 at 11:37 pm

    [...] Ganesh » Blog Archive » LavaLamp for jQuery lovers! (tags: jquery javascript menu css animation effect plugin development design web fancy) [...]

  32. [...] JQuery ile yap?lm?? flash benzeri ho? bir menü örne?i. Link [...]

  33. 33. Tyler on August 31st, 2007 at 10:55 pm

    What i want is for that bar to be displayed in my website. However, for this to happen dont i have to add all that html in my index.html page, the css in my style.css (instead of a separate stylesheet), and the .js files on my server? I mean, i test my site locally on my mac before i upload via FTP to my server and if it works on my mac shouldnt it therefore work on the server when i upload it? I’m assuming for the example bar i see above that you are using server side java or is it client side? (im new to programming and writing real code). thanks!

  34. 34. Keith Donegan on September 1st, 2007 at 1:57 am

    Perfect.. thank you so much :) Lavalamp baby

  35. 35. Andy on September 2nd, 2007 at 8:03 pm

    hi

    hmm i got it working but it’s a beggar to style. Trying to get it to center but it doesn’t want to play ball. Align left it’s ok but when you try getting it to center it won’t work..

    Any ideas? pointers?

    Thanks :)

  36. 36. Carlo DiCelico on September 3rd, 2007 at 1:41 am

    There is a syntax error in the file jquery-1.1.3.1.min.js which prevents the links from actually working when you click them (even in the demos above). I’m not sure how this was missed but it appears to be some kind of quote/escape character error in this line:

    if(a&&!a.nodeType)a=null;a=a||document;if(!t.indexOf(“//”))

    The problem is the character sequence “//” which, if you look at it in an editor that supports syntax highlighting (like Dreamweaver), you’ll see that it’s treating this as a comment. I tried all sorts of things, like replacing // with / and various quote/escape character combos but I can’t get it to work right. Either the effect is lost or the links don’t work, I can’t manage to get both. I’ll keep trying & if I can figure it out before someone else, I’ll post it here. Thanks.

  37. 37. Carlo DiCelico on September 3rd, 2007 at 1:52 am

    Okay, I have confirmed that it’s definitely a missing double quote character. What I did was search the file (Ctrl+F) for the double quote character and Dreamweaver counted 815. Since these appear in pairs, we’re missing one (should be 816). Now to find which one is missing!

  38. 38. Carlo DiCelico on September 3rd, 2007 at 2:18 am

    Okay, so I was able to find the missing double quote character. If you replace this line:

    new RegExp(“^([:.#]*)

    with this line:

    new RegExp(“^([:.#]*”)

    it effectively uncomments the code that follows and causes the links to work. However, it also causes the effect (in my case the bottom border) to disappear! I counted the single quotes the same way and found 55 in the document. I was able to find the “extra” quote but this time I think it may be there on purpose, unlike the last one (RegExp takes a string argument, which should have been quoted using double quotes). Here’s the line that’s giving me trouble:

    parse:[/^\[ *(@)([\w-]+) *([!*$^~=]*) *(‘?”?)(.*?)\4 *\]/,/^(\[)\s*(.*?(\[.*?\])?[^[]*?)\s*\]/,/^(:)([\w-]+)\(“?’?(.*?(\(.*?\))?[^(]*?)”?’?\)/

    See it? First, the sequence (‘?”?) then the sequence (“?’? then again at the end the sequence (“?’?

    Unfortunately, I’m not strong enough in regular expressions to tell if this is supposed to be this way or not and what if anything can be done to get the effect working along with the link.

    Thanks.

  39. 39. Carlo DiCelico on September 3rd, 2007 at 2:30 am

    Okay, sorry for posting a series of comments about this but I realized that I was wrong about the quotes. The line new RegExp(”^([:.#]*) is part of a long series of concatenated strings, so it’s correct, there’s nothing wrong with it.

    However, the effect and the link still won’t work together at the same time (try clicking the menu items above, they should take you to this page, http://gmarwaha.com/blog/?=7# but they don’t).

    This is an awesome menu but it would be so much better if it functioned as a menu!

    Please help, all out of ideas. Thanks.

  40. 40. Ganeshji Marwaha on September 3rd, 2007 at 4:51 am

    @Andy – Are u trying to get the entire menu to the center of the page? If that is the case, you can try the famous margin: 0 auto; technique for the ul of the menu. Or, you can give some margin left so that the menu appears towards the right(this is how i have brought it to the right in my case). Hope that helps.

  41. 41. Ganeshji Marwaha on September 3rd, 2007 at 4:55 am

    @Carlo DiCelico – I have intentionally made the menu in the demo not to take to “#” anchor when clicked because then, if you are in the bottom of the page, you will be taken to the top unnecessarily while viewing the demo. Notice the “return false” in the callback function. This is what is preventing the menu from taking u anywhere. However, this is not part of the plugin itself, rather this is part of my code that gets executed when the menu is clicked. Hope that helped.

  42. 42. Daniel on September 3rd, 2007 at 5:29 am

    I couldn’t understand some parts of this article o.us poetry, but I guess I just need to check some more resources regarding this, because it sounds interesting.

  43. 43. Julio on September 3rd, 2007 at 2:07 pm

    I would really apreciate a vertical oriented version.

    Could it be possible?… or at least some tips to get it.

    Tx.

  44. 44. Carlo DiCelico on September 3rd, 2007 at 9:18 pm

    Oh, okay…so I can just change the return false to return true? also, what part of the code is responsible for keeping the menu item clicked underlined when the mouse moves away?

    Thanks a lot!

  45. 45. David on September 4th, 2007 at 2:04 am

    Could you please explain the setup of the gif image for the “with image” menu. I see you have bg.gif and lava.gif and that the lava.gif is actually to images saved as one gif (one above the other). If I want to use different colors what is the correct way to create the lava.gif image?

  46. 46. Ganeshji Marwaha on September 4th, 2007 at 3:11 pm

    @Daniel – Most of the work is done using CSS. So, a good CSS resource would be the best point to start. As far as the javascript part is concerned, it should be very straight-forward. No more than the explanation in this article should be required. But for more information about jQuery, visit jquery.com.

  47. 47. Ganeshji Marwaha on September 4th, 2007 at 3:13 pm

    @Julio – It is not currently possible in this version, but i am working on that and will be releasing the next version pretty soon. Keep yourself updated by subscribing to this rss feed.

  48. 48. Andres on September 4th, 2007 at 11:13 pm

    Hi, I am trying your great menu out, and I changed the return from false to true in order for the links to work, but now the marker for the active link goes back every time to “home”, and I don’t want this to happen.

    Can you please tell me how to preserve the original behaviour?

    Thank you very much!

  49. 49. Andres on September 5th, 2007 at 1:26 pm

    OK I think I know why this is happening…my links cause the page to generate all over again, so the startup function (“$(function() { $(“.lavaLamp”).lavaLamp({ fx: “backout”, speed: 700}) });”) gets executed every time the page reloads…can this cause the back li to get to home every time?

    How can I avoid this from happening?
    Thanks!

  50. 50. Rob on September 5th, 2007 at 1:30 pm

    Yes, how do you get it to highlight a particular menu item as being the page the user is currently looking at?

  51. 51. Ganeshji Marwaha on September 5th, 2007 at 7:48 pm

    @Andres – That is correct. When you remove the “return false”, you are allowing the link to do what it is supposed to do – take u to a different page. Since a new page is being shown, the lava lamp comes back to the first menu item (which is the default). The easiest solution to this is that, you will have to set the “li” that represents the current menu item in the HTML markup for that page itself. This can be done by adding a class called “current” to the “li” that you want to represent the page. For example, in your home page you might leave the defaults as such. In the next page, your lavalamp menu will have the class attribute for the “li” representing that page to “current”. This will make your new “li” as default. Hope that helps.

  52. 52. Ganeshji Marwaha on September 5th, 2007 at 7:49 pm

    @Rob – You just set the class attribute of the “li” that represents your current page to “current”. This will make that particular “li” as the default selected menu item.

  53. 53. Andres on September 5th, 2007 at 9:04 pm

    But that requires that I make a different header for each page…I guess that could work but is not acceptable for me…isn’t there a better way to solve this?

    Thanks

  54. 54. Rob on September 5th, 2007 at 11:11 pm

    Perfect! Thanks – this works very, very well :)

    @Andres – I just used some PHP. I already had a variable which altered the page title – I just checked against that. You could use Javascript to check the current page’s filename, but it’s not as good as doing it serverside, I think.

  55. 55. Andres on September 6th, 2007 at 2:03 pm

    Yes I took care of it also, with Javascript. Thanks to both of you.
    Regards.

  56. 56. Steven on September 7th, 2007 at 8:27 pm

    I have an onClick=”" on a box elsewhere on the page and I would like it to be able to trigger the lavaLamp menu to move the image to a specific menu item as if it had been actually clicked. I can’t figure out how to do this or if it’s even possible.

  57. 57. Evan on September 9th, 2007 at 8:55 pm

    Has anyone figured these links out yet, I changed the false to true and it still doesn’t work. If anyone has this working…can you you post it somewhere please. Thanks

  58. 58. Ganeshji Marwaha on September 13th, 2007 at 7:11 pm

    @Steven – I don’t think it is possible with the present code. But i guess, it should not be a difficult task to achieve. Just take a look at the code. If you are not able to fix it yourself, lemme know, we can work on it.

  59. 59. Tom on September 13th, 2007 at 10:26 pm

    Is there a way to orient the menu vertically? If so, could you post the code? Thanks very much!

  60. 60. matt on September 14th, 2007 at 7:56 pm

    Hi, i updated to jquery 1.2 and noticed that lavalamp no longer works, and i believe it’s because the dequeue method is now gone. any idea what the alternative or fix for this is? thanks!

    matt

  61. 61. matt on September 14th, 2007 at 8:30 pm

    update: i switched the dequeue function call to:

    jQuery(this).dequeue(this, “fx”); }

    and it seems to work.

  62. 62. Steven on September 14th, 2007 at 10:10 pm

    Figured it out. Created a function that accepts an element ID and generates a click event for that element.

    function clickIt(elementId) {
    var clickevent=document.createEvent(“MouseEvents”);
    clickevent.initEvent(“click”, true, true);
    document.getElementById(elementId).dispatchEvent(clickevent); /* ff only*/
    }

    Of course, this requires each LI have an ID param, but that’s okay by me.

  63. 63. Tom on September 14th, 2007 at 10:23 pm

    Is there any way to orient the menu vertically?

  64. 64. LavaLamp jQuery Sliding Menu on September 15th, 2007 at 3:17 am

    [...] LavaLamp is a latest release jQuery Javascript menu based on the original design of fancy menu by Guillermo Rauch. It is a Web 2.0 style smooth sliding nifty effect menu with light weight code and extra two more interface styles. You can free download the full source code file here. Besides last month we had a popular roundup of CSS based navigation menu, check it out for further reference. [...]

  65. 65. Ganeshji Marwaha on September 15th, 2007 at 4:05 am

    @tom – I am sorry, but at present this plugin doesn’t have vertical orientation. The next version might have it, but i can’t tell exactly when it will be out.

  66. 66. Ganeshji Marwaha on September 15th, 2007 at 4:06 am

    @matt – Glad you got it to work. I will use your fix when i update the plugin to support jquery 1.2

  67. 67. Ganeshji Marwaha on September 15th, 2007 at 4:08 am

    @steven – glad you got it to work.

  68. 68. diarioTHC | Menú en jQuey efecto sliding: LavaLamp on September 15th, 2007 at 12:47 pm

    [...] original fancy menú con efecto “sliding” hecho bajo mootools por Guillermo Rauch y que ganesh adapta para jQuery. El resultado es bueno y lo mejor de todo su peso, 700bytes, compatible con IE6/7, Firefox y [...]

  69. 69. Clip de Película » Menú LavaLamp con jQuery on September 15th, 2007 at 6:04 pm

    [...] LavaLamp [...]

  70. 70. Chris Coyier on September 16th, 2007 at 3:23 am

    Awesome! I gave up on using fancymenu on a site one time because of how mootools conflicts with prototype, I’ll have to check this out and see if it would be compatible now.

  71. 71. sean sen on September 23rd, 2007 at 5:07 pm

    It’s cool,But so slow.The inner block is slack whill disp

  72. 72. Sweet on September 24th, 2007 at 5:08 am

    I like your website alot…its lots of fun… you have to help me out with mine… notem6715

  73. 73. Name on September 24th, 2007 at 10:11 pm

    Cool

  74. 74. Pascal on September 29th, 2007 at 5:28 pm

    Hi Ganeshji,

    Thanks a lot for your job ;-)

    I followed Matt’s suggestion and I change this in jquery.lavalamp.min.js:

    {$back.each(function(){$.dequeue(this,”fx”)})
    to
    {$back.each(function(){jQuery(this).dequeue(this,”fx”);})

    and now the menu works with JQuery 1.2.1
    But as you can see on this testing site:

    http://luxpopuli.fr/cfdt/

    the pink square doesn’t follow the mouse sursor. I mean: if you go to RESEAU CFDT ISALPIN from QUI SOMMES-NOUS? then the square will stop first to CONTACTS, after to NOUS REJOINDRE and then to RESEAU CFDT ISALPIN.
    In fact, the square stop onto each item the mouse cursor fly over.

    I would like to make a suggestion:
    would-it be possible to add an option making it possible to have a sub-menu ?

    I added a su-menu, but the behavior of the square is then realy strange.

    Regards

  75. 75. cigarettes on September 30th, 2007 at 1:23 pm

    Very nice this blog =)

  76. 76. chichi on October 2nd, 2007 at 7:58 am

    Wow

  77. 77. Fredy Gil on October 2nd, 2007 at 8:29 pm

    I downloaded the Demo files, changed one link from # to http://www.google.com and the link doesn’t work. Why is that?

  78. 78. shadx on October 3rd, 2007 at 10:52 pm

    great plugin. Yeah I spent some time wondering why it wasn’t working to find out I had to downgrade to 1.1.3.
    I tried doing matts workarounds but not sure where those should be put but I think the id divs are right…
    Anyway thanks. Looking forward to 1.2.1 compatibility!

  79. 79. marlboro on October 4th, 2007 at 7:57 am

    Very nice this blog =)

  80. 80. gakkaman on October 4th, 2007 at 4:10 pm

    Thanks pal, we just made it run, also with php for the current class selection :)

  81. 81. Sam on October 6th, 2007 at 10:55 pm

    Hey, this is awesome! But does it work with the latest jQuery: 1.2? It would be so wonderful if it did, I do believe 1.2 is a major improvement on the toolkit. If somehow you get this please up date the plugin if necessary. Thanks a bunch! :D

  82. 82. leuisc on October 8th, 2007 at 12:34 am

    Hello

    Very much for a long time searched for article on this theme.Thanks.
    by

  83. 83. zxcvbnm on October 10th, 2007 at 6:26 am

    neat! thanks for your effort!

  84. 84. robert on October 12th, 2007 at 6:26 am

    very nice script !
    I nevertheless experienced a problem in Firefox and Safari that I have not been able to fix despite all the tentatives I did.
    Here is the problem : the lavalamp “effect” always shows in front of the links preventing those to be clicked. Said in a different way, the z-index of the tag is higher than the z-index of the tag no matter what you do in CSS.
    It does work in IE 7 though.
    Any idea.

  85. 85. tom on October 13th, 2007 at 12:14 pm

    well,
    i was tryn’ to get it work with JQ-1.2.1 without good results. Both of “tips” that was published above make lavalamp work with 1.2.1 but with speed of C64 :-)

    the reason is becouse of new format of dequeue (1.2), and (maybe) animate also.

    so, here is working path – change function setCurr(each) to:

    function setCurr(a){ $back.css({“left”:a.offsetLeft+”px”,”width”:a.offsetWidth+”px”});curr=a};
    function move(a){
    $back.each(
    function(){
    $(this).dequeue()
    } ).animate({width:a.offsetWidth,left:a.offsetLeft},{duration:o.speed, easing:o.fx})
    }

    have a nice day! :-)

  86. 86. tom on October 13th, 2007 at 12:19 pm

    of course, i’ve made a mistake. when i wrote “change function setCurr(each)” i mean “change function setCurr(a)”

    sorry
    :-)

  87. 87. Krijn Hoetmer on October 15th, 2007 at 1:28 pm

    Very cool script! Thanks a lot :)

    For people looking for a vertical one, it’s very easy to adapt: http://krijnhoetmer.nl/stuff/javascript/bounce-menu/

  88. 88. James Cook on October 15th, 2007 at 1:53 pm

    Great job. When you look at the code, you realize how great a base jQuery is for plugins. When you examine the (less than) 30 lines of code to pull it off, you (and Guillermo Rauch) realize how elegant a programmer you are. Bravo.

  89. 89. Ian Tearle on October 15th, 2007 at 10:00 pm

    Hey there, great menu! I love it! Only one major thing though, its not compatible with the latest release of jQuery.

    Any chance of an update? or any pointers on how to make it compatible?

  90. 90. Harry Moore on October 19th, 2007 at 3:54 pm

    I have downloaded this, its very cool, but I can not get it to work at all. The effect works great but when you try to click on a link it will not go to the page. I used the demo provided and just swapped out links and it is not going to the link, the right click and then open in new tab works fine so the links are correct and there but the normal way will not work. I am using jquery-1.1.3.1.min.js if that is some problem. Thanks for any help.

  91. 91. Shadowhand on October 24th, 2007 at 2:00 am

    This plugin is currently incompatible with jQuery 1.2.x. To make it compatible, replace .each(function() { $.dequeue(this, "fx"); }) with .stop() around line 84-85.

  92. 92. Nandha on October 24th, 2007 at 9:17 am

    Cool menu…..Just replace true instead of false in the following function… Links to other page will works….
    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return false;
    }
    });
    });

  93. 93. Angie on October 26th, 2007 at 5:30 am

    I had no problem making this code play nice with jQuerynoconflict and all appears to be fine except that when I test in Safari 2.0.4 it takes forever to load and the effects don’t react properly to mouse movement. Safari just chokes on it. I can’t find any Javascript errors etc., so I’m wondering if anyone else is having this problem. I’m using it on a wordpress 2.3 build.

  94. 94. » 25 Code Snippets for Web Designers (Part7) on October 26th, 2007 at 3:21 pm

    [...] Lavalamp for jQuery lovers – Hover menu built with A semantically correct HTML markup, A CSS to skin the markup and unobstrusive javascript [...]

  95. [...] Lavalamp for jQuery lovers – Hover menu built with A semantically correct HTML markup, A CSS to skin the markup and unobstrusive javascript [...]

  96. 96. Shad Vick on October 26th, 2007 at 11:50 pm

    Impressive to say the least. I’ve been looking for something this slick for a while. Definitely rivals flash – but all the benefits of SEO. Kudos kudos!

  97. 97. Weekly Roundup #3 on October 28th, 2007 at 5:00 pm

    [...] LavaLamp for jQuery lovers [...]

  98. 98. J-M on October 28th, 2007 at 6:46 pm

    Hello,

    I try to use the lavalamp menu and i try to change the initial selected menu with a css class current. Could you show me an example of that because i have a problem to do that
    Thanks for your response

  99. 99. gokul on October 30th, 2007 at 7:02 am

    Well, Nice Menu Pretty Handy work.

  100. 100. ??????JS???? : Yustar’s Blog on November 8th, 2007 at 5:15 pm

    [...] LavaLamp jQuery ???? ? ?? jQuery [...]

  101. 101. Craig Hoffman on November 8th, 2007 at 9:26 pm

    Cool JQ plug-in. Nice work on the demo too! I’ve been trying to get your plug in to work on JQ 1.2.1 (latest version) and have had no luck. It does work with your working version 1.1.3.1. Just so you know.

  102. 102. Pascal on November 10th, 2007 at 8:30 pm

    Hi,

    Did someone managed to adapt the menu to easing 1.2 ?
    If yes, could you post the part of code we have to modify (if it is not too much long) ?

    Thanks per advance

    Pascal

  103. 103. Daniel on November 14th, 2007 at 6:14 am

    I have to say, that I could not agree with you in 100% regarding o.us poetry, but it’s just my opinion, which could be wrong :)

  104. 104. Ajax demonstration » 13 of best ccs and JavaScript Menus on November 15th, 2007 at 9:05 pm

    [...] demo was suggested by one of our commentators Daniel Niquet: Another Context Menu 8 ) LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface styles. [...]

  105. 105. Steve Finkelstein on November 16th, 2007 at 5:57 am

    Hi,

    I’m trying to understand the reasoning for the image on http://www.gmarwaha.com/jquery/lavalamp/image/lava.gif and how it interacts with your actual menu. Is there something I’m overseeing? Is it really required?

  106. 106. 13 Awesome Javascript CSS Menus on November 17th, 2007 at 3:01 pm

    [...] ) LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface styles. [...]

  107. 107. 240 plugins jquery : sastgroup.com on November 21st, 2007 at 3:11 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  108. 108. Propiedad Privada » Blog Archive » 240 Plugins para jQuery on December 5th, 2007 at 12:41 pm

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  109. 109. james on December 5th, 2007 at 5:04 pm

    in my Firefox (2.0.0.11), the animation stalls if the mouse if off the container while it is in motion but the highlight bar snaps back to it’s current active position on mouseOut in IE (7.0.5730.11), and IE is snappier animation for me, too. Having FF behave like that is not advantageous.

  110. 110. chinatian › jQuery????? on December 6th, 2007 at 1:22 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  111. 111. Michael on December 7th, 2007 at 7:14 pm

    Great plugin, love the effect. I took all of the suggestions on getting this to work with jQuery 1.2.x and integrated them into the code for this plugin, in addition, I changed the plugin code to keep it from conflicting with other libraries. Let me know if you want a copy of the updates. Now I just need to figure out how to get it to display submenus……………..

  112. 112. 13 Awesome Javascript CSS Menus | Vietnamese Webmaster Center on December 10th, 2007 at 7:14 am

    [...] demo was suggested by one of our commentators Daniel Niquet: Another Context Menu 8 ) LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface styles. [...]

  113. 113. Çad?r on December 12th, 2007 at 10:34 am

    nice plugin really but I’ve been trying to get your plug in to work on JQ 1.2.1 and have had no luck.

  114. 114. cadir on December 12th, 2007 at 10:34 am

    I’ve been trying to get your plug in to work on JQ 1.2.1 (latest version) and have had no luck.

  115. 115. Grigore Madalin on December 20th, 2007 at 10:47 am

    Nice work!

    But…

    On Internet Explorer 6.0 “Ride an elephant” menu entry appear splited on two lines like this:

    Ride an
    elephant

    Because of this your menu demo look is broken (for example the blue line from Bonus demo overwrite the “elephant” word, the highlight box does not expand as Ride an elephant do and so on…)

    You may want to fix this. :)

  116. 116. Google Reklam on December 23rd, 2007 at 10:49 am

    thanks it s great script for me, i will use it

  117. 118. komik on February 22nd, 2008 at 9:17 pm

    thnkx

  118. 119. David Jacques-Louis on February 23rd, 2008 at 10:49 am

    Will use it on my site for sure.

  119. 120. nu-ideas on February 26th, 2008 at 3:23 pm

    I have just gotten into the whole new world of jQuery and the great things it can do… I was wondering if anyone got this to actually work with submenus as if not – i think i may have to get my fingers wet.

    :) – keep up the good work dude.

  120. 121. Jquery?N??? » NeiLyi.cn -??? on February 27th, 2008 at 8:25 am

    [...] for jQuery.jQuery SuckerFish Style.jQuery Plugin Treeview.treeView Basic.FastFind Menu.Sliding Menu.Lava Lamp jQuery Menu.jQuery iconDock.jVariations Control Panel.ContextMenu plugin.clickMenu.CSS Dock Menu.jQuery Pop-up [...]

  121. 122. yeefe ???? » Blog Archive » 13??????Javascript?????? on February 29th, 2008 at 2:55 am

    [...] ) LavaLamp jQuery Sliding Menu ????jquery???????????????????????Guillermo [...]

  122. 123. yeefe ???? » Blog Archive » 13??????Javascript?????? on February 29th, 2008 at 2:55 am

    [...] ) LavaLamp jQuery Sliding Menu ????jquery???????????????????????Guillermo [...]

  123. [...] Lava Lamp for Jquery Lovers [...]

  124. 125. Vernon on March 5th, 2008 at 3:07 am

    Just a small thing – I seem to notice that the original mootools animation is slightly but noticeably smoother (Firefox 2 on Linux). Is this something that can be improved in the plugin, or is this due to a difference in how JQuery implements easing animations and effects? I suspect it is the latter since I’ve noticed this in a couple of other similar plugins. In any case, thank you very much, this plugin is just what I’m looking for!

  125. 126. Juliano on March 5th, 2008 at 1:58 pm

    y swapped on the:
    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return menuItem;
    }
    });
    });

    the line: return false;

    by: return menuItem;

    works.

    sorry the bad english ;P

  126. 127. Hide IP on March 7th, 2008 at 9:34 am

    I like this! Good job! Thank you

  127. 128. Matt on March 9th, 2008 at 11:32 am

    Hi,

    I like your lavalamp effect very much. GOod job!

    I am trying to get the menu to work using the latest JQuery version (1.2.3) but your menu only seems to want to work with the 1.1.3.1 version. Any ideas how to get it to work with a later version?

    Many thanks.

  128. 129. Matt on March 9th, 2008 at 11:39 am

    On closer reading the comments I found the answer that Shadowhand (comment 91) made fixed the issue.

    Many thanks Ganesh and Shadowhand!

  129. 130. THE EYE OF RIA » jQuery ???? on March 10th, 2008 at 6:37 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  130. 131. Grom’s home » Blog Archive » [?]240??jQuery?? on March 11th, 2008 at 1:52 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  131. 132. Sussex Web Design on March 13th, 2008 at 9:39 am

    What a great script, works a treat too! Keep up the great work :-)

  132. 133. Jolyon Terwilliger on March 13th, 2008 at 8:17 pm

    Hello all – I have posted an update to this awesome plugin that works expressly with jQuery 1.2.x and adds two new features:

    You can now move the LavaLamp highlight vertically as well as horizontally (even diagonally!)
    You can specify the default list item to highlight upon page load.

    Demo and download here: http://nixboxdesigns.com/lavalamp.php

    Thanks Guillermo and Ganesh!

  133. 134. 13??????Javascript?????? | ???? on March 16th, 2008 at 2:44 am

    [...] ) LavaLamp jQuery Sliding Menu ????jquery???????????????????????Guillermo [...]

  134. 135. joe2 on March 17th, 2008 at 1:02 pm

    good work!

  135. 136. Richard on March 19th, 2008 at 7:58 pm

    Thank you Jolyon Terwilliger !

  136. 137. ???? » ??????????jquery?? on March 20th, 2008 at 1:26 am

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  137. 138. ???? » ??????????jquery?? on March 20th, 2008 at 1:26 am

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  138. 139. Koeus » Jquery - Best Tab/Menu combo on March 20th, 2008 at 5:57 pm

    [...] http://www.gmarwaha.com/blog/?p=7 – LavaLamp [...]

  139. 140. 13??????Javascript?????? - ??: ????? on March 26th, 2008 at 8:19 am

    [...] LavaLamp jQuery ???? ? ?? jQuery ????? ???LavaLamp jQuery ???? ??? Mootools Fancy [...]

  140. [...] LavaLamp [...]

  141. 142. Ed on March 29th, 2008 at 4:24 am

    How can you change the starting menu item that the shadow is behind? When I click on a menuitem, i want it to reload the page and stay on that menu item to indicate which page is loaded.

  142. [...] LavaLamp Jquery / BrowserShots / Phatfusion Image Menu / Webber Dock Menu / Accordion / Css Menu ShowCase [...]

  143. 144. 240 adet jquery ekelntisi - Volkan ?entürk on April 9th, 2008 at 10:04 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  144. 146. Aseel on April 14th, 2008 at 8:08 am

    It’s really very nice menu , but can it work with submenu ? i would like to use it but i need to display submenu

    Thanks

  145. 147. rob on April 15th, 2008 at 6:39 pm

    Thaks works great, easy to customize cheers!!

  146. 148. Muzicar on April 15th, 2008 at 8:52 pm

    Well done, mate! Good work! Thanks for sharing!

  147. 149. ?????? ??? » ????? ????? » Lava Lamp Menu on April 16th, 2008 at 8:25 am

    [...] Link [...]

  148. 150. geyik on April 18th, 2008 at 1:15 pm

    thank you

  149. [...] Another demo was suggested by one of our commentators Daniel Niquet: Another Context Menu 8 ) LavaLamp jQuery Sliding Menu [...]

  150. [...] LavaLamp jQuery Sliding Menu Es una Slide basado en jQuery con un codigo de muy poco peso [...]

  151. 153. jQuery????? - DesignWalker on April 23rd, 2008 at 8:46 am

    [...] LavaLamp for jQuery lovers! [...]

  152. 154. ctraos on April 24th, 2008 at 5:51 am

    exelente muchas gracias !!

  153. 155. Shane on April 24th, 2008 at 3:04 pm

    like Ed said… :)

    How can you change the starting menu item that the shadow is behind?

    When I click on a menu item, i want it to reload the page and stay on that menu item to indicate which page is loaded.

  154. 156. 51+??jQuery????? | ???? on April 25th, 2008 at 5:12 am

    [...] LavaLamp for jQuery lovers!- A step by step tutorial to create a LavaLamp menu packaged as a plugin for the amazing jQuery javascript library. [...]

  155. 157. RedesignYourBiz.com on April 25th, 2008 at 6:41 am

    This is truly an amazing script….. i absolutely love it…… thanks a lot dude. i will surely use it for my web designing needs.

  156. 158. jQuery????.(240) | Sapling soliloquize on April 28th, 2008 at 4:05 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  157. 159. TheMystical on April 29th, 2008 at 9:36 pm

    Awesome, I just implemented on my site, thank you.
    To Shane and Ed, I had the same issue, I’m using WordPress and to get the highlight at the right spot I used conditional statements like this:

    “>Home
    >Category
    >Page

  158. 160. TheMystical on April 29th, 2008 at 9:39 pm

    ops, the code didn’t come out properly, anyway, look at wordpress.org for conditional statement

  159. 161. ?????240??jQuery?? - ???? on May 3rd, 2008 at 4:42 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  160. 162. Debanjan Ghosh on May 5th, 2008 at 9:17 pm

    This such a cool and well written piece of code… i am pretty soon going to put this on website….thanks a lot

  161. 163. gruiaz on May 5th, 2008 at 10:09 pm

    Nice work!
    It has only a problem. I won’t works with newer versions of jQuery, and i cannot use it because i need newer versions of jQuery for my other components in the site.
    If you could change-it so it could be used with jQuery 1.2 i will be veeeerrrryryyyyy happy!

  162. 164. Dave on May 6th, 2008 at 12:35 pm

    This project seems to be continued here:
    http://plugins.jquery.com/project/lavalamp2

  163. 165. Fudje on May 15th, 2008 at 8:01 am

    Hi Ganeshji,

    Thanks a lot for your job, am designing a new menu but am having problems when i make a drop drop menu.

    Thing is that when i hover on my second menu border-bottom:2px solid #ff0000; return the width of the drop down menu which is 185px;

    Where can i send you a copy of my work??….or any print screen.

    Regards

  164. 166. Lavalamp examples · Mancub : web design in Cardiff on May 16th, 2008 at 10:07 am

    [...] behind it, I’m not that clever! It is powered by jQuery and most importantly the fantastic lavalamp plugin. In these examples I have kept everything as close as possible to the original to make it easy to [...]

  165. 168. cypher on May 16th, 2008 at 9:30 pm

    Hi fellows, Hi Ganesh,

    I’ve had hard times with the lava lamp.
    For your information, it does not work with all versions of jQuery; not with jquery-1.2.3.min.js at least.

    My two cents.

  166. 169. cypher on May 16th, 2008 at 9:35 pm

    Oooops !! Should have read the comments, especially dave’s (164) before posting, or working on it.

    Thanks dave !

  167. 170. 240 plugins jquery | Computer and Technoloy News on May 17th, 2008 at 6:23 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  168. 171. 240 plugins jquery | Computer and Technoloy News on May 17th, 2008 at 6:23 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  169. 172. 240 plugins jquery | Computer and Technoloy News on May 17th, 2008 at 6:23 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  170. 173. temizlik ?irketleri on May 20th, 2008 at 12:53 pm

    ops, the code didn’t come out properly, anyway, look at wordpress.org for conditional statement. ???

  171. 174. nakliyat on May 20th, 2008 at 12:57 pm

    t’s really very nice menu , but can it work with submenu ? i would like to use it but i need to display submenu ?????

  172. 175. jonas on May 20th, 2008 at 6:59 pm

    Hey, ive been testing this awsome script, but i cant get the “CURRENT” class to function!?

    is there some css code for it, because I have the ()
    in the code please help me!

  173. [...] I programmed the entire site.  For the menu, I utilized a Javascript code called Lavalamp. [...]

  174. 177. hit paylas on May 22nd, 2008 at 9:10 pm

    moderate comments page

  175. 178. jQuery LavaLamp Menu | Webmaster-Source on May 25th, 2008 at 11:43 am

    [...] the most popular JavaScript frameworks on the planet, gets a lot of cool scripts developed for it. LavaLamp is one of those jQuery-dependent scripts that’s useful, and really cool at the same [...]

  176. [...] focus on based on it’s position on the screen. labelOver Overlay labels over an input field. LavaLamp Navigation menu with a ‘lava’ effect. Lazy Load Only load images that are in the [...]

  177. [...] focus on based on it’s position on the screen. labelOver Overlay labels over an input field. LavaLamp Navigation menu with a ‘lava’ effect. Lazy Load Only load images that are in the [...]

  178. 181. ????? » 240?JQuery?? on May 28th, 2008 at 8:58 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Men. jQuery [...]

  179. 182. ????? » 240?JQuery?? on May 28th, 2008 at 8:58 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Men. jQuery [...]

  180. 183. Kranthi Reddy on May 30th, 2008 at 10:27 am

    Hello Taylor, I am using mootols and also Jquery in a single page, mootools for the banner and Jquery for the right menu, but the problem is that if use both of them then i get an error with the mootols and ey mootools stop working , and if i comment any one of them then the other works veryfine, Do you this there is a clash between moootols and Jquery? ? ?
    PLease suggest as it is urgent.
    THanks in advacen
    kranthi Reddy

  181. 184. Roman C. Coedo on May 30th, 2008 at 9:23 pm

    Hello Ganeshji, thanks for your nice work, i adapted your code to work with Joomla, i can send it to you, so you can upload it too if you want. Just email me.

    Thanks one more time =)

  182. 185. 13??????js+css????!!! at ??? on May 31st, 2008 at 3:59 am

    [...] demo was suggested by one of our commentators Daniel Niquet: Another Context Menu 8 ) LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface styles. [...]

  183. 186. YASIR on May 31st, 2008 at 11:54 am

    nice work. i adapted it , many thanks

  184. 187. Martino on May 31st, 2008 at 6:14 pm

    This menu doesn’t works with lightbox at the same time.

  185. 188. Alex Stanford on June 3rd, 2008 at 6:20 pm

    Can this work if the navigation text is part of the image, and not coded?

  186. 189. video klipler on June 11th, 2008 at 9:39 am

    ops, the code didn’t come out properly, anyway, look at wordpress.org for conditional statement

  187. 190. JavaScript?+ JQuery??? at ORANGE AGE - blog on June 11th, 2008 at 1:01 pm

    [...] ?lavalamp.js ??????????????????????????????????????????FLASH????????????????????????????? [...]

  188. 191. 10 useful jQuery plugins :: ENHANCE on June 11th, 2008 at 1:11 pm

    [...] LavaLamp [...]

  189. 192. Web Design Sussex on June 12th, 2008 at 10:57 am

    IF YOU ARE TRYING TO GET VERSION 1.2.x. TO WORK DO THE FOLLOWING:

    In the jquery.lavalamp.js file, replce this:

    .each(function() { $.dequeue(this, “fx”); })

    with

    .stop()

    around line 84-85.

  190. 193. gally on June 13th, 2008 at 9:39 am

    To handle back/Forward buttons n url changes i’ve done the following (Based on steven idea)

    (function() {
    var previousURL = window.location.href;
    setInterval(function() {
    if (window.location.href != previousURL) {
    var evt = document.createEvent(“MouseEvents”);
    evt.initMouseEvent(“click”, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
    switch(window.location.href){
    case “http://bla/dfsgsdfgs” :
    document.getElementById(“l1″).dispatchEvent(evt);
    break;
    case “http://sdlfks/Dsfsdfsf” :
    document.getElementById(“l2″).dispatchEvent(evt);
    break;
    }
    }
    previousURL = window.location.href;
    }, 500);
    })();

    Hope this help someone

  191. 194. Çok kullan??l? 10 jQuery eklentisi « basarozcan on June 13th, 2008 at 11:05 am

    [...] lavalamp : kayma efekti veren bir eklenti [...]

  192. 195. Iain Sutherland on June 13th, 2008 at 5:51 pm

    nice work on the menu. very cool and lightweight code.

  193. 196. Cristina on June 13th, 2008 at 10:22 pm

    it’s posible to change the menu orientation?

  194. 197. ???? - ?????240??jQuery?? on June 14th, 2008 at 2:02 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  195. 198. mant3ra on June 16th, 2008 at 9:35 pm

    i have one question …. about this menu since i have some pages like :
    home.hml, aboutme.htm, contact.html and so on, but i have one prob. for ex if i am on home page and click CONTACT PAGE its all ok Contact page is loaded but menu now showin (hover if i may call it that way) is on home page menu .. not on contact how can i fix this??? anyboy know?

  196. 199. Eric on June 19th, 2008 at 2:26 am

    I know this may seem like a very sad thing to comment on but i do have a question. because the id=”" tag is using a number it wont validate. is there a way to change this to a letter or would it just be to much trouble to worry about one error.

  197. [...] lavalamp : kayma efekti veren bir eklenti [...]

  198. 201. Tim on June 20th, 2008 at 4:09 pm

    Hi Ganeshji –

    I have everything working perfectly – except – the right side of the active ’s background. The background just cuts off as opposed to rounding off as it should. I suspect something is funky with the “.back” class in the styles but that’s just a guess. I would be more than happy to make a donation if you can help me. Thank-You!

  199. 202. ??240??jQuery?? | ????????? on June 28th, 2008 at 3:23 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  200. 203. Hidden Pixels - JQuery Examples on June 30th, 2008 at 9:47 am

    [...] Lava Lamp jQuery Menu. [...]

  201. 204. jQueryTips » ?????? jQuery Plugins ??????? 200 ?????? on July 1st, 2008 at 5:08 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  202. 205. jQueryTips » ?????? jQuery Plugins ??????? 200 ?????? on July 1st, 2008 at 5:28 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  203. 206. xavier on July 6th, 2008 at 12:22 am

    thanks for this script, i take this menu for my website, http://www.scale-style.be.

  204. 207. Heather on July 7th, 2008 at 3:18 pm

    Hi,
    We have a problem trying to get the lavalamp navigation working along side jquery zoom ( type magic zoom). We’ve already tried out everything in our power (including var j = jQuery.noConflict(); $j(function() { $j(“.lavaLamp”).lavaLamp({ fx: “backout”, speed: 700 })}); ) but with no sucess.
    Any solutions?

  205. 208. Must have jQuery plugins [July 2008] | SKFox on July 11th, 2008 at 10:58 pm

    [...] Lava Lamp Menu This menu showcases a very unique lava lamp effect on hover. [...]

  206. 209. taquito on July 14th, 2008 at 5:26 am

    hello, I would like to put this into a menu of my blog, but I am a novice, if you send me a concrete explanation of how to do it.
    Since already thank you very much!
    taquito

  207. 210. izmir evden eve on July 14th, 2008 at 10:40 am

    thanks you..

  208. 211. John on July 16th, 2008 at 2:42 am

    Is tutorialvid.com using the lava menu. Looks awesome.

  209. 212. Shelley on July 16th, 2008 at 9:29 am

    At last, I’ve found a site that shows me how to do this!!! Thanks bigtime!

  210. 213. dotacje unijne on July 16th, 2008 at 11:32 am

    Im impressed! I love jQuery and all of this tips based on it!
    thx !

  211. 214. yat temizli?i on July 16th, 2008 at 12:55 pm

    thank you wery much

  212. 215. Dan Richardson on July 16th, 2008 at 1:54 pm

    I don’t know if people have already figured a way to do this, but i have this beautiful script working with submenus. These submenu’s dont have their own lavalamp though.
    Just one small code change is required in the lavalamp.js file.

    When the script initialises the lavalamp-ness, it collects all li’s. All you need to do is declare that you want direct li descendants of the ul (instead of all li’s). Do this simply with ‘$(“> li”, this)’ in the lavalamp.js file

    So it should now read:
    $li = $(“> li”, this), curr = $(“li.current”, this)[0] || $($li[0]).addClass(“current”)[0];

  213. 216. Andrea on July 16th, 2008 at 10:37 pm

    Hello, this effects it’s very nice, and i wont to use it for my new website.

    When I done all as in the tutorial, my links doesnt wont to work and I dont know how to solve this, problem. Help me please!

    Bye

  214. 217. JACF on July 18th, 2008 at 7:03 pm

    Hello! I’m using this beautiful menu for my website, however I seem to have a problem. The menu shows up fine but it only displays 3 items from the list, when it should display all the 5 items…Please help me! You might look at my page source to see if I did anything wrong.

  215. 218. JACF on July 19th, 2008 at 10:42 am

    Nevermind! I found a solution to the problem. The lava lamp menu only displayed 3 pages instead of the 5 pages I wanted, and I found that the problem was in the style.css file. My #nav-left tag had a width of 440 px which didn’t give room for all the pages to appear. I just changed it to 700px and it displays just fine :) Hope this helpe others solve this problem. (Note: I use Premiun News Theme on Wordpress. If you use another theme or you’re not a Wordpress user, the menu might be located on another place rather than nav-left!)

  216. 219. KZ on July 20th, 2008 at 8:18 pm

    I am kind of beginning here … I tried to put an actual file path in the “Plant a tree” – as”Plant a tree“, but it won’t go to that file, and it still works as if a #. do i need to add something like
    return window.location.href for the function click: function()?
    could anyone show me where to modify to make this href link work?
    thanks!
    kz

  217. 220. KZ on July 20th, 2008 at 8:34 pm

    Hi:
    i got it to change the micro func in the test file to:

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    // return false;
    return menuItem;
    }
    });
    });

  218. 221. KZ on July 20th, 2008 at 9:29 pm

    I hate to admit but i have to: this fancy menu is excellent, so are the tutorial, downloads, references, and the comments. Fantastic.

  219. 222. iyinet webmaster forumu 2008 seo yarismasi on July 22nd, 2008 at 10:02 am

    it’s really very nice menu

  220. 223. Jeremy on July 22nd, 2008 at 3:36 pm

    Don’t know if anyone else has found a work-around for making the links function, but this works:
    $(function() {

    $(“#ll_cont”).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    //alert($(this).attr(“id”));
    }
    });

    //THIS IS THE ADDED CODE
    $(“.ll > li:has(a)”).click(function(){
    document.location.href = $(this).children(“a”).attr(“href”);
    });
    //END CODE
    });

  221. 224. Jeremy on July 22nd, 2008 at 3:39 pm

    Err…Sorry, forgot to mention that ‘.ll’ is the class I shortened ‘.LavaLamp’ to, so basically this will select all li’s inside your lavalamp list which have an ‘a’ child, and navigate to that a’s href attribute on click.

  222. 225. Franck on July 22nd, 2008 at 9:35 pm

    Hello,
    Thanks for this menu and forum;
    I have this message after install the script:

    Fatal error: Smarty error: [in header.tpl line 65]: syntax error: unrecognized tag: location.href = ‘?e=’+e; (Smarty_Compiler.class.php, line 436)

    Can you help me?

    thanks

  223. 226. chandu on July 23rd, 2008 at 2:31 am

    This lamp give weird loading.. effect on mouseover in IE6

  224. 227. Will on July 23rd, 2008 at 8:34 pm

    Hi

    I’ve increased the background image (bg.gif to a width of 900px). My text as before (the list items) is appearing from the left (left-aligned)… how do i center the list items so they appear in the middle of my larger image?

    Thanks

  225. 228. Zea on July 24th, 2008 at 6:50 am

    Hi,

    I am very new in web programming as well as in JS. The menu is really a good menu. I want to use it. But the problem is it is conflicting with the versions of jquery in IE. I am using other version jquery-1.2.3.pack. for lavalamp it is jquery-1.1.3.1min.js. i want to use only one jquery. can anyone tel me how can i do that without any error in ie.
    other browsers are ok. i also tried jquery full version it woudnt work.. plz help me

  226. 229. Zea on July 24th, 2008 at 9:54 am

    Error: $.dequeue is not a function
    Source File: http://localhost/rosevalley/system/application/views/js/jquery.lavalamp.js
    Line: 32

    its showing this error also

  227. [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  228. 231. Ricky on July 28th, 2008 at 7:46 am

    Could someone please tell me how to integrate this script into Joomla? Thank you.

  229. 232. Nicolas M on July 28th, 2008 at 3:41 pm

    Same problem.

    I m trying to use this script with the menus of Joomla.

  230. 233. iyinet webmaster forumu 2008 seo yar??mas? on July 29th, 2008 at 7:13 am

    Thanks nice menu :)

  231. 234. ip adres on July 29th, 2008 at 7:17 am

    Nice menus. :) gj dude

  232. 235. Ricky on July 30th, 2008 at 2:17 am

    Ok, got this to partially work with joomla, but when I click the links they don’t do anything.

  233. 236. Ricky on July 30th, 2008 at 8:29 am

    Got it working with Joomla! Contact me via my website if you would like more information.

  234. 237. iyinet seo on July 30th, 2008 at 7:08 pm

    Thanks for all

  235. 238. Mark on July 31st, 2008 at 8:26 am

    For all those that require the right page to be selected and the class=”current” is not working you need to edit the JS file first.
    Find this line .addClass(“current”) and remove the text to look like this .addClass(“”) now add your class li class=”current” on your page to whichever nav you want to be selected. thats it. Any problems, I can always help out, contact me through my website http://www.coolcreation.co.uk

  236. 239. hal? y?kama on July 31st, 2008 at 5:02 pm

    thanks

  237. 240. ebachan on August 3rd, 2008 at 3:14 pm

    Ganeshji, did you get the code from “Roman C Coedo”? I would love to have it for my site.

    Roman, can you mail it to me via Emerging Energies (dot) com?

    Thanks!

  238. 241. Ken on August 5th, 2008 at 12:19 am

    Lavalamp Bottom Style(jquery-1.1.3.1.min.js) and lightbox(prototype.js) don’t work together at the same time.
    Could anyone tell me how to solve it?

  239. 242. 13??????Javascript?????? | Primus on August 5th, 2008 at 1:50 am

    [...] ) LavaLamp jQuery Sliding Menu ????jquery???????????????????????Guillermo [...]

  240. 243. yamee on August 5th, 2008 at 11:10 am

    Hello! I’m using this beautiful menu in website. I am very new in web programming as well as in html and css. It is very helpfull me. thnks all

  241. 244. oyun on August 6th, 2008 at 9:57 am

    Hello! I’m using this beautiful menu in website. I am very new in web programming as well as in html and css. It is very helpfull me. thnks all

  242. 245. Club osCommerce » Lavalamp Breadcrumb in osCommerce on August 6th, 2008 at 4:59 pm

    [...] Rick asks; I can tell from your posts that you are familiar with jquery. What would you charge to make this work with my oscommerce store: http://gmarwaha.com/blog/?p=7 [...]

  243. 246. joe on August 6th, 2008 at 7:16 pm

    hello . I am new to programming … in my web site I am using lightbox effect and lavalamp . when you use both lightbox effect is not working .

    showing some error

    ???????????????????????????????

    anyone tell me how to solve it?

  244. 247. animasyon on August 6th, 2008 at 10:30 pm

    Is tutorialvid.com using the lava menu. Looks awesome.

  245. 248. Mark on August 7th, 2008 at 7:43 am

    Anyone with issues using lavalamp with things like lightboxs and prototype.js library, this is due to a conflict between the prototype library and Jquery library. If you Google you should be able to find the answer. If not I will write something up over the weekend on how to solve the issue.

  246. 249. Mark on August 7th, 2008 at 7:44 am

    Anyone with issues using lavalamp with things like lightboxs and prototype.js library, this is due to a conflict between the prototype library and Jquery library. You need to resolve this conflict using something like this http://docs.jquery.com/Using_jQuery_with_Other_Libraries

  247. 250. ?Ajax?LavaLamp?????? | unvent on August 7th, 2008 at 1:24 pm

    [...] ??????? ?? PLAIN TEXT [...]

  248. 251. JACF on August 8th, 2008 at 10:49 am

    Thanks Mark! That’s exactly what I’ve been looking for. The menu works beautifully on my homepage, but then when I go to my gallery page, which uses a lightbox plugin to load the pictures, the menu just looses it’s beauty. I will read through that and try to solve this problem.
    Thanks a lot!

  249. 252. JanB on August 8th, 2008 at 8:22 pm

    Does not work with new jQuery versions. Tried jquery-1.2.3.min.js and jquery-1.2.6.min.js on my servers but only your jquery-1.1.3.1.min.js did work. What a waste of two hours of my life :( (((

  250. 253. ?????240??jQuery?? on August 10th, 2008 at 7:52 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  251. 254. Zoran on August 10th, 2008 at 9:26 pm

    Hi there! I wanted to ask is there nay possibility to force this menu to bi linked?? I can insert a href function, but there’s no way to link work!!! Any suggestion??? Please!

  252. 255. Christian on August 12th, 2008 at 2:01 pm

    Hi, my menu is working fine, but when i refresh the page in safari the hover moves. It looks like it is moving to the bottom left of the ul tag, once i hover over a button it goes back to normal, it just doesn’t look too good when it does this.

  253. 256. Tam indir on August 13th, 2008 at 9:20 am

    Ok. Thanks Mark.
    How do you set mouse over effect? I have a problem on this.
    Thanks again for your commnents and this article.

  254. 257. Tam indir on August 13th, 2008 at 9:21 am

    Ok. Thanks Mark.
    How do you set mouse over effect? I have a problem on this.
    Thanks again for your commnents and this article.

  255. 258. ???? » Blog Archive » 240??jQuery?? on August 14th, 2008 at 7:33 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  256. 259. Mark on August 15th, 2008 at 7:58 am

    Hi Tam, not sure what trouble you are having exactly, can you explain in more detail? is it not working at all? or you can not change the selected class?

  257. 260. atama on August 15th, 2008 at 8:14 am

    Anyone with issues using lavalamp with things like lightboxs and prototype.js library, this is due to a conflict between the prototype library and Jquery library. If you Google you should be able to find the answer. If not I will write something up over the weekend on how to solve the issue.

  258. 261. Mohammad on August 16th, 2008 at 8:21 am

    Hi, this menu looks awesome.

    I was using only one function to generate the menu, so it was kinda hard for me to figure it out how to set the current page.

    I create a separate javascript file which uses YUI’s API:

    YAHOO.util.Event.addListener(window, “load”, findPage);

    function findPage()
    {
    var sPath = window.location.pathname;
    var sPage = sPath.substring(sPath.lastIndexOf(‘/’) + 1);
    var current_element=document.getElementById(sPage);
    YAHOO.util.Dom.addClass(current_element, “current”);
    makeMenu();
    }

    function makeMenu()
    {
    $(“.lavaLamp”).lavaLamp({ fx: “backout”, speed: 700 });
    }

  259. 262. The Best CSS / Javascript Menu’s | Net Feast on August 16th, 2008 at 9:34 am

    [...] ) LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface styles. [...]

  260. 263. evden eve izmir on August 16th, 2008 at 3:14 pm

    thanks.

  261. 264. craig on August 16th, 2008 at 7:16 pm

    The menu works fine, but the links don’t work!! Everytime I manage to get the links to work by updating the code, then the moving background disappears!

    What am I doing wrong? And what to I need to do to make the links work but keep the moving background?

    Thanks!!

  262. 265. kpss on August 17th, 2008 at 9:21 am

    Thank you so much.

  263. 266. kpss cd on August 17th, 2008 at 9:22 am

    Thanks, nice.

  264. 267. film indir on August 18th, 2008 at 8:12 pm

    Thank you

  265. 268. memur on August 19th, 2008 at 10:47 pm

    what to I need to do to make the links work but keep the moving background?

    Thanks!!

  266. 269. Popcorn 245 on August 20th, 2008 at 5:12 am

    @craig – Well if you don’t wanna have to deal with another code that is like this one (http://nixboxdesigns.com/lavalamp.php) then I found a very simple alternative to that. Simply add a javascript function to redirect the users where is says add in:

    This will redirect the user and if the user right clicks to open the link in a new tab it will work as it should. There were a few other ways ppl found to do it just look up at the posts.

  267. 270. Popcorn 245 on August 20th, 2008 at 5:39 am

    lol sry didnt realize it worked with html like that lol
    edit this
    a href=”#”
    add in javascript to make it look like this
    a href=”yourpage.php” onclick=”document.location.href=’youpage.php’”

    Good Luck ^_^

  268. 271. atama on August 20th, 2008 at 8:11 am

    Hi Tam, not sure what trouble you are having exactly, can you explain in more detail? is it not working at all? or you can not change the selected class?

  269. [...] LavaLamp for jQuery lovers! [...]

  270. 273. Tim on August 23rd, 2008 at 3:02 pm

    I am using LavaLamp with AjaxContent Plug-In http://www.andreacfm.com/index.cfm/jquery-plug-ins/ajax-content; is it the combination of the 2 why the menu doesn’t stay on the current click link with the menu when using an Ajax method? It keeps reverting back to the previous link which is the default.

    Anyone else using the 2 in combination with a work around?

  271. [...] ein sehr hübsches Script im Web 2.0 Stil ist das LavaLamp Script. Hier wird der User nicht durch eine Bewegung im Menü geführt, sondern dadurch dass die [...]

  272. 275. Tim on August 24th, 2008 at 1:18 pm

    I have tried this menu with several methods of jQuery ajax calls to load content into a element; not one works where the link clicked remains in current state, always resets to last clicked or default current state.

    As anyone have a solution to use this menu while loading content into an element via ajax?

    If I block out move(curr), it works, except the hover state doesn’t work. Is there away to do a callback to set the current state?

    $(this).hover(noop, function() {
    //move(curr);
    });

  273. [...] [...]

  274. 277. Nigel on September 1st, 2008 at 3:03 pm

    I think this is a fantastic menu. One of the best I’ve ever found. However I need to use it on a site that is using jquery-1.2.3 which is required for a side menu.

    I’ve been trying to get this to work with it with no success. Does anyone know a way to do it or have an updated version that will work with jquery-1.2.3 or 6.

  275. 278. 51+ JQuery Tutorials and Examples at expertzweb on September 1st, 2008 at 6:20 pm

    [...] LavaLamp for jQuery lovers!- A step by step tutorial to create a LavaLamp menu packaged as a plugin for the amazing jQuery javascript library. [...]

  276. 279. Jesse on September 1st, 2008 at 7:18 pm

    Hello. I have set up the lavalamp menu at the top of my page. It will be present on every page. How do i make the clicked menu item stay highlighted on the next page. EG on the home page, the lava defaults to sit under the home link which is the first link. If i click on the contacts link, the 5th link say, how do i make it so that the lava then naturally sits under the contacts link on that page? Currently it just defaults to sit uner the home link. Thanks.

    J

  277. 280. Jesse on September 2nd, 2008 at 4:45 am

    Ahh found the answer in post 244. Thanks Mark.

  278. 281. webtechnepal on September 2nd, 2008 at 6:28 am

    thanks for the menu.

  279. 282. Awesome CSS/Javascript Menus | Gabfire web design on September 3rd, 2008 at 10:28 am

    [...] LavaLamp jQuery Sliding Menu I – Demo and Tutorial [...]

  280. 283. toner on September 3rd, 2008 at 10:37 pm

    thank you veryg good article and idea

  281. 284. charisma on September 4th, 2008 at 5:03 pm

    imagine if that’s water baloon..wow good..thanks

  282. 285. 3pepe3 on September 5th, 2008 at 7:36 am

    Hello,

    Great menu; i was thinking to create (from scratch) a similar menu on flash and javascript. But this is great, it saved me a lot of time and now i will be more open in the use of javascript and all his potential.
    Thanks
    P.S. is there any recommended book?

    Pepe

  283. 286. Youcef on September 6th, 2008 at 4:59 pm

    @fantoi- You’re right! it’s useless…I read and tried all the comments but still cannot get the links to function! some suggestions in the comments worked in making the links work but they disabled the sliding-hover effect!
    BTW: in my case it’s the menu #3….Anyone got this menu actually working?

  284. 287. netocrat on September 6th, 2008 at 8:24 pm

    Hello, help me please, how to use this plugin in joomla?

  285. 288. coderbari on September 7th, 2008 at 9:12 am

    Great thing Ganesh.Thanks for sharing this excellent lava lamp.

  286. 289. ekid on September 10th, 2008 at 2:17 am

    it can’t click in ie7

  287. 290. Safitech.com 2.0 on September 10th, 2008 at 4:21 am

    [...] lavalamp menu, and various jQuery [...]

  288. 291. film izle, fragman izle on September 10th, 2008 at 9:40 am

    so good?I like it??

  289. 292. tibet tour on September 11th, 2008 at 7:09 am

    The Potala, Jorkhang Temple,Sera Monastery…are all the wonders ,not only of Lhasa, but the whole Tibet!Tibetan tour guides take you These trekking, bicycling and moto tours will for sure make it unforgettable in your whole life!

  290. 293. oyunlar on September 11th, 2008 at 8:32 pm

    very good. thanks

  291. 294. Jonny on September 15th, 2008 at 10:44 pm

    Can this blog comments get any longer.

  292. 295. Vasile on September 16th, 2008 at 11:38 pm

    Cool! I like jquery, and I like this menu…

  293. 296. jean on September 17th, 2008 at 1:58 pm

    Link doesn’t work. How to make so that it work? Sorry for my bad english

  294. 297. Sheru on September 19th, 2008 at 7:50 am

    Just now I noticed in Javascript that I mention above

    $(function() {
    $(”#1, #2, #3?).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return true; // changed to true
    }
    });
    });

    It’s working wonderfully but if needed help, I will come in touch.
    Once again thank you for your work.
    Sheru

  295. 298. chinese tea on September 20th, 2008 at 12:06 pm

    thx,i like it

  296. 299. sbs on September 20th, 2008 at 2:33 pm

    Ok. Thanks Mark.

  297. 300. Recent Faves Tagged With "jquery" : MyNetFaves on September 20th, 2008 at 7:35 pm

    [...] public links >> jquery Ganesh » Blog Archive » LavaLamp for jQuery lovers! First saved by montemps | 2 days ago novell-bugzilla.user.js updates First saved by oscar509 | [...]

  298. 301. denizli web tasar?m on September 20th, 2008 at 11:37 pm

    oh thank you mark.

  299. 302. iphone games on September 21st, 2008 at 10:07 pm

    Very nice, thank you Mark. ;)

  300. 303. Rachel on September 22nd, 2008 at 6:55 am

    Hey Guys

    I was wondering if someone can supply me with a link to a working version with submenus?

    Cheers Rachel

  301. 304. 200+ jQuery?? | ???? on September 23rd, 2008 at 3:15 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  302. 305. wG on September 23rd, 2008 at 6:56 am

    Hello people,

    earlier the click was not working,so i used the code given above by Nandha(Nandha on October 24th, 2007 at 9:17 am )
    $(function() {
    $(”#1, #2, #3?).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return false;
    }

    but now that hover effect is not working,

    can anybody tell where am i wrong

  303. 306. wG on September 23rd, 2008 at 6:57 am

    Hello people,

    earlier the click was not working,so i used the code given above by Nandha(Nandha on October 24th, 2007 at 9:17 am )
    $(function() {
    $(”#1, #2, #3?).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return false;
    }

    but now that hover effect is not working,

    can anybody tell where am i wrong

  304. 307. Ryan on September 24th, 2008 at 3:56 am

    Has anyone ever tried to incorporate this into a 2 tier menu?
    I will be trying to mash this, and jquery suckerfish (first 2 tiers horizontal, third vertical.

    really keen to see if it can be done without too much css….

  305. 308. eb on September 28th, 2008 at 8:19 am

    This lavalamp needs an update!! NOT compatible with the latest jquery! :-(

  306. 309. ??jquery???????? - ????|????? on September 29th, 2008 at 6:30 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  307. 310. noam on September 29th, 2008 at 10:39 pm

    I have a question, I’m very new to this jquery.
    I’m using this lavalamp menu system, but when i click on a menu item, I need it to obviously go to another page. On that new page, I need that lavalamp also visible but with the 2nd menu item highlighted with the lavalamp.

    Makes sense? How do I make this happen?

    Thank you

  308. 311. Ganeshji Marwaha on September 30th, 2008 at 6:24 am

    @noam: Assign a URL to the menu-item anchors to get the links working.

    If you are using the code in demo download, then remove the click event associated with the initialization of LavaLamp. This click event is there in the first place to prevent the links from taking the user to a different page, just for demo purposes.

    Finally, to have the clicked menu-item to be selected as part of the next page, supply a class called “current” to the <li> that represents the current page. This should be taken care by your server side logic. If you don’t supply a class to any <li>, then the first <li> will be considered by default.

  309. 312. Rohin Sharma on October 4th, 2008 at 4:19 pm

    Ganesh Ji , great code man , I’m loving it. Just one thing , How can I make the current page my readers are looking at be the current I searched the entire posts and did not find an answer. Is there a php code I could use?

  310. 313. Fantastic javascript (AJAX) CSS menu | Goodies Depot on October 6th, 2008 at 3:45 am

    [...] LavaLamp jQuery Sliding Menu It is a jQuery sliding effect menu with light weight code and extra two more interface styles. This effect was originally written by Guillermo Rauch using mootools javascript library. [...]

  311. 314. chiao on October 6th, 2008 at 3:47 am

    Great work!Awesome!!!
    regards from China.

  312. 315. Luis on October 6th, 2008 at 8:37 pm

    ok I hope you can help me figure this one out. I am trying to get my links to work and they dont, I used and then replaced the below:

    Home
    Plant a tree
    Travel
    Ride an elephant

    I typed in and put it my links and replaced the “#” i.e :

    Home
    Plant a tree
    Travel
    Ride an elephant

    but when I cliked on the buttons they dont go anywhere. Could you please tell me what am I doing wrong ? I will really appreciate it, txs.

  313. 316. imagic’s blog » Blog Archive » JQUERY???? on October 7th, 2008 at 4:03 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  314. 317. imagic’s blog » Blog Archive » JQUERY???? on October 7th, 2008 at 4:03 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  315. 318. ??diary-cute???????? | page's blog on October 11th, 2008 at 10:03 pm

    [...] ?????????diary-cute??theme?lightbox-2??????????????diary-cute???lavalamp???????slideshow???????jQuery??lightbox-2?????Prototype???????$()???????????? [...]

  316. 319. jQuery Eklentileri | Bir Ö?renci Klasi?i on October 12th, 2008 at 9:19 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  317. 320. ??…..?????? -_-|| » 240??jQuery?? on October 14th, 2008 at 9:10 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  318. 321. Antonio Wells on October 14th, 2008 at 11:36 am

    This plugin is very impressive! I dont have to use Flash to get the same simple effect! Thanks!

  319. 322. srui’s blog » 240??jQuery?? on October 15th, 2008 at 6:33 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  320. [...] the JQuery port of the fancy menu effect read this post or this post at meta20.net (aka Smooth Menu for [...]

  321. 324. cyberman on October 17th, 2008 at 1:38 am

    “I am using LavaLamp with AjaxContent Plug-In http://www.andreacfm.com/index.cfm/jquery-plug-ins/ajax-content; is it the combination of the 2 why the menu doesn’t stay on the current click link with the menu when using an Ajax method? It keeps reverting back to the previous link which is the default.”

    Look for the line: var $li = $(‘li’, this);
    Changed it to: var $li = $(‘li a’, this);

    It works for me.

  322. 325. Ashley on October 18th, 2008 at 5:32 pm

    I am having trouble setting the current state in .net (C#). I am using this menu as a control within my master page. The links can either be normal anchor tags or asp hyperlinks. Anyone know how I can get this to work?

  323. [...] & Demo: LavaLamp. Description: As User Interface developers, we know that one of the first widgets our visitors use [...]

  324. [...] & Demo: LavaLamp. Description: As User Interface developers, we know that one of the first widgets our visitors use [...]

  325. 328. North Cyprus Holiday on October 20th, 2008 at 2:05 pm

    I read your article.The things you have written sound very sincere and nice topics i am looking forward to its continuation.

  326. 329. Flash Drive on October 21st, 2008 at 6:39 am

    This plugin is very impressive! I dont have to use Flash to get the same simple effect! Thanks!
    http://www.intronhk.com/memory.html

  327. 330. Ajaxian » Great JavaScript and CSS Menu Libraries on October 21st, 2008 at 10:59 am

    [...] LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface styles. [...]

  328. 331. Lexx on October 21st, 2008 at 12:21 pm

    Does anybody have a blinking of cursor in IE6 ? How can I fix it?

  329. [...] LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface styles. [...]

  330. [...] LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface styles. [...]

  331. 334. JavaScript and CSS Menu Libraries catalog on October 22nd, 2008 at 10:23 am

    [...] LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface styles. [...]

  332. 335. karan on October 23rd, 2008 at 3:22 am

    Ganesh
    Nice work.

    I am trying to use you lava lamp menu.
    I wanted to ask you once I click one particular menu item and it navigates to another page how is it possible to highlight the menu item that was clicked. Now what it does it whenever i click any menu item and it navigates to another page the highlight moves to the leftmost menu item.
    Any suggestions

  333. 336. Michael Traylor on October 24th, 2008 at 8:42 pm

    I figured out how to make css submenus for this plugin. Change .hover to .mouse over in the $li.not(“.back”) block of code.
    before: $li.not(“.back”).hover(function() {
    move(this);
    }, noop);

    after: $li.not(“.back”).mouseover(function() {
    move(this);
    }, noop);

    The .hover only works for its specific tag, .mouseover also includes the child elements.

  334. 337. ?????240??jQuery?? | ???? on October 29th, 2008 at 8:22 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  335. 338. Alan Bristow on October 29th, 2008 at 5:18 pm

    Wow!

    I love that this has real-world physics in the movement. Thanks a great loads to all involved, I am sure I will use this jQ add-on.

  336. 339. 110+ javascript / Ajax bookmarks for web developers on October 29th, 2008 at 7:40 pm

    [...] Fastfind Menu Apple Dock Image Menu amongst others – as seen on Microsoft Tree menu Context Menu LavaLamp for jQuery Slashdot menu Mootools Menu copy Css Dock Menu Nice Horizontal menu Accessible Expanding Menu [...]

  337. 340. 110+ javascript / Ajax bookmarks for web developers on October 29th, 2008 at 7:40 pm

    [...] Fastfind Menu Apple Dock Image Menu amongst others – as seen on Microsoft Tree menu Context Menu LavaLamp for jQuery Slashdot menu Mootools Menu copy Css Dock Menu Nice Horizontal menu Accessible Expanding Menu [...]

  338. 341. Mario on October 29th, 2008 at 10:40 pm

    SOLUTION for the “non working links”:
    Comment or removed from on jquery.lavalamp.js:

    $li.click(function(e) {
    setCurr(this);
    return o.click.apply(this, [e, this]);
    });

  339. 342. 200+ jQuery?? | ???? on October 31st, 2008 at 5:41 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. demo:LavaLamp 1.3 jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS [...]

  340. 343. 240 ???????????? ???????? ??? jQuery | Parinoff Life on October 31st, 2008 at 1:43 pm

    [...] Lava Lamp jQuery Menu [...]

  341. 344. Sam on November 1st, 2008 at 4:57 am

    Anyone figure out how to get rid of the blinking cursor in IE6? Only seems to be a problem when using lavaLampWithImage. Thanks!

  342. 345. Emrah on November 2nd, 2008 at 10:40 am

    Hello there… can anyone help me with editing this menu… i couldnt figure out how to edit the first link on left side. When i change the home with something else… the flowing onhover image is getting out of the orange backround line… so my link too… how can i edit the positions of the links “home” “plant a tree” etc. how can i take them to the middle? or a side right

  343. 346. chris on November 2nd, 2008 at 11:46 am

    very nice script! love it! one question. I`m using the first example with images. But instead of a background image I only use the sliding lava image. the background is white and the lava image dark grey. the links are in a dark grey too. the current menu item is white so You can read it on the dark grey background. how can I change the script that the active item turns into grey again, when hovering another menu item, cause it`s invisible on the white background when the lava images slides to the hovered item?

    regards chris

  344. 347. Christian Seeber on November 4th, 2008 at 3:21 am

    is there a way to get this to stay highlighted on the last item you rolled over? In other words, the background doesn’t slide back to the class=”current” item?

    - C

  345. 348. fusify on November 4th, 2008 at 9:16 pm

    Here is the solution to get it to work with jquery-1.2.6.min.js

    open this file jquery.lavalamp.min.js

    find the following line
    {$back.each(function(){$.dequeue(this,”fx”)}).animate
    changed to this:
    {$back.stop().animate

  346. [...] one uses Lavalamp a jquery menu plug in with smooth [...]

  347. 350. Roshan on November 5th, 2008 at 5:47 am

    Hi, Just letting you know that i made a free css template with te with lavalamp menu. the template is inspired by itunes and i think lavalamp looks perfect in it. thank you so much for making this. You can download it from my website.

  348. 351. swfMonkey on November 5th, 2008 at 11:18 pm

    I understand the method of declaring an to show the currently selected menu link. Is there a method to do this dynamically though? Can you declare the currently selected menu item via a javascript function on each page? Any help is appreciated! Thanks!

  349. 352. will on November 7th, 2008 at 9:43 pm

    i can’t get the highlight to “stick” after a link is selected. it keeps wanted to slide back to the extreme left. any solutions??

  350. 353. dottore on November 10th, 2008 at 2:46 pm

    I included this cool lavaLamp menu as horizontal navigation on a website. But now all the other unsorted lists () have an empty list point () at the end. I thinks this is from from the back ().
    Does anyone know how can I avoid this from the others menus to be shown?

  351. 354. Jasper on November 14th, 2008 at 1:28 pm

    Anyone know how to make it highlight the page you’re on instead of jumping back every time? Thanks in advance!

  352. 355. TECHONE BLOG-???????? » Blog Archive » ?????240??jQuery?? on November 16th, 2008 at 2:40 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  353. 356. Jquery?N??? | php????|???|54chen.com on November 16th, 2008 at 10:21 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  354. 357. Timbo on November 17th, 2008 at 12:40 am

    I have included this in my osDate site I am working on. The only problem is that it just blanks the whole page… no code, nothing. This is in ie and Firefox! Demo page works fine on its own.

    The weird thing is I’ve got it down to one line of code…

    $(function() { $(“.lavaLamp”).lavaLamp({ fx: “backout”, speed: 700 })});

    If I comment out this line of code, it STILL won’t work. I have to either delete the line completely, or remove all code in the comment up to fx:

    Can anyone please explain what on earth is going on?

  355. 358. Timbo on November 18th, 2008 at 11:14 am

    Hi guys,
    I found out what was going on… It was a path issue to the javascript easily solved! The path was relative to the top level of the site and not where the page template was stored. I also had to substitute the curly brackets in the javascript with versions defined in the PHP as {ldelim} and {rdelim}. That did the trick!

  356. 359. Fred on November 21st, 2008 at 12:15 pm

    Dan Wrote

    I don’t know if people have already figured a way to do this, but i have this beautiful script working with submenus. These submenu’s dont have their own lavalamp though.
    Just one small code change is required in the lavalamp.js file.

    When the script initialises the lavalamp-ness, it collects all li’s. All you need to do is declare that you want direct li descendants of the ul (instead of all li’s). Do this simply with ‘$(”> li”, this)’ in the lavalamp.js file

    So it should now read:
    $li = $(”> li”, this), curr = $(”li.current”, this)[0] || $($li[0]).addClass(”current”)[0];

    I did what he wrote and it works with one small glitch. As long as you move your mouse onto a submenu item before the animation finishes it’s fine. If you leave your mouse on the top-level menu item until the animation is done (actually just until the bottom item moves all the way in) and then go to the sub menu the sub menu closes and the first item gets selected.

    Here’s a link: http://www.fware.net/lavalamp/final_drop_withlavalamp.html

    Any ideas/suggestions would be greatly appreciated!

  357. 360. 240??jQuery?? | Offar’s Blog on November 22nd, 2008 at 2:44 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  358. 361. Andrea on November 22nd, 2008 at 4:19 pm

    Hi man! Great menu! how can i put it in vertical??

  359. 362. 240??jQuery???? - memory ’s blog on November 23rd, 2008 at 8:07 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  360. 363. 13verx on November 26th, 2008 at 1:56 am

    Hi great Menu, one problem though,my links don’t work when I’m using it,which is obviously an issue,if it’s a menu. I know a solution for this was posted earlier, but I’m not sure what they meant. I could use some clarification or any alternative answers, if your up for helping.Keep up the good work.

  361. 364. jQuery ?????? - Lavalamp on November 26th, 2008 at 9:42 pm

    [...] ???????????????????????????????????????????????? jQuery ??????????? 700 ?????????????? Blog ?????? Tag(s): jQuery, UE, Wordpress Shawn Published@5:42 / 2008-11-27 / Trackback / Skip No Comment ’til now Leave Comments Here… [...]

  362. 365. Horizontal Hover Scrolling - DesignersTalk on November 29th, 2008 at 5:52 am

    [...] do it in jQuery; just have a look at something like the SerialSlide posted about and something like Ganesh ? Blog Archive ? LavaLamp for jQuery lovers! on how to capture the mouse position to trigger movement and well, dig [...]

  363. 366. Lazystudio Blog » Blog Archive » ?:240??jQuery?? on December 2nd, 2008 at 2:18 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  364. 367. I’m Chain » jquery » JQuery Plugin 2008 on December 2nd, 2008 at 3:13 am

    [...] Lava Lamp jQuery Menu. [...]

  365. 368. I’m Chain » jquery » JQuery Plugin 2008 on December 2nd, 2008 at 3:13 am

    [...] Lava Lamp jQuery Menu. [...]

  366. 369. ian on December 2nd, 2008 at 8:29 am

    Thanks for this jquery plugin.

    @fusify: thanks to you, now it works with jquery 1.2.6

  367. 370. alicia on December 4th, 2008 at 7:19 pm

    hi,

    thanks for this lovely plugin, its very very nice.

    I have a question, when I click a menu item, back div/image goes there, but I dont wanna to stay there when I clicked. How can I cancel this?

    thanks again

  368. 371. PHP - PeruCODE » 240 plugins para Jquery on December 7th, 2008 at 1:29 am

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  369. [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  370. 373. notvena on December 8th, 2008 at 2:34 pm

    As for compatibility with easing 1.2. I managed to get the menu working with easing.1.2 while using compatibility js offered on esing plugin website http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.compatibility.js

  371. 374. Brad on December 12th, 2008 at 7:22 pm

    I am trying to implement this piece of code and am running into an issue with the sliding image lining up with the left had side of the browser. This only occurs in IE. An example is located at the following:

    http://www.primestudiosllc.com/index.html

  372. 375. Dawm on December 17th, 2008 at 11:04 am

    Jquery 1.2.6 normal ain’t working, and 1.3.1 Min is working whats wrong?

  373. 376. Gary on December 17th, 2008 at 10:25 pm

    Firstly thank you very much. I am using the noimage version and my links are not clickable the link is there but can only be opened by right clicking and opening in a new tab.
    What do you suppose is wrong ?

  374. 377. Gary on December 17th, 2008 at 10:29 pm

    Sorry … I have resolved the issue by changing the value in the html to true like this
    ……………………………………
    click: function(event, menuItem) {
    return true;
    thanks again

  375. 378. scorpinou on December 17th, 2008 at 11:32 pm

    Can you tell me if there is any issue using your LavaLamp plugin with your jCarouselLite, please?
    I try to do it, almost everything works fine…
    My only problem is that the cursor doesn’t stay on the current element in my LavaLamp menu (always going back to my first element).
    Thx for your work and in advance for your help.

    P.S: u can find here an example of what I said

  376. 379. scorpinou on December 17th, 2008 at 11:34 pm

    Can you tell me if there is any issue using your LavaLamp plugin with your jCarouselLite, please?
    I try to do it, almost everything works fine…
    My only problem is that the cursor doesn’t stay on the current element in my LavaLamp menu (always going back to my first element).
    Thx for your work and in advance for your help.

    P.S: u can find here an example of what I said http://scorpinou.free.fr/maquette/

  377. 380. Joe Barton on December 18th, 2008 at 10:06 am

    Hi, thanks for this awsome JQuery addon. Im having a problem with it on a test site im using it on though. For some reason on my test site the links dont seem to be clickable. Any ideas? Have I missed something or done some thing wrong?

    http://bliss.softwaresystemseurope.com/

  378. 381. Joe Barton on December 18th, 2008 at 10:15 am

    Ah its ok, ive read above someone with the same problem and applied the fix.

    Thanks again for this great addon.

  379. 382. scorpinou on December 18th, 2008 at 11:45 am
  380. 383. Jauhari on December 22nd, 2008 at 7:37 am

    Absouletelly Nice Script.
    Some Question what for the jquery.easing.min.js for?

  381. 384. Alan on December 22nd, 2008 at 1:45 pm

    Hello!

    Inspired by this example i am trying to achieve something similar while learning to use jquery and javascript in general.

    I cant somehow put the movable li under other li’s. Like you did, i assigned higher z-index to li’s that are the menu itself and lower z-index to the moving li. For some reason the li is always above other elements though and other scripts that depend on that will not work…

    Thanks.

  382. 385. gaurav on December 23rd, 2008 at 6:17 am

    incredible easing.js Nice

    Ganesh in disney Style Hmm ?? :)

  383. 386. Ferrizzi on December 24th, 2008 at 3:22 am

    @Steven

    I had the same problem that Steven had. I needed to control the menu via javascript, specifically to select one item using some function.

    Here is how I solved that:

    function move_to_menu_item(id){
    fireEvent(id, ‘mouseover’);
    fireEvent(id, ‘click’)
    }

    function fireEvent(elementId, event){
    element = document.getElementById(elementId);
    if (document.createEventObject){
    // dispatch for IE
    var evt = document.createEventObject();
    return element.fireEvent(‘on’+event,evt)
    }
    else{
    // dispatch for firefox + others
    var evt = document.createEvent(“HTMLEvents”);
    evt.initEvent(event, true, true ); // event type,bubbling,cancelable
    return !element.dispatchEvent(evt);
    }
    }

    The credits for the fireEvent function goes to http://jehiah.cz/archive/firing-javascript-events-properly

    Hope it helps!

    Best regards,
    André Ferrizzi

  384. 387. senthilkumar on December 24th, 2008 at 10:30 am

    in the above example i want to place the cursor in travel onload not home. how do i achieve this. Please reply

  385. 388. SAys on December 26th, 2008 at 8:55 am

    Thank you for all that you have done for this excellent application.

  386. 389. North Cyprus Holiday on December 26th, 2008 at 3:17 pm

    I like very much the writings and pictures and explanations in your adress so I look forward to see your next writings. I congratulate you.

  387. 390. hal? y?kama on December 27th, 2008 at 9:49 am

    THANKS, VERY GOOGD…

  388. 391. hal? y?kama on December 27th, 2008 at 9:52 am

    THANKS, VERY GOOGD…

  389. 392. temizlik ?irketi on December 28th, 2008 at 6:22 pm

    Thanks Gmarwaha! Super menu, very good.

  390. [...] 1. LavaLapm meny för jQuery [...]

  391. 394. 13 Awesome Javascript CSS Menus | SoftSeek! on January 4th, 2009 at 1:27 pm

    [...] demo was suggested by one of our commentators Daniel Niquet: Another Context Menu 8 ) LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface styles. [...]

  392. 395. Didrik Nordström on January 5th, 2009 at 2:34 am

    Hi, I discovered a SEVERE BUG in Firefox 3, and it surprises me that no one has encountered it yet. However, IF you have trouble with FF3, read this:

    Distinctions: The lavalamp background (the “lava” itself) is broken upon page load. However, if you move the mouse over a list item, it slides back to normal.

    Tech stuff: The bug causes the div.back to display very strangly. For me, that div was 1207px wide upon the page was fully loaded. The reason is that in Firefox 3, they have changed the way javascript event DOMContentLoaded is interpretered, which differs from FF2. This means that it will no longer wait for external stylesheets that are imported AFTER the script that calls DOMContentLoaded (like jQuery does). I think this causes the lavalamp function to measure the length of the list items wrong because there is no stylesheet at that time.

    Solution: In your main HTML-file – import your stylesheets before you run/import your scripts. It should fix the problem. Example:

    [...]

    $(document).ready(function(){
    // stuff
    });

    [...]

    Hope it helps!

  393. 396. Didrik Nordström on January 5th, 2009 at 2:42 am

    Woops. The example didn’t work out quite well, cause the comment parser did not convert my tags properly. Here is it again, but you must replace [ and ] with diamond brackets.
    [...]
    [link rel="stylesheet" href="style.css" /]
    [script type="text/javascript" src="jquery.js"][/script]
    [script type="text/javascript"]
    $(document).ready(function(){
    // stuff
    });
    [/script]
    [...]

  394. [...] LavaLamp-Plugin Tutorial zur Erstellung des Lavalamp-Plugins [...]

  395. [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  396. 399. Cerebral on January 12th, 2009 at 1:38 am

    Hey guys I’m a little new to this whole thing i got the links working by removing the return false in the function that lies on the webpage but now i have noticed that when you proceed to a page, say from you index page to your blog, and then press the back button (so your back at your index page) the menu item or orange boxy thing stays on whatever link you have used to proceed to the next page (the blog). Any help with this would be greatly appreciated and a little clearer description if needed.

    Best Regards Cerebral

  397. 400. Bookmark: 50+ stunning jQuery applications on January 15th, 2009 at 7:28 pm

    [...] LavaLamp for jQuery lovers! – gmarwaha.com [...]

  398. 401. Ed on January 16th, 2009 at 12:26 am

    hi
    don’t know if u noticed a little bug on internet explorer 6, the margin between the li elements are doubled, on the css it says 10px but on ie6 it shows like 20px i think… so it causes the menu to stretch and it doesnt fit…
    nice plugin ;)

  399. 402. chris on January 16th, 2009 at 3:04 pm

    Hi there.

    Why do the links not work on the menu when you integrate.

    What am i missing?

  400. 403. Travis Barney on January 16th, 2009 at 8:48 pm

    Pretty Awesome. Although it took me to figure out that your example CSS in this blog post uses “.back” and “.left” where I guess the version of lavaLamp that I got needs those to be “.backLava” and “.leftLava” … hope this helps others :}

  401. 404. Probl?me a:hover avec IE | hilpers on January 18th, 2009 at 12:07 pm

    [...] je n’y suis pas arriv? avec uniquement des CSS mais par contre avec Jquery j’ai trouv? mon bonheur http://gmarwaha.com/blog/?p=7 (rubrique Bonus) "Pascal" <pmailnospam> a ?crit dans le message de news: [...]

  402. 405. Luke on January 21st, 2009 at 4:04 pm

    Had trouble with using Lightbox due to the different libraries. Solved by using a jQuery lightbox clone: http://www.no-margin-for-errors.com/projects/prettyPhoto/ This is a great effect, thank you!

  403. 406. Slackerology - Blog and Web se rediseña on January 22nd, 2009 at 8:06 am

    [...] Lava Lamp Menú. Plugin jquery para el menú. [...]

  404. 407. 212 on January 24th, 2009 at 4:33 pm

    hello when i use lavalamp with an other jquery plugin i have a problem. the menu doesn’t work and the orther plugin doesn’t work.
    for exemple i use lavalamp and slideshows (http://www.frontpageslideshow.net/demos/wordpress/)
    i have javascript error
    $(“#3″).lavaLamp({
    is not a function.

    please what i have to do resolve this probleme.
    help me.
    sorry i don’t speak english well.

  405. 408. LavaLamp??? | ??Web??????????? on January 25th, 2009 at 10:32 am

    [...] LavaLamp?jQuery(Javascript)??????????????????????????????????????????? ??????????(??)????????? [...]

  406. 409. 212 on January 25th, 2009 at 1:45 pm

    hello,
    change :click: function(event, menuItem) {
    return false;

    by
    click: function(event, menuItem) {
    return true;
    it will work :-)

  407. 410. Robesz on January 27th, 2009 at 3:04 pm

    hello,
    it’s a great plugin. Thank you.
    I’m using the no-image version and my problem is the marker goes back every time to the “current” page, and I want it to stay in the clicked link.
    I removed the id=”current” from my page, but it doesn’t work it’s still goes back to the first menu.
    Can you please tell me how to do it?
    Sorry if someone solved it before but there is too much to read.
    Thanks in advance!

  408. 411. Free Ajax/Javascript Navigation Solutions | CSS Resources on January 28th, 2009 at 9:31 pm

    [...] & Demo: LavaLamp. Description: As User Interface developers, we know that one of the first widgets our visitors use [...]

  409. 412. LavaLamp for jQuery lovers! on January 30th, 2009 at 11:01 pm

    [...] Ganesh » Blog Archive » LavaLamp for jQuery lovers!. [...]

  410. 413. askpan on January 31st, 2009 at 5:07 pm

    Hi I was trying to use the Lava menu for my blogger website. Do you think it is not compatible with the website working on BLOGGER platform? And do I need to upload the js somewhere online to be used or they are already uploaded somewhere?

  411. 414. Wex on January 31st, 2009 at 11:08 pm

    Great code, works wonderfully. For those of you that want to set an initial condition for the lavalamp based on the hash of the page, try this (This will only work if each [li] has its own ID, which corresponds with the hash code, ie: [li id="blog"] would correspond with index.html#blog):

    $(document).ready(function(){
    var page = location.hash;
    $(page).addClass(“current”);
    )};

    Make sure you put this ABOVE the lavalamp.js script. Thanks for a wonderful script.

    @askpan – you should be able to use this script for pretty much anything you want. For the scripts, you should probably upload them to your own server. You can find them here:
    You can download jQuery: http://code.jquery.com/jquery-latest.pack.js
    Easing plugin: http://gsgd.co.uk/js/jquery.easing.1.1.js
    and the LavaLamp plugin: http://www.gmarwaha.com/jquery/lavalamp/js/jquery.lavalamp.js

  412. 415. Patrik on February 1st, 2009 at 1:18 am

    Great plugin. How could you make it work with wordpress current_page_item and current_page_ancestor.
    If i change this
    $li = $(“> li”, this), curr = $(“li.current”, this)[0] || $($li[0]).addClass(“current”)[0];
    to
    $li = $(“> li”, this), curr = $(“li.current_page_item”, this)[0] || $($li[0]).addClass(“current”)[0];
    it works but how to get it to change to current_page_ancestor if you are on a subpage?

  413. 416. Wex on February 1st, 2009 at 7:08 am

    @Patrik

    Set up your [li] element so the class looks like: [li class="current page_item"] for current_page_item, and [li class="current page_ancestor"] for the current_page_ancestor. Keep the code how it is, and it should solve your problem.

  414. 417. Patrik on February 1st, 2009 at 10:25 am

    Thanks Wex
    I didn’t really understand exactly what you meant but this made it work
    $li = $(“>li”, this), curr = $(“>li.current_page_item”, this)[0] || $(“>li.current_page_ancestor”, this)[0] || $($li[0]).addClass(“current”)[0];

  415. 418. chris on February 2nd, 2009 at 4:17 pm

    Your example at the top f this page does not work at all in Safari/Mac.

    The stripped examples near the bottom work, not the top. Might want to correct that since it is the main example and featured at the top.

    cool stuff !

  416. 419. 100 jQuery Tutorials and Examples | CSS Experiments on February 2nd, 2009 at 6:48 pm

    [...] LavaLamp for jQuery lovers!- A step by step tutorial to create a LavaLamp menu packaged as a plugin for the amazing jQuery javascript library. [...]

  417. [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  418. 421. ???????? ?? » Blog Archive » 240??jQuery?? on February 4th, 2009 at 9:38 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  419. 422. ab on February 5th, 2009 at 5:40 am

    anyone know how i can extend the width of bg.gif?

  420. 423. Jamie Vollands on February 5th, 2009 at 10:35 pm

    Amazing menu and perfect use of ajax used in the right place. Has made a simple boring navigation entertaining.

    Nice Tutorial to follow. You’re a credit to the industry.

    Jamie

  421. 424. 240+ plugins para jQuery | Lo Pongo Acá on February 6th, 2009 at 6:09 am

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  422. 425. tom on February 6th, 2009 at 1:49 pm

    i integrated the menu in my joomla 1.5 template and the Lavalamp works fine & looks great, but the links of the navigation dont work.

    I hear about the problem with the conflicts of mootools and jQuery so i change $(function() in jQuery(function($).

    jQuery(function($) {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return false;
    }
    });
    });

    But it still dont work. Can anybody please help me?

  423. 426. Luckin on February 6th, 2009 at 8:49 pm

    Please I need help.My only problem is that the cursor doesn’t stay on the current item in my lavalamp menu and it always going back to my first element.
    thanks for help.

  424. 427. McBonio | Webmaster And SEO Blog on February 7th, 2009 at 8:51 am

    [...] LavaLamp for jQuery lovers! [...]

  425. 428. 240 plugins para JQuery | Marcelo Vega on February 7th, 2009 at 3:17 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  426. [...] LavaLamp for jQuery lovers! [...]

  427. 430. T on February 8th, 2009 at 4:46 pm

    Joomla generate the current menu as id=”current” not as class=”current”.

    Now is my problem that the menu allways jumps to the Home menu.
    Is there a solution for that problem for example that the “current” work with the class=”active”

  428. 431. Luckin on February 8th, 2009 at 7:15 pm

    “Please I need help.My only problem is that the cursor doesn’t stay on the current item in my lavalamp menu and it always going back to my first element.
    thanks for help.”

  429. 432. Premium Wordpress Themes on February 8th, 2009 at 8:37 pm

    Now that is an awesome effect – thankyou!

    Spotted this on Ramblingsoul’s css templates site.

    Whoopwhoop!

  430. 433. Rabimba on February 9th, 2009 at 5:41 am

    Perfect code.
    excellent basically.

    BUt the onlye problem i’m having is that after setting it up (its running perfectly fine) when i link up the link in the href section it isn’t working.
    Can anyone guide me here?

  431. 434. roy on February 11th, 2009 at 4:58 pm

    yes, I got the same problem, the links not working, can somebody help???????Thank you.

  432. 435. roy on February 11th, 2009 at 5:10 pm

    level 433, I had found out how to make it work
    change :click: function(event, menuItem) {
    return false;

    by
    click: function(event, menuItem) {
    return true;
    it will work

  433. [...] uses no special feature of Photoshop yet looks good. Also, I had long been waiting to add the Lavalamp sliding navigation that I picked up from here. I plan to use as much of the jQuery javascript [...]

  434. 437. dizi izle on February 13th, 2009 at 5:24 pm

    very nice Blog :)

  435. 438. luckin on February 14th, 2009 at 1:05 am

    Please I need help.My only problem is that the cursor doesn’t stay on the current item in my lavalamp menu and it always going back to my first element.
    thanks for help…

  436. 439. Daniel on February 16th, 2009 at 12:51 am

    Hello, I´m kinda noob in this, I´ve been trying to use this lavalamp menu with ajax, like this:

    Inicio

    …it doesn´t work until I remove the tag (and the menu doesn´t work without tag)…

    If someone would like help me…

    the ajax js code is:

    var loadedobjects=”"
    var rootdomain=”http://”+window.location.hostname

    function ajaxpage(url, containerid){
    var page_request = false
    if (window.XMLHttpRequest) // if Mozilla, Safari etc
    page_request = new XMLHttpRequest()
    else if (window.ActiveXObject){ // if IE
    try {
    page_request = new ActiveXObject(“Msxml2.XMLHTTP”)
    }
    catch (e){
    try{
    page_request = new ActiveXObject(“Microsoft.XMLHTTP”)
    }
    catch (e){}
    }
    }
    else
    return false
    page_request.onreadystatechange=function(){
    loadpage(page_request, containerid)
    }
    page_request.open(‘GET’, url, true)
    page_request.send(null)
    }

    function loadpage(page_request, containerid){
    if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf(“http”)==-1))
    document.getElementById(containerid).innerHTML=page_request.responseText
    }

    function loadobjs(){
    if (!document.getElementById)
    return
    for (i=0; i

    thanks

  437. 440. anil on February 16th, 2009 at 9:15 am

    Boss…i want to keep that 1st orange colour menu for my site after customizing…how to do it????

  438. 441. anil on February 16th, 2009 at 9:22 am

    hey…how to make it work when used in the site?

  439. 442. anil on February 16th, 2009 at 9:23 am

    how to add 4 more contents in the menu boss?

  440. 443. dekorasyon on February 16th, 2009 at 5:58 pm

    very thanks

  441. 444. carlo on February 16th, 2009 at 8:41 pm

    I came across a bug of sorts. If you use lavalamp and the prototype library on the same page, something causes the over state image to not show up. I’m using lavalamp 0.2.0 with jquery 1.2.3.

  442. 445. carlo on February 16th, 2009 at 8:44 pm

    prototype version 1.5.1.1

  443. 446. thgr on February 17th, 2009 at 2:46 pm

    thanks a lot!
    I developed a site using prototype/scriptaculous. Now I switched to jQuery but I still have the example prototype/scriptaculous lavalamp menu if anybody needs it …

  444. 447. carlo on February 17th, 2009 at 6:04 pm

    Thanks, thgr! Big help!

  445. 448. Jani on February 18th, 2009 at 10:31 am

    For all of you, who experience the blinking cursor on IE6, include this javascript somewhere on you site:
    var IE6 = (window.VBArray && document.implementation);
    if (IE6) try { document.execCommand(‘BackgroundImageCache’, false, true); } catch(e) {}
    Hope that helped :)

  446. 449. Matthias on February 18th, 2009 at 10:39 pm

    I don’t get it work with the IE 6 :-(
    My image which should be behind the navigation disappears in IE 6.

    And I can’t find the problem:-/

    Maybe you could take a short look? (it’s only a temporary testside, so don’t worry about the content;-) )…

    http://schwimmkurs-rummelsberg.de/gorgonsola/Projekte/Test/

  447. 450. Zeynel Eroglu on February 20th, 2009 at 12:58 pm

    Your example at the top f this page does not work at all in Safari/Mac.

    The stripped examples near the bottom work, not the top. Might want to correct that since it is the main example and featured at the top.

    cool stuff !

  448. 451. » 240 plugins JQuery Darío Ferrer on February 21st, 2009 at 2:41 am

    [...] Lava Lamp jQuery Menu [...]

  449. 452. » 240 plugins JQuery Darío Ferrer on February 21st, 2009 at 2:41 am

    [...] Lava Lamp jQuery Menu [...]

  450. 453. » 240 plugins JQuery Darío Ferrer on February 21st, 2009 at 2:41 am

    [...] Lava Lamp jQuery Menu [...]

  451. 454. Gavin on February 21st, 2009 at 2:59 am

    For some reason mine won’t link to other pages. Please take a look, the home in the navigation should link to google, but it doesn’t. http://www.gedesignz.com/test_sites/attitudes

  452. 455. fefe on February 21st, 2009 at 9:07 pm

    Hello!
    I read here that lot of people was trying to implement this cool jquery in there joomla pages. So I’m in the same situation I would like to get know about the way how should I do to work on my joomla page.

    thanks

  453. 456. Gavin on February 21st, 2009 at 9:30 pm

    In response to my post above, I figured it out. I began skimming the posts again and found one that I had overlooked stating about the “return false” got rid of that and it worked. great plugin :) I really like it, simple to use and style. well done

  454. 457. Ganeshji Marwaha on February 22nd, 2009 at 5:59 pm

    For those of you friends who are not able to keep the current state in the new page that you are downloading from the server…

    You just have to set the class for the “li” of the respective menu item to “current” in your server side code (eg: php, ruby, java etc). This way lavalamp will know which menu item to highlight on page load. If you don’t specify “class=current” for any of the “li”, then lavalamp will assume that the current page is the home page and will highlight the first menu item.

    Hope that helps.

  455. 458. Ganeshji Marwaha on February 22nd, 2009 at 6:03 pm

    For those of you friends who are not able to get the link assigned to the menu item to work…

    The example code binds a click event to the menu-item and returns false. This is done for demo purposes alone. You can either remove the click handler entirely, or you can return true to make your links work.

    // Wrong
    click: function(event, menuItem) {
    return false;
    }

    // Right
    click: function(event, menuItem) {
    return true;
    }

  456. 459. Dave on February 22nd, 2009 at 11:49 pm

    This is great! Thanks! And that Tyler person up there is clearly an idiot. ;)

  457. 460. Erik on February 24th, 2009 at 7:12 pm

    My lavalamp is working but the “current’ selection after loading will not appear selected. Once I hover over the links, then the lavalamp appears.

    Any ideas on how to correct?

  458. 461. Kshitij Parajuli on February 24th, 2009 at 10:04 pm

    I am having a problem in a site I am creating which is going to be for my school.

    http://jagaparajuli.com.np/Friday/

    The Slider is not showing up in the current place. Please Reply Soon!

  459. 462. zac on February 24th, 2009 at 11:50 pm

    Hi.. I am having a strange problem. I have this on two different sites, both built on Wordpress. One it works great.. the other it only works on the home page of the blog but none of the articles. For example the lava highlights blog and on the home index.php page I click on a read more link and the full article appears but the highlight on blog disappears. Anyone else encountered this? I searched through these comments and found something about conditional statements but I did not understand. I am using the current class on the blog link so that is not it. The header being generated for all the pages is the same and when inspecting the HTML the code being generated is identical for both pages. What could be causing this?

  460. [...] Lava Lamp jQuery Menu. [...]

  461. [...] Lava Lamp jQuery Menu. [...]

  462. 465. David on February 25th, 2009 at 1:36 pm

    Hi

    I was wondering woul dit be possible to display a horizontal, inline drop down set of links when you hover over each link?

    Thanks

  463. 466. Sergey on February 25th, 2009 at 5:13 pm

    ????????????? ?????????? ????. ?????, ?? ??????? ?? ??? ???????? ????????? ?? ???? – 7812????. ??????.

  464. 467. zac on February 26th, 2009 at 6:05 am

    OK I got it working by using this:

    $(“.lavaLamp”).lavaLamp({ linum: 2 });

  465. 468. Simon on February 26th, 2009 at 7:37 am

    The lavalamp “effect” always shows in front of the links preventing those to be clicked.
    i.e. the z-index of the tag is higher than the z-index of the image

    How can I fix this.

    And in IE the javascript effect starts ok but then it freezes.

  466. 469. Ganeshji Marwaha on February 26th, 2009 at 7:20 pm

    @David: Ofcourse it is possible, but there is no provision to do such thing within the plugin right now. But, it is pretty easy to attach a hover event to the li’s and display your submenus.

    @zac: Glad you got it working

    @Kshitij Parajuli: I don’t see lavalamp menu in the site you have given. Have you removed it for testing purposes or something of that sort.

    @Erik: I guess, you are facing this problem with Firefox 3.x. If yes, try initializing lavalamp using $(window).load() instead of $(document).ready() event.

  467. 470. Sean on March 1st, 2009 at 1:46 am

    It’s a shame this doesn’t work with 1.2.6 :( Looks beautiful though!

  468. 471. Eric on March 1st, 2009 at 6:53 am

    Is there a way to set it up so that the background is white, text is dark, and when the lavalamp bubble slides into the next mouseover item, the link text changes color *WITH* the movement of the lavalamp instead of *all at once* a la CSS a:hover?

    This would probably have to be implemented in the JS file right? I’d really appreciate your thoughts on this.

  469. 472. ??????????jquery?? | SunnyV on March 2nd, 2009 at 1:12 pm

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  470. 473. Hamming on March 2nd, 2009 at 4:23 pm

    Hi.
    I have two menus lavaLamp on the same page. Both are same configuration:

    $(‘#m1, #m2′).lavaLamp({
    fx: ‘easeOutExpo’,
    speed: 300,
    click: function() {return true;},
    setOnClick: true
    });

    Now I want to put different startItem to #m1 and #m2. How can I do this without repeating function?

    $(‘#m1′).lavaLamp({
    startItem:1,
    fx: ‘easeOutExpo’,
    speed: 300,
    click: function() {return true;},
    setOnClick: true
    });

    $(‘#m2′).lavaLamp({
    startItem:3,
    fx: ‘easeOutExpo’,
    speed: 300,
    click: function() {return true;},
    setOnClick: true
    });

    Thank you very much and sorry for my bad english language

  471. 474. Kshitij Parajuli on March 3rd, 2009 at 2:38 pm

    @Ganeshji Marwaha
    Its there, but its not working correctly. If you leave your mouse, you can see the blue underline near search bar. Move thru the navigation to view the blue underline moving. The underline is some distance to the RIGHT from the navigation at the top.
    Here is the link again. http://jagaparajuli.com.np/Friday/

  472. 475. Justin on March 3rd, 2009 at 9:42 pm

    I’m experiencing the same issue as Simon, where I can’t get the hyperlinks to actually navigate. The effect works great, and the status bar tells me where it WANTS to go. But upon clicking, I might as well have hit a javascript:void(0). I’ve messed extensively with the z-index in the css, to no avail. Any recommendations?

  473. 476. shankar dutt mishra on March 4th, 2009 at 1:54 pm

    When I am applying jCarouselLite to multiple div’s on the same page then clicking on the next button of one div showing the scroll on all the independent div’s. Can’t we have more than one jCarouselLite div’s on the same page

  474. 477. julien on March 4th, 2009 at 7:00 pm

    Hi,
    Just a word to thank you a lot for sharing your precious job. I’m a true “javascript dumb” but I used this menu on a project… And with a bit of work on the CSS file, I’m finally happy with the result (you can see it here http://www.sarlespanneauxsolaires.fr/).

    Big Thanks.

  475. 478. julien on March 4th, 2009 at 7:02 pm

    Hi,
    Just a word to thank you a lot for sharing your precious job. I’m a true “javascript dumb” but I used this menu on a project… And with a bit of work on the CSS file, I’m finally happy with the result (you can see it here http://www.sarllespanneauxsolaires.fr/).

    Big Thanks.

    (Sorry the URL was wrong)

  476. 479. Hosting on March 5th, 2009 at 11:28 am

    Looks beautiful though!!

  477. 480. oyun oyna on March 8th, 2009 at 9:38 pm

    thanks for the menu

  478. 481. Maxim on March 9th, 2009 at 3:23 pm

    Thanks a lot! Everything works fine!

  479. 482. Misxa on March 11th, 2009 at 12:07 am

    For all Joomla lovers, here’s a fix:

    Open jquery.lavalamp.js or jquery.lavalamp.min.js, depending on which one you’re using and perform the next search-replace:

    replace ‘current’ with ‘active’ and hit Ctrl+S (Save).

    That’s it.

    Explanation:

    Joomla adds ‘active’ class to the active menu item, opposite to ‘current’ class given by this lovely script.

    Cheers!!! :) ))

  480. 483. Ganeshji Marwaha on March 11th, 2009 at 6:08 pm

    @Hamming: You will have to initialize lavaLamp 2 times separately only as of now. If the plugin supported partial setup, you could have set lavalamp up with the common parameters and then initialized the 2 lavalamps separately, but unfortunately the script doesn’t support it now

    @justin and @Simon: Point me to a test page where I can see the issue in action. That might help me help u resolve the issue.

    @shankar dutt mishra: You can have multiple jCarouselLites in the same page. But I guess, you are using the same classes for the buttons and the images within the carousel etc and supplying the same classes to the script as parameter as well. This way, the script will be selecting all the matching elements and scroll it. If you want multiple carousels within the same page, use different classes for the carousel, images and the buttons. That should solve your problem

  481. 484. Ganeshji Marwaha on March 11th, 2009 at 6:16 pm

    @Kshitij Parajuli: The CSS specificity for your li.back is not enough. So the position: absolute is getting overridden to position:relative specified for the li.

    Try “#navigation” in front of “.lavaLampBottomStyle li.back” css selector. That should solve your problem

  482. 485. Ganeshji Marwaha on March 11th, 2009 at 6:21 pm

    @julien: Good you got it working and your implementation of the menu looks nice.

  483. 486. ??'s life on March 12th, 2009 at 7:35 am

    jQuery????????…

    ?????????????????, ?????????mootools???.
    ???????????????jQuery?????,????.????jQ? =,,=
    ????Lavalamp, ???JS?????…..

  484. 487. ??'s life on March 12th, 2009 at 7:35 am

    jQuery????????…

    ?????????????????, ?????????mootools???.
    ???????????????jQuery?????,????.????jQ? =,,=
    ????Lavalamp, ???JS?????…..

  485. 488. Rahul on March 12th, 2009 at 4:34 pm

    Really cool tool for menus. Thanks for the share link. Cheers.

  486. 489. HALI YIKAMA on March 13th, 2009 at 1:27 pm

    thanks a lot

  487. 490. timsamoff on March 13th, 2009 at 3:33 pm

    Hello,

    Thanks for the great plugin. It works so well. :)

    Question: If I’m navigating content on the same page (i.e., the content is sliding and the URLs are not actually changing), can I still use the “current” class? In this version the code is adding the class, but the class remains on the original “li,” because I’m not actually changing pages.

    Sorry if there’s a simple solution that I’m not seeing!

    Thanks!

  488. 491. lig tv izle on March 13th, 2009 at 9:04 pm

    nice text. thanks for all

  489. 492. Webdesign on March 13th, 2009 at 11:47 pm

    Great tool thx from de

  490. 493. Dale Larsen on March 15th, 2009 at 2:00 am

    Hi,

    First of all this is the best and easiest implementation of lavalamp.

    I am having a small issue. My links don’t work. It was working before I implemented lava lamp but some reason now I can’t get my links to be clickable. When you mouse over it shows the correct link on the bottom bar on firefox but when I click it my page doesn’t change.

    Have you any idea? Here is my code:

    $(function() {
    $(“#1″).lavaLamp({
    fx: “backout”,
    speed: 600,
    click: function(event, menuItem) {
    return false;
    }
    });
    });

    <a href=”">Home

    <a href=”" title=”RSS”>RSS
    <a href=”mailto:”>Contact

    I haven’t changed the javascript or the css files.

  491. 494. Dale Larsen on March 15th, 2009 at 2:02 am

    Sorry the above was supposed to show my list but I guess it this comment script doesn’t allow html markup. But justs imagine the above with correct ul li list markup and also with close link tags after the link name.

  492. 495. Daniel Dinamarca on March 15th, 2009 at 3:54 am

    I like very much this menu…… just one question….. How do I put my initial button wherever I want? (I mean when the page load for the first time)….. Thank you guys.

  493. 496. Dave on March 15th, 2009 at 1:38 pm

    Hello guys,

    I really love this menu and i customized it.
    There is just one problem:
    i want for the hover only different text color.
    When klik a button the background should go to the button i kliked with the smooth lava effect.

    I hope you can help me out.

    Greats,
    Dave

  494. 497. Ganeshji Marwaha on March 16th, 2009 at 5:40 pm

    @timsamoff – I am unable to understand your problem. can you please explain detail and/or show me a test page where I can take a look at your issue

    @Dale Larsen – Just change return false to return true in your click event handler. That should solve your issue.

    @Dave – You will have to mess with the lavalamp source code to achieve that effect. At present the lavalamp uses hover for menu navigation. Try changing it to click, but I am sure you will have to address a couple of more lines in the code to get your effect.

  495. 498. hal? y?kama on March 17th, 2009 at 12:33 pm

    useful article, thank you for sharing

  496. 499. Nic on March 19th, 2009 at 10:12 am

    I am having the same problem with Ed in post #401, where the margin between menu items appear to be much wider in IE6 only. I am using the bottom style version. Just wondering is there a workaround for this? Thanks.

  497. 500. Allan Cass on March 19th, 2009 at 10:03 pm

    Find Duplicate Files Free – Fast Duplicate File Finder
    Fast Duplicate File Finder will help you find fast all duplicate files in a folder and its sub folders.
    The applications will compare the content of your files so it will find duplicates even if they are using different file names.
    It uses fast binary comparison algorithm and has internal preview supporting a lot of image, video, music and text file formats.

  498. [...] Hi, ein Link zu deiner Seite w?re hier ganz hilfreich. Ansonsten vermisse ich gem?? der Gebrauchsanweisung zumindest diese Script-Zeile in deinen [...]

  499. 502. izmirde evden eve on March 22nd, 2009 at 10:08 pm

    thanks you..

  500. 503. Leon Brooks on March 23rd, 2009 at 7:28 am

    Thank you, it works well for me… now… about a cascading version… (-: G/D/R :-)

  501. 504. filip on March 23rd, 2009 at 4:20 pm

    Hi Ganesh!

    please tell me if there are any conflicts on my page… i cannot get the scripts to run on my wordpress… CSS seems to be picked up. Please advise..
    http://www.orangewebdesign.ca/wordpress/

  502. 505. k?z oyunlar? on March 24th, 2009 at 8:23 am

    Tesekkurler haci ne oldugunu anlamadim ama :P ehehe neyse yine de thanks :D

  503. 506. Roman on March 24th, 2009 at 11:11 am

    code:
    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return false;
    }
    });
    });

    must be:

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    onOpen:function(e,i){window.location=e}
    }
    });
    });

  504. 508. tristan on March 26th, 2009 at 1:45 am

    Hello,

    This is fantastic, thank you for publishing it.
    Would it be easy to modify it so that if no LI is set as current, that is should not display the background at all?
    It currently defaults to the first LI, which I would like to stop.

  505. 509. jQuery???????? at Iceberg’Blog - ????? on March 26th, 2009 at 6:47 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  506. 510. Ronald on March 30th, 2009 at 1:54 am

    Hi, I really appreciate this menu and its flexibility I am a fan of Jquery and hopefully write my plugin too. I use the menu on my homepage, kindly check it http://ronaldnunez.com

    Thanks for sharing!

  507. 511. Joe on March 30th, 2009 at 10:24 am

    Hi Ganesh!

    How do you set the selected menu for a static website .
    I am not using any server side scripts . I want to set active page

    please help ;;;;

  508. 512. Ronald on March 30th, 2009 at 11:58 pm

    on Joe, just add a class=”current” on the selected menu and then works fine

  509. 513. Joe on March 31st, 2009 at 3:59 am

    @Ronald I tried that but it is not working

    Home

    profile

    Placements

  510. 514. kpss on March 31st, 2009 at 12:37 pm

    Ronald I tried that but it is not working.
    can you help me :?

  511. 515. Ronald on March 31st, 2009 at 1:19 pm

    make it like this HomeProfile
    that should select home then to active the links set return to true.

    $(function() {
    $(“#animatemenu”).lavaLamp(
    {
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem)
    {
    return true;
    }
    });
    });

  512. 516. xod on April 1st, 2009 at 12:58 am

    Hi,

    thx 4 your great work with the lavalamp menu! I’ve it done after some hours =), but one thing (which is the case also in your demo) I would like to know: Is it possible to stop the “higlight”-thing at the left & right end of the div before it leaves the div for a split second?

    thx for your time =)!

    xod

  513. 517. FreeFly on April 1st, 2009 at 2:43 pm

    Thank you for sharing mark. thanks

  514. 518. manual on April 1st, 2009 at 2:52 pm

    Hi,
    very useful info mark. regards

  515. 519. hal? y?kama on April 2nd, 2009 at 8:51 am

    The menu more in a simple recipe are there

  516. 520. James on April 3rd, 2009 at 9:50 am

    Great plugin, works well…. but
    if I click on the li, without clicking on the link it contains, then that li will get the class current, without having clicked the link, which is slightly strange behaviour!!

    James

  517. 521. ????????? Ajax/Javascript ????? - Code Index on April 3rd, 2009 at 4:26 pm

    [...] & Demo: LavaLamp. Description: As User Interface developers, we know that one of the first widgets our visitors use [...]

  518. 522. kesavan on April 3rd, 2009 at 8:51 pm

    Hi Ganesh,You have done a good job.In this menu when the page is loading i dont want to default selected link initially.How to do this?
    Thanks in advance

  519. 523. kesavan on April 3rd, 2009 at 9:05 pm

    to remove the initial selected link i set “current” class for first   element(dummy).its working perfectly in firefox but gives js error in ie even i set display as inline.how to solve this?

  520. 524. unknow on April 3rd, 2009 at 10:59 pm

    this doesn’t work for wordpress if there are other plugins activated which use jquery – any workaround that ??

  521. 525. 51+ JQuery Tutorials and Examples at Expertz on April 4th, 2009 at 5:31 am

    [...] LavaLamp for jQuery lovers!- A step by step tutorial to create a LavaLamp menu packaged as a plugin for the amazing jQuery javascript library. [...]

  522. 526. Michele on April 5th, 2009 at 9:43 pm

    Can i use this script in my own bussines web site ?
    is under GNU licence as jQuery lib ?

  523. 527. istrion on April 6th, 2009 at 11:36 am

    http://mbox.tuxfamily.org/slider/ without any librairie =>less than 3ko ^^

  524. 528. ???? » 13??????Javascript?????? on April 6th, 2009 at 2:55 pm

    [...] ) LavaLamp jQuery Sliding Menu ????jquery???????????????????????Guillermo [...]

  525. 529. istrion on April 6th, 2009 at 3:09 pm

    Yes …

  526. 530. List of categorised Jquery Plugins | Expertz on April 7th, 2009 at 7:54 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  527. [...] If you wanna English tutorial, please visit LavaLamp for jQuery Lovers. [...]

  528. 532. elsplatto on April 9th, 2009 at 12:39 am

    Nice work Ganesh. Just plugged it into one of my sites. Was easy to implement and easy to change. Elegant coding my man.

  529. 533. Luke on April 9th, 2009 at 1:23 pm

    I am having some problem with the actual links… with my implementation, when you rollover it displays the correct link, but when you click it, nothing happens. The example is here
    http://worcesterscene.com/001_test.php
    and for “SceneAdvantage Coupons”

    thoughts?

  530. 534. Adam on April 9th, 2009 at 7:37 pm

    Hey, trying to use the LavaLamp on my website but I am having problems. Without having id=”3″ in my html list the images wont display, but with having this, the links to the other pages on my website doesnt work, can anybody help me with this??

    Thanks Adam

  531. 535. herzevekil on April 9th, 2009 at 10:10 pm

    thanks a lot… I try to adopt my app:)

  532. 536. Luke on April 10th, 2009 at 12:26 am

    Thanks, my question was resolved.

  533. 537. Ganeshji Marwaha on April 10th, 2009 at 9:26 am

    @filip #504: Your webpage is down i guess. I am unable to take a look at it.
     
     
    @tristan #508: In the plugin code, I am defaulting the first “li” as the current, when no current is specified. So, if you could modify

    curr = $(“li.current”, this)[0] || $($li[0]).addClass(“current”)[0];

    with the following line

    curr = $(“li.current”, this)[0];

    I guess, that should do the trick. I haven’t tested it, but i guess you get the point.
     
     

    @Ronald #510: Cool looking menu you have implemented. Thanks for sharing. Thanks a ton for helping people around with their issues as well. I am grateful for your effort.
     
     

    @Joe #511: I am sure, there is a separate html page corresponding to the menu item clicked. In the page corresponding to the menu-item set the corresponding menu-item’s class to “current”. For eg. Set the home “li” class to current in home.html, Set the about “li” class to current in about.html and so on.
     
     

    @James #520: Are you sure? Coz, the anchor tag is set to block, which means the issue you are saying should not come up. I am sure the link is getting clicked. You are probably thinking that way because of the return false; statement in your anchor’s click event handler. This stops the browser from taking the user to the new page that anchor points to. It is there for demo purposes only.
     
     

    @kesavan #523: In the plugin code, I am defaulting the first “li” as the current, when no current is specified. So, if you could modify

    curr = $(“li.current”, this)[0] || $($li[0]).addClass(“current”)[0];

    with the following line

    curr = $(“li.current”, this)[0];

    I guess, that should do the trick. I haven’t tested it, but i guess you get the point.
     
     

    @Michelle #526: Yes, it is licensed the same way as jquery. So, you are free to use.
     
     

    @elsplatto #532: Thanks. Glad you got it working easily.
     
     

    @luke #533: Remove the return false; from the click event handler. It should start working then
     
     

  534. 538. Adam on April 10th, 2009 at 3:29 pm

    Where do you remove the return false from? Ive tried everything and still cant seem to get it to work :S

  535. 539. Kaela on April 10th, 2009 at 8:21 pm

    I’m having incompatibility issues with Thickbox and Lavalamp on the same site.

    I’m using the following js file in the listed order:

    jquery-1.1.3.1.pack.js
    thickbox-compressed.js
    global.js

    jquery.easing.min.js
    jquery.lavalamp.min.js

    If I erase the first three, the lavalamp works. If I erase the last two, the thickbox works. Therefore, I realize there is incompatibility between the js files. Can anyone help me out, or point me in the right direction of where to look?

    Thanks,
    Kaela

  536. 540. Mick on April 10th, 2009 at 11:16 pm

    It does not work in IE8

  537. 541. bynnt on April 13th, 2009 at 6:51 am

    thanks for publishing this. it’s been very informative for me. so i have this navigation menu saved as a server side include and included it in my html. however, how can i set the class=”current” so that the correct page stays selected on the correct page? thank you.

  538. 542. Mark Steggles on April 14th, 2009 at 1:37 am

    Hi Ganeshji,

    lavaLamp doesnt work with easing 1.3

    Just so you know

    Thanks for the plugin
    Mark

  539. 543. vinneet on April 15th, 2009 at 1:08 pm

    Hello
    i have downloaded the zip file for version 0.2.0 of LavaLamp and has opened the demo.html to check it out for myself.very nice but i have notice a problem that encountered when placing a url in the anchor tag.
    It does not open any url i have .

    For example
    i have place ” in my href “http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers”

    <!–

    Home
    Plant a tree
    Travel
    Ride an elephant
    –>

    Can anyone explain to me why is not opening

  540. 544. YC on April 16th, 2009 at 8:09 am

    Thank you!

  541. 545. gpreetee on April 16th, 2009 at 8:45 am

    @ vinneet
    you must return true

  542. 546. Cynical on April 16th, 2009 at 8:53 pm

    So.. am I the only one the links don’t work for?

    I ran an exact copy of it from the demo and the links don’t work.

  543. 547. Cynical on April 16th, 2009 at 9:03 pm

    nevermind.

  544. 548. Cynical on April 16th, 2009 at 9:05 pm

    No, I have it as return false and it still won’t work.

  545. 549. Cynical on April 16th, 2009 at 9:06 pm

    I mean true

  546. 550. Cynical on April 16th, 2009 at 9:12 pm

    Oh, I’m so sorry. I have it fixed now. I shouldn’t have spoken so soon.

  547. 551. AlexCoady on April 19th, 2009 at 2:23 am

    I use this on all my sites, but am having a problem.
    I have a header.php file, with the small script in, and the list, and that’s then on all my pages, which call it.

    How do I get the bar to stay under just the page I’m on?
    I couldn’t see from the sliding door example..

    I’m quite a beginner so no jargon please :)

  548. 552. Jon on April 19th, 2009 at 6:49 am

    You can view a tutorial on how to incorporate this into drupal 6.x by going to http://www.rawdesigners.com I’ve had trouble using the most recent version of lavaLamp and Easing.

  549. 553. blackproof on April 20th, 2009 at 2:31 pm

    see i loaded the lava lamp but there is a problem i cannot understand , there must be a css conflict of something else, because it is showing the menu bar but not the effects

  550. 554. film izle on April 20th, 2009 at 3:55 pm

    thanks

  551. 555. liam on April 20th, 2009 at 9:13 pm

    anyone ever use this and in IE the effect goes backwards? For example, you run over the first link and the background color goes away from your mouse instead of to it?

  552. 556. gazeteler on April 20th, 2009 at 9:25 pm

    Thank you!

  553. 557. AlexCoady on April 21st, 2009 at 11:11 am

    oh – my website is http://student-promotions.co.uk

  554. 558. radyo dinle on April 21st, 2009 at 3:07 pm

    thanks…..

  555. 559. RS13 - Free WordPress Theme | Theme Lab on April 21st, 2009 at 10:26 pm

    [...] have another great looking blog theme, designed by Rambling Soul. The original template had a cool LavaLamp effect on the menu, which was then in turn included in the WordPress theme version. You can check [...]

  556. 560. Wordpress Blog Services - RS13 - Free WordPress Theme on April 22nd, 2009 at 1:52 am

    [...] have another great looking blog theme, designed by Rambling Soul. The original template had a cool LavaLamp effect on the menu, which was then in turn included in the WordPress theme version. You can check [...]

  557. 561. Allan Cass on April 22nd, 2009 at 8:21 am

    Great menu! JQuery is incredibly powerful. I was amazed when I saw a sample of the tools slide on Apple’s web site made with JQuery and it was so simple! I can not believe it.

    Thank you for sharing the code…I love the style.

  558. 562. kamal on April 22nd, 2009 at 8:38 pm

    kamal says bismila walhamdolilah this is great work man

  559. 563. Christian on April 22nd, 2009 at 9:21 pm

    Can anybody find quicker than I can why it’s not working on my blog?

    http://ocmexfood.blogspot.com/

    I’m pretty sure I have all the elements in correctly.

  560. 564. erken rezervasyon on April 23rd, 2009 at 11:41 am

    Thanks you. byee

  561. 565. Kamil on April 23rd, 2009 at 2:58 pm

    Hello,
    How can I change text color when the “lava.gif” is under text? I have dark background and white buttons. I want white links for all menu itmems, without active button (the link must be then black).
    Regards.

  562. 566. Ronald on April 24th, 2009 at 2:52 pm

    Hi, for hose repetitive questions asking how to activate menu link please take time to read previous replies you find a lot of answers just take time to read. More power to Lavalamp and Ganesh such brilliant thanks for sharing! I have problem how to activate the menu too, just so I read the prevoius replies and i got he idea i hope you understand my point. Right Ganesh?:)

  563. 567. Ile to MAC Cosmetics? on April 24th, 2009 at 10:18 pm

    [...] Ganesh » B&#108og &#65&#114chive » LavaLamp &#102o&#114 j&#81ue&#114y &#108ove&#114s! [...]

  564. 568. müzik dinle on April 27th, 2009 at 6:41 am

    yeah it is good

  565. 569. Krishan Rodrigo on April 28th, 2009 at 7:36 am

    Hi Ganesh, Is there a solution to this menu so that it works in Opera as well? (opera 7)

  566. 570. Robbie White on April 28th, 2009 at 11:51 pm

    Love this plug-in, stunning!

    Here is a quick heads up for all those wanting to use the version for jQuery 1.2.x with an AJAX application, in order for it to tick on the selected link you need to open up the lavalamp.js file, and change this

    $li = $(“li”, this),

    to this

    $li = $(“li a”, this),

    This may mess uo your styling a little, so just make sure you have added your padding to the a element, and not the li element

    This should now stick on click for an ajax app

    hope this helps

  567. [...] 11. LavaLamp menu effect [...]

  568. 572. Jude Pereira on April 30th, 2009 at 2:26 pm

    Hey, I came across your blog in search for a lava lamp menu. I downloaded the demo.zip and since it worked out of the box, I tried to implement it in at my blog(developmental theme – http://judepereira.com/blog/?wptheme=cleanskies). I have all the files but the effect just does not seem to work. Any probable errors that I may be creating?

  569. 573. Patrick on April 30th, 2009 at 8:08 pm

    Does anyone now to change the font color with the rollover has landed on the anchor. I cant use CSS cause it changes too quickly.

  570. 574. marc on May 1st, 2009 at 3:35 pm

    hi everybody, hi ganesh,

    i’m trying to build a wordpress theme that includes the lavalamp navigation. if i’ll be able (hopfully with your help) to modify lavalamp menu to make it work in wordpress, i’m going to post a tutorial about how i did it, so others can reproduce this with more ease.

    this is what i’m trying to get accomplished
    - a lavalamp navigation where the first list item is not current on default (the trick mentioned by ganesh #537 where you advice tristan #508 doesn’t work [at least not for me]) i would like to see this work because i have other pages like sitemap or terms & conditions. so having my first list item turned on would be confusing and improper.
    - my wordpress navigation is split in two parts. one for all the parent items (in my header) and the other for all the children (sub menu, sidebar). i would like to see lavalamp to be able to keep the parents current when on i’m on child pages. Wordpress assigns the following list item classes automatically to current list item in the navigation.

    current_page_item (the current page)
    current_page_parent or current_page_ancestor (the parent or ancestor of the current_page_item)

    here is where i’m at:
    i don’t know how to write javascript or jquery and i just started working with it. i have changed the following code in the jquery.lavalamp.js from this

    $li = $(“li”, this), curr = $(“li.current”, this)[0] || $($li[0]).addClass(“current”)[0];

    to this

    $li = $(“li”, this), curr = $(“li.current_page_item”, this)[0] || $($li[0]).addClass(“current_page_item”)[0];

    because wordpress assigns current_page_item automatically to the current li. i also DELETED the return flase; function from the following, in order to make the links (href’s) work.

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 600,
    click: function(event, menuItem) {
    return flase;
    }
    });
    });

    now here is the problem that i’m experiencing
    as i mentioned befor, i have split my navigation in two parts. if i now click on a child item (submenu item), the current parent item turns back to default (first list item).

    what i need help with
    - i need the current_page_parent or current_page_ancestor to remain current when on child pages.
    - and i need the default list item to be turned off when i’m on pages that are not within the parent or child navigation.

    it’s probably (at least i hope so) just a few more lines of jquery awesomeness that is missing here. thanks for all your efforts since at least 2007 when you posted the lavalamp navigation and of course for your time reading my terribly long explanation. oh, by the way i’m using jquery library version 1.3.2. i have tried it with the library that you provided with the zip file but it doesn’t seam to make any difference.

    many thanks ;)

    marc

  571. 575. tom on May 2nd, 2009 at 1:41 am

    Thanks. Thats amazing. Only 700 Bytes.

  572. 576. Jude Pereira on May 2nd, 2009 at 3:53 pm

    Finally I got it working. But there’s still a problem: the border does not allow the menu clickable. Please visit http://judepereira.com/blog/?wptheme=cleanskies

  573. 577. Thomas Fjordside on May 2nd, 2009 at 9:30 pm

    Wow thanks, I was just looking for that effect for jquery :)

  574. 578. seo on May 4th, 2009 at 11:26 am

    perfect menu thanx

  575. 579. Jude Pereira on May 4th, 2009 at 3:40 pm

    take a look at: http://judepereira.com/blog/archives/194 . it’s been modified to run on Wordpress themes…
    Thanks for the menu… My idea came from here!!!

  576. 580. np on May 7th, 2009 at 1:24 am

    Hi there, I’m no coding wiz so I would like to know if there is a step by step tutorial to make this plugin work in a wordpress theme. I lavalamp-0.2.0 folder but do exactly don’t know what to do with it. I have made the all fixes thanks to hekimian-williams.com, but I just don’t know where to place codes and don’t know how to make theme communicate with on another. Like I said I have no coding experience so forgive my knowledge base.

  577. 581. oyun oyna on May 7th, 2009 at 10:33 am

    Woow good menu thanks..

  578. 582. Jusin on May 8th, 2009 at 2:07 am

    Hello,

    I am using this on my website. I am having a problem when I go to my blog, instead of switching the current to BLOG the slider stays at home. My blog is on wordpress in a separate directory than my index and other main pages. Thanks for any help you can give.

  579. 583. Jusin on May 8th, 2009 at 2:25 am

    nevermind. found it. ty

  580. 584. MiD-AwE on May 9th, 2009 at 10:58 pm

    I love it, thanks. I’m haveing one issue though. It seems that I can’t click the links in IE7. The problem is obvious, the “.lavaLamp li.back” image is on top it will not obey the z-index in the css. That or the “.lavaLamp li a” is not on top for the same reason. It works great for me in the demo but not on my page. Do you know of anyway to force it to work anyway? I used noConflict() but no help. Thanks in advance for any help.

  581. 585. Pardis on May 10th, 2009 at 5:03 am

    Thank you very much.I am using this on my work.

  582. 586. NeoEase.org » Add LavaLamp Menu to iNove Theme on May 10th, 2009 at 5:46 pm

    [...] LavaLamp effect is an excellent technique to turn the navigation to a flash like animation, it was originally written by Guillermo Rauch for Mootools and somebody had written a nifty LavaLamp menu for jQuery. [...]

  583. 587. Justin on May 10th, 2009 at 5:48 pm

    Hello,

    I am trying to add this to my wordpress theme (http://justinledelson.com/portfolio/sandbox/wp/). If you look, there are a few bugs, first the lava blocks out the text. I want it to just change the bg color and the link color. Second, If you click on a link, the lava will go over it fine but if you hover over a second link then move your mouse off, the lava will stay where you moved your mouse off and not return to the current page.

  584. 588. ?????? LavaLamp ???? on May 10th, 2009 at 6:23 pm

    [...] LavaLamp for jQuery Lovers WP Trick JavaScript, jQuery, Tutorial, WordPress ??: ???? [...]

  585. [...] ???? [...]

  586. 590. 16 jQuery Plugins i used the most | Mahbubur Rahman on May 11th, 2009 at 7:09 am

    [...] Validation Masked Input Modals & Overlays Boxy Thickbox Colorbox Nyromodal BlockUI Navigation Lavalamp jScrollPane Ui Tabs Tags: boxy, cycle, grid, growl, scrollable, table drag and drop, tooltip, [...]

  587. 591. Ricky on May 11th, 2009 at 8:01 am

    Hi, i’ve try to put some real link in demo page downloaded from this page, but links don’t work with any browser, anybody know why?

  588. 592. johnv on May 11th, 2009 at 1:37 pm

    can someone help me with a small tweak that i havent been able to figure out?

    how do i make this so it uses 2 lines? i have too many menu items and they dont all fit on one line

    thanks…and yea this is really cool

  589. 593. Ronald on May 12th, 2009 at 2:34 pm

    @jusin you can make static pages using wordpress and also separate the blog/post on your website you can check my site co i think that is what you are looking for.

  590. 594. RS13 - Free WordPress Theme | FreeWordpressThemes.us on May 12th, 2009 at 6:54 pm

    [...] have another great looking blog theme, designed by Rambling Soul. The original template had a cool LavaLamp effect on the menu, which was then in turn included in the WordPress theme version. You can check [...]

  591. 595. Justin on May 13th, 2009 at 12:45 am

    @ronald – I need help with making it so the lava dose not block out my text.

  592. 596. Ganeshji Marwaha on May 13th, 2009 at 6:59 am

    @MiD-AwE #584 : All seems to be fine in IE 7. I am able to click the link. Can you show me a demo page where i can check your problem out.

    @Jusin : I guess you are trying to use lavalamp on wordpress. Since, i personally dont use it on wordpress, i am not sure abt ur problem. But friends out here have found solutions for the same. Hope their solution helps. Just look in the comments.

    For all those who want this working on wordpress blog @Jude Pereira has come up with the solution. Thanks a ton @Jude Pereira. Look in comment #576 and #579. http://judepereira.com/blog/2009/05/04/pp-lava-lamp-nav-for-your-wp-blog/

    @patrick #573 : This has nothing to do with lavalamp. You can use jquery normally to change font color on hover slowly using jquery’s hover function.

    @Krishan Rodrigo #569 : As far as i know it works in Opera. I have verified only in 9.x though.

  593. [...] 8. LavaLamp [...]

  594. 598. Danish Backer on May 13th, 2009 at 12:49 pm

    I too had the same problem (Link not working)
    But it was solved by call a function loadEasing(e) onclick
    and pass the link into that function as argument. Simple

    eg:-
    function loadEasing(e) {
    location.href = ‘pagename.php?var=’+e;
    }

  595. [...] 11. LavaLamp menu effect [...]

  596. 600. ?????? LavaLamp ???? — SuccessFul! on May 14th, 2009 at 9:08 am

    [...] ????: LavaLamp for jQuery Lovers  [...]

  597. 601. Mani on May 14th, 2009 at 12:30 pm

    WOW !!!!!

    i looked a lot for this menu ~~~~!!
    i really loved the short explenation !!

    keep up the great work!

  598. 602. Gergely Marton on May 14th, 2009 at 2:34 pm

    Hi there! This is a nice effect and plugin, but with one problem.

    It doesn’t work with jquery-1.3.2.min. Is there a fix for this? I wanted to use with jQuery UI and I can’t get it working. Please get back to me if there is a fix. Thanks.

  599. 603. andrew on May 14th, 2009 at 7:43 pm

    Hi Ganesh.

    Ok, probably a really stupid question but here goes. I am using your awesome script and the way that I have my new website set up is using the pagescroll technique. I am not very good with javascript as of yet although I seem to have gotten everything with your script set up ok. I used the “current” value to place the “box” over the cooresponding link based upon what “page” we are at (I have several navigation menus within the site). But because all of the “pages” are actually just anchors, when I go to my profile “page”, the box is over the correct link but when I go from that page back to the home “page”, the box there is still over the profile link. And at that point, if I were to go back to the profile “page” then the box is now positioned over the home link. So basically what I am trying to accomplish, is after one clicks on the “page” they want to go to, the box always goes back to the link with the “current” class applied. Does that make sense? lol.

    Here’s a link so you can see what I mean:

    http://www.ideologydesign.com/new/

    Thanks bro!

  600. 604. Joaquin on May 14th, 2009 at 8:39 pm

    Hello, i´ve used the lava lamp without an image and in firefox works excellent. But in IE6 it doesn´t works at all, however in your website works well with IE browser. What did you do to make it work?

    Thanks!

  601. 605. güne? enerjisi on May 15th, 2009 at 7:05 am

    Thank You..

  602. 606. +18 film izle on May 15th, 2009 at 8:31 am

    wow thanks

  603. 607. d2m.ca on May 15th, 2009 at 6:04 pm

    this menu system design is really awesome

    I’m gonna go try it out for some of my client projects.

  604. 608. Martin on May 16th, 2009 at 3:05 am

    a little code snippet i created to make the links work – with framesets, even … it also takes care of people clicking beside the text :)

    if (e.target != “[object HTMLLIElement]“)
    {
    top.frames[3].location = e.target;
    }

  605. 609. Scrooby on May 16th, 2009 at 5:53 pm

    Hi, awesome menu, I have used it on many of my sites. However, no doubt this question has come up before.

    Is there a way to get this menu to work vertically?

  606. 610. Valerio on May 16th, 2009 at 6:54 pm

    How to make it work in that damn IE6?
    I see the menu up here in this website is working. How does it?

  607. 611. is ariyorum on May 17th, 2009 at 8:23 pm

    Thank you very much.I am using this on my work

  608. [...] that uses no special feature of Photoshop yet looks good. Also, I had long been waiting to add the Lavalamp sliding navigation. I plan to use as much of the jQuery javascript library as possible in my future [...]

  609. [...] Lavalamp | Demo [...]

  610. 614. Chris on May 18th, 2009 at 9:03 pm

    Great plugin! I added a small tweak for those who have a second level to their navigation (sub nav or just multilevel). Adds vertical movement to the hover.

    function setCurr(el) {
    $back.css({ “left”: el.offsetLeft+”px”, “width”: el.offsetWidth+”px”, “top”: el.offsetTop+”px” });
    curr = el;
    };

    function move(el) {
    $back.each(function() {
    $(this).dequeue(); }
    ).animate({
    width: el.offsetWidth,
    left: el.offsetLeft,
    top: el.offsetTop
    }, o.speed, o.fx);
    };

  611. 615. N on May 18th, 2009 at 10:42 pm

    Hi Genesh, thank you for the great script!

    I was wondering if there was a solution for this previous post that was made a while ago, cause I’m having the same problem.

    Thank you

    “I have everything working perfectly – except – the right side of the active ’s background. The background just cuts off as opposed to rounding off as it should. I suspect something is funky with the “.back” class in the styles but that’s just a guess.”

  612. 616. Martin on May 19th, 2009 at 2:09 pm

    overflow: visible;

    … fixes the problem with the cut off.

  613. 617. n on May 20th, 2009 at 6:41 pm

    Thanks Martin for the help, I’ll try what you suggested.

  614. 618. network marketing on May 21st, 2009 at 8:25 am

    i looked a lot for this menu ~~~~!!
    i really loved the short explenation !!

    keep up the great work!

  615. 619. Felipe on May 22nd, 2009 at 9:50 am

    Concerning IE6, here’s the problem and the fix:

    The problem is with the Easing library and the “fx: backout / 700″ part of the code. Remove both and your menu will work roughly (no fancy springing background).
    In the source code of this page, you can see that Ganesh doesn’t use the Easing library he points to, instead he uses http://www.gmarwaha.com/js/lib/lib.min.js !
    Copy the second part of this file:

    //// JQUERY PLUGIN – EASING
    jQuery.easing blah blah blah

    in a new JS file on your server, load it instead of the easing.min.js one, flush your cache and IE6/7 will be pimped again!

    Notes:
    - I tried the 3 versions 1.1, 1.2 and 1.3 of easing.js with no success before that.
    - I use the version 0.2.0 of the plugin with jQuery 1.2.6, because my CMS named SPIP 2.0 won’t work with jQuery 1.3.x (for now).

    @valerio and @joaquin: thanks for pointing out that the plugin works with IE6 on this page!

    @Ganesh, many thanks for this port of the lavalamp menu (and the 0.2.0 version, even if I didn’t spotted it immediately :( )! Could you please update this page with a working solution for IE6/7? (IE NetRenderer snapshot seems OK for IE8 too, though I haven’t installed this browser locally yet)

  616. 620. Sheldon Finlay on May 24th, 2009 at 1:33 am

    I was able to get LavaLamp to work with easing 1.3 simply by changing the fx name to the equivalent 1.3 easing name. “backout” becomes “easeOutBack”.

    $(“#header ul”).lavaLamp({ fx: “easeOutBack”, speed: 800 });

    And you of course want to make sure you are using easing 1.3 and not the include easing 1.1 which is available here: http://gsgd.co.uk/sandbox/jquery/easing/

    I have tested it in FF3 and Safari and it works fine. I don’t see any reason why it wouldn’t work in other browsers.

    Hope that helps.

  617. 621. Michael Haws on May 25th, 2009 at 6:44 am

    Hey guys,
    For some reason when I plug links into the list, nothing happens when I click on them.

    Anyone have any ideas as to how to fix this?

    The site can be found at http://www.dougbox.com/shop.

    The code looks like this:

    | home |
    | products |
    | about us |
    | the dougbox |
    | contact us |

    Thanks for any help y’all can provide! This is really frustrating.

  618. 622. michele on May 25th, 2009 at 12:26 pm

    is it possible to implement tab navigation and dropdown ? it will be the ultimate css menu!

  619. 623. 20????Javascript???? | ?? on May 26th, 2009 at 3:26 am

    [...] 8. LavaLamp [...]

  620. 624. cris on May 26th, 2009 at 2:04 pm

    For Michael Haws:

    try to delete this string: ” return true; ” from your code below.
    I did something like this and now it works.

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return true;
    }
    });
    });

    Also if you need then to get the right menu selected add this to the :

  621. 625. cris on May 26th, 2009 at 2:04 pm

    For Michael Haws:

    try to delete this string: ” return true; ” from your code below.
    I did something like this and now it works.

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return true;
    }
    });
    });

    Also if you need then to get the right menu selected add this to the :

  622. 626. Renn on May 29th, 2009 at 6:38 am

    @Michael Haws

    Obviously, you did not read the tutorial :P . On the inline javascript(demo zip), there are extra lines there, remove it. That should fix your problem:

    click: function(event, menuItem) {
    return false;
    }

    regards

  623. 627. John on May 29th, 2009 at 3:51 pm

    hey,
    website not online yet. Lavalamp menu in place and operating correctly, but clicking the menu items does not jump to the next page. Any help?

    On the page I gave – click the first menu item “Home”. you can see the URL in the browser’s status bar at the bottom, but the click action is not firing.

    thanks,

  624. 628. John on May 29th, 2009 at 3:56 pm

    @ John (myself LOL)

    D’oh! my bad – just read Renn’s response below. working now :-)

  625. [...] 11. LavaLamp menu effect [...]

  626. [...] 11. LavaLamp menu effect [...]

  627. 631. Ganeshji Marwaha on May 30th, 2009 at 5:33 pm

    @michele #627: Yes it is possible to implement. It will take some effort though. I will probably giving it a try in my next web project. When I succeed, I will try and wrap it in a plugin and host it here.
     
    @Renn: Thanks for helping out fellow jquery lovers here
     
    @Felipe #619: Thanks @Sheldon #620. That is correct. Just replacing the name of the easing should do the trick
     
    @N #615: Did what @Martin suggest work. I guess that should be the solution. Thanks @Martin.
     
    @Chris #614: Nice work
     
    @Valerio #610, @Joaquin #604: Does the demo download work in IE6. What problem are you facing.
     
    @Gergely Marton #602: I haven’t tried LavaLamp with jquery 1.3.x yet. I will try it and get back to you in these comments.
     

  628. 632. Alex Coady on May 30th, 2009 at 10:24 pm

    I know this is the most common problem, and I’ve looked through pervious posts and none of it is helping me.

    I have a header.php file which has the script and the links in it, I then include that file in each of my actual pages.

    how do I get the box to stay on the CURRENT page?

    I know it’s something to do with <li class=”current”…

    but can somebody help a bit more, like say EXACTLY where to put it..?

    my site is http://student-promotions.co.uk

  629. 633. Ganeshji Marwaha on May 31st, 2009 at 3:41 am

    @Alex Coady #632: Yes Alex! It is the most commonly perceived problem. The issue is that this is not a problem and cannot be fixed within the plugin. The solution lies in your server-side programming language. Regardless of what language you use, the final output you get is HTML. Make sure that the correct “li” gets the “current” class for your menu-item to be highlighted on page reload. For example, If the user has clicked on “Home” link, when the new page is loaded, make sure that the “li” corresponding to “Home” has the “current” class set. The same applies for all other pages as well.

  630. 634. 13??????Javascript?????? | ??? on May 31st, 2009 at 4:33 am

    [...] ) LavaLamp jQuery Sliding Menu ????jquery???????????????????????Guillermo [...]

  631. 635. 240??jQuery?? | ??? on May 31st, 2009 at 5:48 am

    [...] jQuery SuckerFish Style . jQuery Plugin Treeview . treeView Basic . FastFind Menu . Sliding Menu . Lava Lamp jQuery Menu . jQuery iconDock . jVariations Control Panel . ContextMenu plugin . clickMenu . CSS Dock Menu . [...]

  632. 636. Javascript????13? | ??? on May 31st, 2009 at 5:56 am

    [...] ) LavaLamp jQuery Sliding Menu ????jquery???????????????????????Guillermo [...]

  633. 637. Akash on May 31st, 2009 at 10:40 am

    Hi Ganesh,
    I am delighted to see the lavalamp plugin you have created.
    However, I am having problems integrating it with my webpage which I am creating to learn Jquery.
    The problem is coming because lavalamp is created using jquery easing plugin v1.1 and I’m using jquery easing plugin v1.3.

    I’ll be grateful if you can modify the lavalamp to make it work with easing plugin v1.3.

    Thanks

  634. 638. Ganeshji Marwaha on May 31st, 2009 at 11:51 am

    @Akash #637: LavaLamp will work well with both easing 1.1 and easing 1.3. You just have to change the easing’s name to reflect the 1.3 version. Another fellow jCarouselLite lover @Sheldon Finlay #620 has achieved it. Refer to Comment #620 for Sheldon’s solution.

  635. [...] 11. LavaLamp menu effect [...]

  636. 640. Barry on May 31st, 2009 at 2:30 pm

    I’m using lavalamp on my portfolio site but for some reason when I upload it to the server it doesn’t work although it works offline, any ideas on what I’m doing wrong?

    Thanks for the deadly code!

  637. 641. Ganeshji Marwaha on May 31st, 2009 at 4:53 pm

    @Barry #640: With the given information, I have no clue as to what could be the problem. Why dont you post your link here. I will take a look. For starters which version of jquery are you using locally and which version are you using in the server.

  638. 642. Barry on May 31st, 2009 at 6:01 pm

    Hi Ganeshji. Sorry the link is http://student.dcu.ie/~walshba3/test/ I’ve only got it working on IE but no luck with FF. Thanks for the help!

    I’m using Jquery-1.1.3.1.min

  639. 643. Hasan on June 2nd, 2009 at 6:18 am

    Hii
    How can i add new menu items in the menu.
    when i am adding in the menu the items goes in the next line and the menu gets scattered

  640. 644. Michael on June 2nd, 2009 at 5:11 pm

    Ganeshji: I love the plugin but it expands almost double the size in IE6. It works great in Firefox 3.

    If you look at the Demo, ‘Ride and Elephant’ gets wrapped to 2 lines in IE6.

    Workaround for me: Just widen the DIV wrapper to work well (with increased spacing) for IE6 users.

  641. 645. fay on June 3rd, 2009 at 11:23 am

    How to add sudmenu

  642. 646. tarun on June 3rd, 2009 at 4:37 pm

    made some tweaks and finally ….got a wonderful result in my site telecomtalk.info thanks Ganesh

  643. 647. [jQuery Plugin] LavaLamp - ????? on June 4th, 2009 at 4:56 am

    [...] ????? [...]

  644. 648. ?????240??jQuery?? « ??? on June 4th, 2009 at 7:18 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  645. 649. Ganeshji Marwaha on June 4th, 2009 at 7:04 pm

    @Barry #642: I am unable to figure what is going wrong from your website. kindly try to make what you are trying as small in scope as possible. That will tell you what you are doing wrong. I wish i could help
     
    @Michael #644: Yes you are right. That is called the “double margin” problem in IE6. Kindly google it out. A hack in ur css will fix that problem. I am planning to do that myself sometime next week. Thanks for pointing it out
     
    @fay #645: No, as of now Lava Lamp itself doesnt have submenu support.
     
    @tarun #646: Cool, I took a look at ur website. Nice implementation of lavalamp. Makes me proud. BTW, one suggestion. Why dont u try “overflow:hidden”. The menu seems to go out of page when it reaches either corner. “overflow:hidden” will avoid that problem.

  646. 650. sohel on June 5th, 2009 at 7:10 am

    great tut’s,thank’s ganesh iwould like to work on it yaar ………..thanks………

  647. 651. Kmac on June 5th, 2009 at 1:48 pm

    Hi can anybody help me, im trying to set the selected tab when i go to a new page within my site but cant figure out how to do it. Im new to jquery so im finding it quite confusing.

  648. 652. Naitmeir on June 5th, 2009 at 6:17 pm

    links in element not works :( and yes i have my file in the same directory, but don’t works… why?????

  649. 653. naitmeir on June 5th, 2009 at 6:18 pm

    links in element \Test\ not works :( and yes i have my file in the same directory, but don’t works… why?????

  650. [...] Lava Lam jQuery Menu [...]

  651. 655. Ganeshji Marwaha on June 6th, 2009 at 3:43 am

    @naitmeir #654: If you browse through this comments section you will get an answer for it pretty easily. Anyways, the link doesn’t work because in the test, I have hooked into the click event for lavalamp and returned false. So, when initializing the plugin, please “return true” when you pass in the function for the browsers default behaviour to work
     
    @Kmac #652: As far as the selected tab is concerned, it has nothing to do with jquery itself. Your server-side language is the key here. From you server-side when you spit our HTML to the client side, check for which page you are going to spit out and depending on that, set the “current” class for the appropriate “li” in lavalamp. Hope that helps. Browse through the comments section. You may find helpful replies for your server-side language

  652. 656. Menu fluide LavaLamp avec jQuery « ZikiO on June 7th, 2009 at 1:25 pm

    [...] la démo du menu ou le télécharger gratuitement du code source, c’est  ici. 0 [...]

  653. 657. Menu fluide jQuery - LavaLamp « ZikiO on June 7th, 2009 at 1:33 pm

    [...] la démo du menu et le  téléchargement gratuit du code source c’est ici. 0 [...]

  654. 658. Zoli on June 8th, 2009 at 7:55 pm

    700 bytes !!!. That is amazing. Congratulation.

  655. 659. Aalaap Ghag on June 9th, 2009 at 4:45 am

    so smoooth! so hot! so lava!!!!

  656. 660. FancyMenu in jQuery | Zaparaties on June 9th, 2009 at 2:07 pm

    [...] effect when you hover the menu. Ported from Mootools to Jquery. Get it here. Read also idTabsprettyPhoto Post To:Digg Facebook Yahoo! Buzz Email PREVIOUSidTabs [...]

  657. 661. Nnyan on June 10th, 2009 at 8:15 pm

    Hello,

    Great menu, have it up and running np. One quick question, is it possible to change the behavior of the menu? Instead of the background box sliding to the menu item on mouse over I just want the box to “warp” from it’s current position to the new menu item. Also instead of having it just disappear from the previous menu item have it’s color change to a “transition” color like grey or something.

    Thank you!

  658. 662. Ganeshji Marwaha on June 13th, 2009 at 3:23 am

    @Nnyan #661: Pretty much possible. Of course it is not possible in the present version of the plugin. If you try and succeed kindly do let me know.

  659. [...] Lavalamp | Demo [...]

  660. 664. Tkay on June 15th, 2009 at 4:01 pm

    Hi guys!

    First of all congratulations on this great Menu!!

    After playin’ araound with it, i had the idea to combine the Lavalamp manu with the Superfish menu and i think it is goin’ okay (work still in progress…).

    The only problem is though (and that’s why I am posting this here) ist that when you hover over a menu point with the superfish menu it does collapse, but when you go with the cursor over the now superfish navigation – the Lavalamp bar above just floats back left.

    Here’s an example: http://www.corporatelook.de/superlavafish/demo.html

    Is there any way to stop the lavalampbar from moving, when you move your cursor over the superfish navigation??

    Thnx in advance!

    Greetz,

    Tkay

  661. 665. Ganeshji Marwaha on June 15th, 2009 at 8:08 pm

    @Tkay #664: Nice attempt. Hmmm, regarding your question, you might have to hack into the code a little bit. It might not be as straight-forward as it may look. I am using the jquery hover() event to determine the lava movement. Now, in the process of integrating these 2 plugins, you might have to see if you can change this part of the code to be triggered not on mouseleave event, instead on some trigger that comes back from superfish saying that the mouse has left superfish submenu. Hope that helps

  662. 666. Navagation menu - Lava Lamp on June 16th, 2009 at 9:11 am

    [...] for more details check this link: http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/ Comments [0]Digg [...]

  663. [...] 8. LavaLamp [...]

  664. 668. darsane on June 16th, 2009 at 4:49 pm

    Thank you for information
    [URL="http://www.darsane.com"]darsane[/URL]

  665. 669. Developing with Javascript « BigBadCollab Blog on June 16th, 2009 at 5:03 pm

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu clickMenu CSS Dock Menu jQuery Pop-up Menu Tutorial Sliding [...]

  666. 670. Eric J on June 17th, 2009 at 4:54 pm

    Probably not the best place to post this problem, but maybe someone has encountered this.

    I implemented the Bottom Style menu on a Joomla 1.5 site which uses the mod_mainmenu module. Anyways, the first time you visit my site or if you hit the “reload” button on your browser, the underline appears across pretty much all the menu items. The Lavalamp menu works if you mouse over an item but only the first time you visit the site or reload it, does this happen.

    Any ideas? It’s probably related to Joomla’s caching system which I have turned off, but maybe someone else has encountered this.

    The only mods I have made to the core files is changing the .current to .active in jquery.lavalamp.min.js and I call Lavalamp like the following:

    jQuery.noConflict();
    jQuery(function() {
    jQuery(“#primary-nav”).lavaLamp({
    fx: “backout”,
    speed:800,
    click: function(event, menuItem) {
    }
    });
    });

    Thanks for any help I get.

  667. 671. LavaLamp for jQuery lovers! | Ganesh | Squico on June 20th, 2009 at 10:40 am

    [...] In: JQuery plugins 20 Jun 2009 Go to Source [...]

  668. 672. sohbet on June 20th, 2009 at 6:03 pm

    700 bytes !!!. That is amazing. Congratulation.

  669. 673. sesli chat on June 21st, 2009 at 1:14 pm

    jQuery.noConflict();
    jQuery(function() {
    jQuery(”#primary-nav”).lavaLamp({
    fx: “backout”,
    speed:800,
    click: function(event, menuItem) {
    }
    });
    });
    ? dont no soryy

  670. 674. Vibze on June 22nd, 2009 at 11:22 am

    Hello, first of all thanks for this great plugin, i discovered it from the 50 greatest jquery plugins chart on some other site and it really is :)
    I have a question to ask. I dont have an index page link on my menu. So when the user is on the index page i want the sliding bar to hide when the cursor leaves lavalamp area. How can i achieve that? I tried creating a with its width set to 0, but when i do that, the plugin starts behaving strangely and that just doesnt look pretty.

  671. [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  672. 676. marc on June 22nd, 2009 at 2:20 pm

    nice Script – but the Links do not work!

  673. 677. SPOTTED on June 22nd, 2009 at 7:53 pm

    Fantastic thank you. Find the files you are looking for at megaupload-download.com the most comprehensive source for free-to-try files downloads on the Web

  674. 678. Ravi on June 23rd, 2009 at 4:27 am

    Hi ganesh

    lavalamp is very good effect, i am stuck at the point of hyper linking the “plant a tree” to HTML page. I am new to jquery. in the

    Home
    plant a tree

    in this way it’s not working.

    Ganesh please help me as soon as possible.

    Thank you very much in advance

  675. 679. Ravi on June 23rd, 2009 at 4:30 am

    Hi ganesh

    lavalamp is very good effect, i am stuck at the point of hyper linking the “plant a tree” to HTML page. I am new to jquery. in the

    Home
    (li)(a href=”plant a tree.html”) plant a tree(/a)(li)

    in this way it’s not working.

    Ganesh please help me as soon as possible.

    Thank you very much in advance

  676. 680. Ravi on June 23rd, 2009 at 12:02 pm

    Hi

    I am trying to hyper link the one of the lavalamp menu buttons to another page. I used “(” instead of “<" because when i post the submit the comment it's taking them as HTML tags. Please help me.

    (ul class="lavaLamp")
    (li)(a href="#")Home(/a)(/li)
    (li)(a href="Plant a tree.html")Plant a tree(/a)(/li) — this is not working please guide me in this regard.—–
    (li)(a href="#")Travel(/a)(/li)
    (li)(a href="#")Ride an elephant(/a)(/li)
    (/ul)

    Thank you very much in advance.

  677. 681. Joel Abeyta on June 23rd, 2009 at 8:40 pm

    I used this on a website for one of the stores I work for. http://www.harvesttheboutique.com I’ve received tons of compliments. Thanks, Ganeshji, for the great blog. I look forward to seeing more stuff from you.

  678. 682. Ganeshji Marwaha on June 24th, 2009 at 8:01 am

    @Vibze #674: Sorry, at present the plugin assumes that if no “li” is marked as current, then the first “li” is automatically marked as current. You will have to modify that part of the plugin code to achieve what you want.

    @Ravi #678: You will be using “return false;” in the bound “click” event. Instead return true. The links will start working.

    @Joel Abeyta #681: I am very happy both you and your customers liked the plugin. Thanks for using LavaLamp.

  679. 683. Arulmurugan on June 24th, 2009 at 9:00 am

    Hi Ganeshji Marwaha,
    Great work. Implemented lavalamp for one of our client http://www.risingindia.com/

    thanks.

  680. 684. Ganeshji Marwaha on June 24th, 2009 at 11:40 am

    @Arulmurugan #683: Nice work. Makes me feel proud to have developed it. Thanks for using LavaLamp.

  681. 685. Riham on June 24th, 2009 at 1:50 pm

    I used this menu and it’s really amazing but i have alittle problem that it doesn’t work with firefox so please can anybody help me???

  682. 686. Antalya Evden Eve Nakliyat on June 24th, 2009 at 6:18 pm

    will be using “return false;” in the bound “click” event. Instead return true. The links

  683. 687. Radek on June 24th, 2009 at 11:39 pm

    Hi I have a little problem.
    How I can set the starting point of the sliding “window”?

  684. 688. Chris on June 25th, 2009 at 7:34 pm

    Great script! i have just one minor problem: using the lavaLampNoImage version, when i follow one of the LavaLamp link, the new page loads and the menu go back to the default menu (first one on the left). Where is my mistake?

  685. 689. Chris on June 25th, 2009 at 8:12 pm

    Forget about my dumb question :-) i found the (li class=”current”)

  686. 690. Ashley Graham on June 26th, 2009 at 9:04 am

    @Vibze #674: Sorry, at present the plugin assumes that if no “li” is marked as current, then the first “li” is automatically marked as current. You will have to modify that part of the plugin code to achieve what you want.

    I could really do with knowing how to do this as I have a second level of navigation (footer links).

  687. 691. menu hover problem - bytes on June 27th, 2009 at 7:17 am

    [...] it was not in this menu but i had another top menu named as lavalamp i downloaded it from here lavalamp it is conflicting with the left category menu is ther any option i can fix it regards, Omer [...]

  688. 692. Ganeshji Marwaha on June 27th, 2009 at 8:24 am

    @Ashley #690:
    Change this part of the code

    curr = $("li.current", this)[0] || $($li[0]).addClass("current")[0];
    

    to

    curr = $("li.current", this)[0];
    

    That should do the trick…

  689. 693. Dönertas on June 29th, 2009 at 8:03 am

    Hi I have a little problem.
    How I can set the starting point ?? help..

  690. 694. Hanz on June 29th, 2009 at 12:50 pm

    Hello, this is a very nice tutorial. Is there a multi-level option version of the lavalamp menu? Thanks.

  691. 695. rwc on June 29th, 2009 at 3:29 pm

    hi
    great plugin – thank you very much!

    but i have a little problem:

    http://4thcube.de/stuff/x/previewlava/
    if i click on a menu item, the slider always moves back to the first link in the row when i move the cursor away….
    in you demos it works – but i’ve no idea why it doenst work in my files, i didnt change anything afaik
    help please =)

  692. 696. Ganeshji Marwaha on June 30th, 2009 at 3:47 am

    @rwc #695: You are trying to write functionality for the click as

    $('div.tabs ul.tabNavigation a').click(function () {
        tabContainers.hide().filter(this.hash).slideDown(350);
        $('div.tabs ul.tabNavigation a').removeClass('selected');
        $(this).addClass('selected');
        return false;
    }
    

    Instead, you should write this in the click event that has been provided to you by LavaLamp.

     $(".lavaLampWithImage").lavaLamp({
            fx: "backin",
            speed: 190,
            click: function(event, menuItem) {
                // WRITE YOUR CODE HERE
                return false;
            }
        });
    
  693. 697. Ganeshji Marwaha on June 30th, 2009 at 3:49 am

    @Dönertas #693: You can set the starting point by specifying class=”current” for the “li” that you want to start with.

    @Hanz #694: Thanks for trying out LavaLamp. Sorry, but there is no multi-level version of the same available.

  694. 698. Ashley Graham on June 30th, 2009 at 10:58 am

    @Ganeshji Marwaha #692:

    I tried that with no luck. Is there anything else I can try?

    Ash

  695. 699. Ashley Graham on June 30th, 2009 at 11:08 am

    It looks like I’m getting an li.back in front of the first actual li link.

    And also even if I just hover over the link it’s setting the current state on that li.

  696. 700. conn3ct on June 30th, 2009 at 6:48 pm

    Thank you, it works well for me… now… about a cascading version…

  697. 701. Conn3ct on June 30th, 2009 at 6:49 pm

    Thank you, it works well for me…

  698. 702. Stefan on June 30th, 2009 at 11:06 pm

    Everything is fine, just I can’t make the links work.
    Do I miss something? They don’t work even if I just download your zipped file and add links instead of #.
    Please advice.

  699. 703. Stefan on June 30th, 2009 at 11:20 pm

    I just found the solution in post No. 41.
    The keyword is to replace the return false to true.
    Thank you, Ganeshji!

  700. 704. Tavla on July 3rd, 2009 at 1:19 am

    Thanks for a post.
    it was exactly what I need really.

  701. 705. Leandro on July 4th, 2009 at 1:55 am

    Hi!
    can I use and modify this code on a site that I get money from him?

    Thanks

  702. 706. Ganeshji Marwaha on July 4th, 2009 at 6:04 am

    @Leandro #705: Sure, but you should leave the credits section intact even in the modified code. That way you can legally modify this code and use it on a website that you develop for a paying client.

  703. 707. Ganeshji Marwaha on July 4th, 2009 at 6:10 am

    @Stefan #702, #703: Glad, you got it working and thanks for trying LavaLamp.

  704. 708. Bertan ucar on July 5th, 2009 at 3:42 pm

    Hi!
    can I use and modify this code on a site that I get money from him?

    Thanks

  705. 709. Ganeshji Marwaha on July 5th, 2009 at 6:04 pm

    @Bertan ucar # 712: Yes. As long as you preserve the credits section and the license agreement.

  706. 710. Ben Carr :: This Site on July 6th, 2009 at 12:31 am

    [...] menu is done using the jQuery Lavalamp Plugin. The jQuery javascript library is fantastic and is used on all of my sites, in one way or [...]

  707. 711. eddie on July 6th, 2009 at 4:55 am

    does it work with jquery 1.3.2 or not? thank you

  708. 712. Mike Smith on July 7th, 2009 at 8:26 am

    I am trying to use this on a new site of mine but am running into a small issue:

    How can I get the text color to be different on whatever li item the lavalmp is currently hovering over? I know a:hover is normally how we could do it, but with the lavalamp hovering on “home” I’d like to have that a diff. color as well (and change when I am no longer hovering over it.

    Any solution for this?

  709. 713. Ashley on July 7th, 2009 at 10:06 am

    @Mike Smith #712

    Not sure exactly if this is what you want but I’m doing:

    .lavaLamp li a:hover, .lavaLamp li:hover, .lavaLamp li a.active
    {
    color:#f00;
    }

    And set the active class on the anchor:

    Templates

    This will change the colour of the nav text on hover and when it is active (current).

  710. 714. Ashley on July 7th, 2009 at 10:09 am

    Damn it actually posted the link.

    It should be:

    (li class=”current”)(a href=”/templates/” class=”active”)Templates(/a)(/li)

    Obviously ( and ) should be

  711. 715. Ashley on July 7th, 2009 at 10:12 am

    Sorry yet again, it just won’t let you post html without it actually rendering.

    You should see what I mean by using ( and ) though!

  712. 716. 15 jQuery Tutorials For More Interactive Navigation on July 7th, 2009 at 1:23 pm

    [...] Tutorial [...]

  713. 717. Mike Smith on July 7th, 2009 at 5:48 pm

    @Ashley (713-715). Thanks for posting. I tried and had it, but when the hover goes off the “current” li, the color stills stays white, while it should be switching to black (any hover’d item is white text with a blue image bg, while the other items are black text on a light bg).

  714. [...] Tutorial [...]

  715. 719. Ganeshji Marwaha on July 10th, 2009 at 9:42 am

    @MikeSmith #712: You can try the CSS based solution as Ashley suggested or you can use jQuery solution itself.

    $("li a").hover(function() {
      $(this).addClass("hover");
    },
    function() {
      $(this).removeClass("hover");
    });
    

    Then you can style “hover” class with whatever color you want. This should solve your problem.

    @Ashley: Thanks for helping fellow jCarouselLite lovers by sharing your knowledge.

  716. 720. Ganeshji Marwaha on July 10th, 2009 at 9:52 am

    @eddie #711: LavaLamp works perfectly well will jquery 1.3.2. Just download the given zip file and replace the version that it includes with the version 1.3.2 of jquery and check it out for yourself.

  717. 721. Serge on July 10th, 2009 at 2:50 pm

    Dear Sir,

    First of all, sorry for my english and thank you for your work. lavaLamp is realy great !

    Is it possible to change the « selected item » with an « onclick » event (attached to a simple HREF tag in the page) ?

    For you information, i’am a junior in jQuery ;)

    Best regards,

    Serge

  718. 722. Ganeshji Marwaha on July 10th, 2009 at 4:14 pm

    @Serge #721: I understand your requirement. But sorry serge, it is not possible with the current lavalamp plugin. This requires change to the plugin code itself.

  719. 723. ???240??jQuery?? « Lamtin'Blog on July 10th, 2009 at 6:59 pm

    [...] for jQuery.jQuery SuckerFish Style.jQuery Plugin Treeview.treeView Basic.FastFind Menu.Sliding Menu.Lava Lamp jQuery Menu.jQuery iconDock.jVariations Control Panel.ContextMenu plugin.clickMenu.CSS Dock Menu.jQuery Pop-up [...]

  720. 724. 200+ jQuery?? « liwad on July 11th, 2009 at 1:32 pm

    [...] lava lamp jquery menu. [...]

  721. [...] 8. LavaLamp [...]

  722. 726. Serjik on July 12th, 2009 at 6:33 am

    Nice work! I’ll have to do a cross post on this one ;)

  723. 727. babak on July 12th, 2009 at 9:44 pm

    This is a wonderful script. Really well done!

    I’m hoping a CSS genius can help me a bit. I’ve put together a test menu at . I basically CSS’d the menu to have the active indicator part of a long bar and then moved certain menu items under the bar by assigning a special class.

    Two things I can’t figure out:

    (1) Is it possible to float right the set of menu items under the menu while keeping left justified the set of menu items above? I originally did this by creating a left and right set of divs, but could only make it work by having two instances of the menu (one left, one right). I want only one menu that goes all the way across, but to just right justify the bottom set.

    (2)I can’t figure out how to contain the orange bar within the gray nav div. It’s absolute positioned so that I can force it down to the right height to coincide with the status indicator. But that makes the 100% width tag force the bar to be window-width, rather than div width.

    Any help appreciated!

  724. 728. babak on July 12th, 2009 at 9:45 pm

    Oops — the commenting system removed the URL I posted. My test demo is at www dot morebutter dot net slash lavalamp

  725. 729. evden eve nakliyat on July 15th, 2009 at 8:16 am

    Nice work! I’ll have to do a cross post on this one

  726. 730. Jens on July 17th, 2009 at 9:31 am

    Hi – it’s strange but the menu-hyperlinks don’t work – like on post 702 – they are not been executed when I click on them – only right-click open in new tab is working.

    When I comment out jquery.lavalamp.min.js – the linkage is working again! But than the lamp-menu-effect does disappear! Please help. I’m working on a MAC G4, Tiger – it happens on Safari and Firefox

  727. 731. Alex on July 17th, 2009 at 10:57 pm

    hey guys im trying to set it up so that on click, it will stay in that location in current state. how can i do this? i am doing a one page site where it scrolls down therefore there are no outgoing links to another page so adding class=”current” will not work.

  728. 732. John W on July 17th, 2009 at 11:26 pm

    Hey there, have you heard of CODA SLIDER?? Is it possible to combine the Lava Lamp menu WITH the Sliding function of Coda Slider?

    Or if you can’t specifically use Coda Slider is there a way to, “easily without jQuery knowledge”, make the Lava Lamp menu control the content in a slider style??

    Coda Slider is here:
    [ http://www.ndoherty.com/demos/coda-slider/1.1.1/#1 ]

    ** Also, I have substituted the Orange image and “lava.gif” with my own images. I have everything lined up and working properly EXCEPT for getting the “Lava.gif” to line up perfectly and evenly on each link… as In when the image slides under a new link the motion is fine, but when the image settles the edges are not symmetrical to the text…one side might go beyond the text farther than the other side…. Is this controlled somewhere in the CSS ?? or is it in the JS???

    THANKS!!

  729. 733. Ganeshji Marwaha on July 18th, 2009 at 8:44 am

    @Jens #730: Remove the “return false; ” statement that assign to the click handler and everything should start working as you would expect.

    @John W #732: I am sure that can be achieved. In your source, you are using the panels (panel 1, panel 2 tabs) as anchors. Instead if you design them as lavalamp expects (as ul and li), then there is no reason why they should not work. But, if you want the lavalamp to slider when you click the next and prev for coda slider, i doubt it can done without seriously modifying lavalamp code.

  730. 734. John W on July 18th, 2009 at 7:20 pm

    Ganeshji – THANKS! First off, The code rocks!! Thanks!! Didn’t really give you credit in the last post!

    I am REALLY new to JS so i might be able to get it to work… I just am not sure with JS what “stuff” might be in the JS that would conflict with another JS function. I get lost knowing when the JS “names” something on its’ own, and what’s ‘generated’ using the CSS….

    Thanks for the advice!! I will let you know if I am successful!!

    Keep the Great Codes Coming! You Rock!

  731. 735. John W on July 18th, 2009 at 7:28 pm

    Ganeshji – Do you know how to get the Lava Blob to line up evenly behind each link? Since I changed out the images there was some spacing issues which I mostly fixed… Here is the Demo I have so far… The Lava Blob functions perfectly but won’t “Stop” behind each link Symmetrically….

    http://www.jfivedesigns.com/LVpp/LavaLampMenu/demo.html

    Thanks again!

  732. 736. HamzaED on July 19th, 2009 at 3:47 pm

    [...] LavaLamp : an outstanding use of jQuery to make an interactive menu . [...]

  733. 737. Adding a Lavalamp menu to Greysheets @ 3DN on July 20th, 2009 at 7:42 am

    [...] old version already as the latest version is version 1.3.2. My version is still the one written by Ganeshji Marwaha, the 1.3.2 version is simply a version that has been adapted to jQuery 1.3. When I set up lavalamp [...]

  734. 738. 240 de pluginuri jquery | javascript&jquery on July 20th, 2009 at 10:17 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  735. 739. Daniel Svensson on July 20th, 2009 at 9:32 pm

    Hi,

    Love this plugin! Trying to customize it in CSS with my own images
    to fit my website.

    (1)

    In HTML markup the target src is “#” for a link. Will it work with masterpages in .NET ASP?

    (2)

    Going crazy with the css to actually get my lava-image to fit perfectly under the links. I’ve seen that your lava-image in the demo is quite strange, does the lava-image has to be in some format to work with the css?

    Perhaps stupid questions but been tweaking for 2 hrs now and still not perfected.

    My bg.png image is 450×40px
    My lava.png image is 200×20

    It has the same appearance as the demo.

    Thanks!

  736. 740. Daniel Svensson on July 20th, 2009 at 10:07 pm

    Hi again!

    Now i have it working except for one thing!

    My lava-image is not showing the rounded rigth-side, it’s flat vertically. The left side is ok.

    Is my image to large or small ?

    Thanks!

  737. [...] Lava Lamp jQuery Menu. [...]

  738. 742. schneid3r » Como hacer un menu con Lavalamp on July 22nd, 2009 at 9:13 am

    [...] http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/ Categories: General Tags: Entradas más comentadasBuscadores de canciones segun la letraAjedrez con Stop MotionJaponecita Y Su Lenguita Comentarios (0) Referencias (0) Dejar un comentario Referencia [...]

  739. 743. schneid3r » Ufff on July 22nd, 2009 at 9:14 am

    [...] blog personal donde colocare todo lo que encuentre en la net, proyectos y más. Todo esto gracias a Lavalamp menú y  iNove. Categories: Noticias Tags: casi termino Entradas más comentadasBuscadores de [...]

  740. 744. Dink on July 23rd, 2009 at 10:48 pm

    How would I go about modifying this to transition on mouse-click instead of as I move the mouse around?

    What I’d like to be able to do is have the background stay stationary on the currently selected tab, then when I click another tab have the background transition over to it in the same fashion as it does now when I move the mouse back and forth.

    Can this be done?

  741. 745. links for 2009-07-23 | Digital Rehab on July 24th, 2009 at 12:39 am

    [...] LavaLamp for jQuery lovers! | Ganesh (tags: jquery menu javascript navigation lavalamp webdesign plugin djgonzo) [...]

  742. [...] inove ????? lavalamp [...]

  743. 747. Paintbits » Blog Archive » Lumen Reborn is here… on July 27th, 2009 at 12:18 am

    [...] navigation element for a streamline browsing experience. The main navigation menu features a nice lavalamp effect. Other interesting aspects of the theme can be seen for example on the automatic generation [...]

  744. 748. Rohan on July 27th, 2009 at 2:18 am

    Hello,
    I really like this lavalamp nav. Thanks. There is one problem I cant seem to resolve. I am using this lavalamp for a navigation however when I click from page to page. The current link always goes back to First item in nav. I want it to stay on the link of that page. Hope this makes sense.
    Thanks for any help.

  745. 749. javascript library @inforz - ????hover????????? on July 27th, 2009 at 5:27 am

    [...] LavaLamp for jQuery lovers! [...]

  746. 750. Umirza on July 27th, 2009 at 7:33 am

    Im using your version of the easing and lavalamp script with 1.3.2 version of jquery. I follow your example fully and even with you files for some reason I cannot get the picture to show in IE/FF.

    In the mean while I am using your files and the no-image underline lavalamp with the 1.3.2 and I cannot get the lava to stay on a link that I click. click: function(event, menuItem) { return true;} ive tried w/ true and false and it still doesnt work. any help would be appreciated

  747. 751. Umirza on July 27th, 2009 at 7:37 am

    Sorry i forgot to mention that my page does not reload, its all in tabbed content.

  748. 752. Tyler T on July 29th, 2009 at 3:30 am

    Incase anybody is having problems figuring out how to get the links to work, here’s the fix… On the header where you reference the javascript you have a little line that says this…
    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return false;
    }
    });
    });

    Change it to the following(simply replace the “return false” with “return true”.

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return true;
    }
    });
    });

    This is all in the html page you are embedding the nav bar in.

  749. 753. Ashley on July 30th, 2009 at 9:06 am

    @Ganeshji #692

    This did not work, I’m still trying to sort this. Do you have any other ideas? I’ve tried everything I can think of.

    Thanks
    Ashley

  750. 754. Brandon on July 30th, 2009 at 11:15 pm

    Hey guys,

    Have you ever had an Internet Explorer 6 issue with the Menu. If I try this same page on my browser the Menu get’s cut completely and doesn’t work.

    In firefox it works wonderfully and in newer versions of Internet Explorer as well… Any thoughts?

    By the way, this menu rules!

  751. [...] Read full 0 Comments [...]

  752. 756. Marcus on August 4th, 2009 at 1:49 pm

    I´m using the Lavalamp sliding menu on the same page as a jCarousel but it dont work together. When I´m not loading the “jquery.easing.min.js” the Carousel works but not the animation in the menu. Why is there a conflict? And what can I do to solve the problem?

    You can view the page here, http://www.yatzy.se/om

  753. 757. cam balkon on August 10th, 2009 at 11:13 am

    its all in tabbed content.

  754. 758. Gav on August 11th, 2009 at 4:23 pm

    Hi, I cannot believe I never saw this earlier – Ganesh this is without doubt the best jQuery menu script I have come across – looks awesome & works well in all browsers too! Compliments go out to you!! :-)

  755. 759. kral oyun on August 15th, 2009 at 3:08 pm

    thanks for post

  756. 760. oyunlar on August 15th, 2009 at 3:09 pm

    thanks a lot

  757. 761. divone on August 16th, 2009 at 12:59 pm

    I have a problem. I wanted to fix hyperlinks, i changed “return false” to “return true”, but link works only once, I mean i click the link, new window opens and then when i want to click another link it is not work :(

  758. 762. divone on August 16th, 2009 at 1:13 pm

    yahooooo it works! i’ve just update version lavalamp_0.1.0.zip to lavalamp-0.2.0.zip !!) sorry for my english)

  759. 763. Graham Sanders on August 19th, 2009 at 2:40 pm

    435. Roy. Thank you, links now working… phewwwwwwwwww

  760. [...] LavaLamp for JQuery Lovers es un código de JavaScript implementando la librería JQuery con la cual podemos hacer un menú al estilo de Flash. [...]

  761. 765. 22 Beautiful jQuery Plugins for Web Designers | One1.info on August 19th, 2009 at 4:59 pm

    [...] jQuery Lavalamp for jQuery lovers(and everybody else) [...]

  762. 766. Selvam on August 20th, 2009 at 10:10 am

    nice post…thanks

  763. 767. Ralph on August 20th, 2009 at 6:56 pm

    beautiful, nice inspiration, keep up the good work!

  764. 768. OgrenmeNesneleri on August 26th, 2009 at 2:10 am

    I like lavalamp effect very much and ? used my project. You see: http://www.yomvakum.com, thank you so much.

  765. 769. hali yikama on August 26th, 2009 at 10:20 pm

    thanks

  766. [...] Demo Visit [...]

  767. [...] jQuery Lavalamp for jQuery lovers(and every­body else) [...]

  768. 772. Ganeshji Marwaha on August 28th, 2009 at 6:12 am

    @John W #734, #735: Thanks!

    @Daniel #740: I Guess too large

    @Dink #744: You can do it by changing the plugin source. I am sure it is pretty straightforward. Look for hover events, and instead change them to clicks. You don’t have a way to change the event from outside the plugin

    @Rohan #748: You have to use your server side code to decide which page you are currently in and set the class=”current” in the “li” of that particular element before the page is rendered to the browser. Take a look at Thinkrite Website for inspiration

    @Umirza #750, #751: Can you host a test page somewhere and direct me towards it?

    @Tyler #752: Thanks Tyler for helping out the community. I think i have answered the question like a 100 times. ;)

  769. 773. Ganeshji Marwaha on August 28th, 2009 at 6:18 am

    @Brandon #754: I have noticed the problem in IE6 too, just am too lazy to fix it… It is just a matter of minor hacks to the CSS for IE6 to make it work in IE6. In fact Thinkrite website functions perfectly alright in IE6. So, the plugin itself is right, it is just a matter of some CSS tweaking make the menu look alright in IE6. Have fun.

    @Marcus #756: I believe it is working now. What was the problem?

    @Gav #758: Thanks! :-)

    @divone #760, #761: Glad you got it working…

    @OgrenmeNesneleri #768: Great job. Nice implementation. Usages like these are my inspiration to develop more… Have fun!

  770. 774. Harikrishnan on August 29th, 2009 at 4:50 am

    Hello
    How can we implement these functionalty in asp.net menu control

  771. [...] jQuery Lavalamp for jQuery lovers(and everybody else) [...]

  772. [...] 11. LavaLamp menu effect [...]

  773. [...] LavaLamp for jQuery lovers! | Ganesh http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers – view page – cached This is Ganeshji Marwaha's personal web site. My personal projects, technical articles and blogs will be showcased here. — From the page [...]

  774. [...] Lava Lamp. Para un menú con un efecto muy dinámico de fondo. [...]

  775. 779. Dave Bonds on August 30th, 2009 at 6:50 pm

    If anybody else is trying to get this to work in Wordpress and having problems keeping the current page active, rather than defaulting to the first menu item..

    Cory’s Place blog has a great tutorial on what you need to change in the lavalamp javascript so that it works with Wordpress’ wp_list_pages() or wp_list_categories() in your nav bar

    http://hekimian-williams.com/?p=146

  776. 780. Christian louboutin on September 1st, 2009 at 6:57 am

    @John W #734, #735: Thanks!

    @Daniel #740: I Guess too large

  777. 781. 12 Flash-like jQuery Effects | Dev Words on September 1st, 2009 at 10:12 pm

    [...] 2. Lavalamp Navigation Plugin [...]

  778. 782. mirc on September 2nd, 2009 at 1:08 am

    Thank you, you answered the question I have been searching for which was whether or not to place keywords when blog commenting.

  779. 783. jQuery Eklentileri 1 « Webmaster Destek Cms Seo Makaleleri on September 2nd, 2009 at 3:14 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  780. 784. Spoonk on September 3rd, 2009 at 3:04 pm

    Hi there! Really f**n’ nice plugin. I use it in http://spoonk.eu.
    I’ve got only one question:
    How to make my links to be bookable and to use history buttons on browsers? I try with return true; but it only shows the link hash (#about-us or #web-design) and if I try to type it on address bar points to default (selected) link?
    How can I hash all links and use it to share them upon messengers, affiliates, etc?

  781. [...] LavaLamp for jQuery lovers!- A step by step tutorial to create a LavaLamp menu packaged as a plugin for the amazing jQuery javascript library. [...]

  782. 786. Justin on September 4th, 2009 at 7:49 pm

    Rabimba, Thank you!!!!

    click: function(event, menuItem) { return false;

  783. 787. 10 incredible JQuery navigation menus on September 7th, 2009 at 5:25 pm

    [...] Lavalamp is a simple, ready to use JQuery plugin which allow you to create a stunning effect over your horizontal navigation bars. Nice to see, easy to implement. Source [...]

  784. 788. kodein » Blog Archive » jquery Menü on September 8th, 2009 at 3:00 am

    [...] LavaLamp for jQuery lovers! [...]

  785. 789. zh-f on September 8th, 2009 at 3:21 am

    How do I setting the current menu?

  786. 790. LavaLamp | Dearest Media WordPress on September 8th, 2009 at 6:08 am

    [...] ???????????????? [...]

  787. 791. 240??jQuery?? - Jidda's Blog on September 9th, 2009 at 7:49 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  788. 792. MJH on September 9th, 2009 at 11:01 am

    Great script, I’ve added the .current class to my li, but what do I need to add to the CSS?

    Thanks

  789. 793. JQuery: ???? ????? ???????? ? ????? ??????? | Readtxt.org on September 10th, 2009 at 12:54 pm

    [...] Lava Lamp jQuery Menu. [...]

  790. 794. jc on September 11th, 2009 at 12:30 am

    props ganesh! i really am liking the way you developed this code. really fits my logic. the tweak i am having a challenege implementing is having a state where there is NO “current” . in my case, this is my main nav BUT my default page that loads with the lava lamp menu will not be referenced in the lave lamp menu.

    i tried an additional class (noShowLava) that i attached to an empty . the only css in this class was display:none, also played with visibility. i was getting choppy lava images on the mouseOut when “current” was still set to the empty .

    it feels like this should not be a complicated effort to implement, but i’m amateur at best when it comes to web dev. hoping that there is someone out there who finds this tweak a good challenge and is willing to find a solution.

    many thnx to all u kick ass developers :)
    peace and love,
    jc

  791. 795. jc on September 11th, 2009 at 12:32 am

    “… that i attached to an empty li class=”current noShowLava”.

  792. 796. Leandro Weige Dias on September 11th, 2009 at 8:11 pm

    Hi!
    How i can add a dropdown menu when the mouse is over?
    Thanks!

  793. 797. çad?r on September 13th, 2009 at 4:37 pm

    Great script, thanks.

  794. 798. Mitsune on September 14th, 2009 at 2:13 am

    nice plug-in but i have a problem here. im trying to implement this in my master pages but i cant seem to get it to work. got any ideas? just in case, please email me back for the specifics

    thanks again ganesh ;)

  795. 799. alarm sistemleri ankara on September 14th, 2009 at 2:13 pm

    Yes, how do you get it to highlight a particular menu item as being the page the user is currently looking at?

  796. 800. alarm sistemleri adana on September 14th, 2009 at 2:15 pm

    Hi can anybody help me, im trying to set the selected tab when i go to a new page within my site but cant figure out how to do it. Im new to jquery so im finding it quite confusing.

  797. 801. güvenlik firmalar? adana on September 14th, 2009 at 2:16 pm

    [...] Lava Lam jQuery Menu [...]

  798. 802. güvenlik firmalar? ankara on September 14th, 2009 at 2:18 pm

    links in element \Test\ not works and yes i have my file in the same directory, but don’t works… why?????

  799. 803. kamera sistemleri adana on September 14th, 2009 at 2:21 pm

    Hi can anybody help me, im trying to set the selected tab when i go to a new page within my site but cant figure out how to do it. Im new to jquery so im finding it quite confusing.

  800. [...] la démo du menu ou le télécharger gratuitement du code source, c’est ici. 0 [...]

  801. 805. yangin sistemleri adana on September 14th, 2009 at 2:26 pm

    Hi I have a little problem.
    How I can set the starting point ?? help..

  802. 806. yang?n sistemleri ankara on September 14th, 2009 at 2:29 pm

    Hello, this is a very nice tutorial. Is there a multi-level option version of the lavalamp menu? Thanks.

  803. 807. Rebecca on September 14th, 2009 at 11:11 pm

    That’s easy, if you need to set the menu to a specified tab once the page is loaded, simply put class=”current” on the li tag… :P

  804. 808. BlogoTips » 10 Navigatin menus with JQuery on September 15th, 2009 at 10:01 am

    [...] Lavalamp is a simple, ready to use JQuery plugin which allow you to create a stunning effect over your horizontal navigation bars. Nice to see, easy to implement. Source [...]

  805. 809. 13 Menu Design Tutorial using jQuery on September 15th, 2009 at 3:10 pm

    [...] LavaLamp for jQuery lovers! [...]

  806. 810. Sr Anou » Blog Archive » Recursos JQuery on September 15th, 2009 at 5:43 pm

    [...] jQuery Lavalamp for jQuery lovers(and everybody else) [...]

  807. 811. 10 Sweet “Must Have” jQuery Plugins on September 16th, 2009 at 9:29 am
  808. 812. JS & AJAX Share: List of Useful jQuery Plugins on September 16th, 2009 at 1:52 pm

    [...] LavaLamp Navigation menu with a 'lava' effect. [...]

  809. 813. Nicolas on September 16th, 2009 at 6:00 pm

    everything works fine … except my links don’t work. Why don’t they work when I click them on the page?

  810. 814. e?e ve çe?itleri on September 18th, 2009 at 2:00 am

    good job
    thanks for codes

  811. 815. h?rdavat on September 18th, 2009 at 2:02 am

    thanks for tutorial

  812. 816. us drugstore on September 18th, 2009 at 10:01 am

    Thanks, helpful source.

  813. 817. taschengeld on September 18th, 2009 at 11:53 pm

    One of the best tutorials ever. Thanks.

  814. 818. Evden Eve Nakliyat on September 19th, 2009 at 1:34 pm

    Cool article, great script THANKS.

  815. [...] LavaLamp Navigation menu with a ‘lava’ effect. [...]

  816. 820. Ozan on September 19th, 2009 at 8:22 pm

    Hello, this is a very nice tutorial.

  817. 821. Plugin jQuery : LavaLamp | DevZone - Zone de développement web on September 21st, 2009 at 7:21 am

    [...] gmarwaha.com [...]

  818. 822. Kaan on September 21st, 2009 at 9:57 am

    Hi! Nice tutorial. But in Firefox (last version) I can’t open the links. I’m just clicking them but nothing happen. Please HELP!

  819. 823. myrla on September 21st, 2009 at 6:35 pm

    I dont know why it didn’t work for me. I’ve downloaded the zip and opened the html file but it’s only displaying as text and nothing is working. Could you please help me? I’d like to make a jCaroullite as well but it is also not working.

    Thanks-
    Myrla

  820. 824. Kaan on September 21st, 2009 at 6:47 pm

    Hey! We’re asking someting here. If you dont know the bug just say I dont know how can I fix this. You just write the post and shut your mouth. Please give me a answer.

  821. 825. naji on September 21st, 2009 at 9:50 pm

    it’s very cool,
    but with a rolling menu ?
    what do you thing we could have?

  822. 826. ???? » ??1000?jquery?????????????????20090710? on September 22nd, 2009 at 6:56 am

    [...] LavaLamp [...]

  823. 827. Suleyman Vardar on September 23rd, 2009 at 9:11 am

    Hi;

    If you want the script to go to a link when you click one item,
    change this line
    $li.click(function(e){setCurr(this);return o.click.apply(this,[e,this])});
    with :
    $li.click(function(e){setCurr(this);/*return o.click.apply(this,[e,this])*/});
    OR if you dont wanna comment anymore and wont require:
    $li.click(function(e){setCurr(this);});

    Im using Minifies version.

    Other version’s line number to be commented is 75th…

    Good plugin by the way.
    Thanks

  824. 828. Suleyman Vardar on September 24th, 2009 at 7:24 am

    Hi;

    If you want to set an item as selected when you go a new page, you can set that item’s class as “current” and then initialize the lavalamp function.

    You must do it before function is initialized. Function sets the first item as selected if neither was set as current class. If any item is set as “current” class, then first item with “current” class current becomes selected…

    If you want an item to go to a link when you click, the post above works but disables callback function. If you want a clean solution, initialize function without sending a callback function like:

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700
    });
    });

  825. 829. security on September 25th, 2009 at 6:39 pm

    Thank you edit css menü

    http://bloggeriz.blogspot.com/2009/09/lavalamp-css-menu-black.html
    Lavalamp black Css menu

  826. 830. Raju on September 26th, 2009 at 9:03 am

    Thanks for your gr8 plugin.

    How to use with submenus?

  827. 831. bi ileti » Site Ar?ivi » 10 adet navigasyon menü yap?m?. on September 26th, 2009 at 10:03 am

    [...] Kaynak [...]

  828. [...] Lavalamp is a simple, ready to use JQuery plugin which allow you to create a stunning effect over your horizontal navigation bars. Nice to see, easy to implement. Source [...]

  829. [...] 11. LavaLamp menu effect [...]

  830. 834. 240 plugins Jquery | flazann on September 29th, 2009 at 3:30 pm

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  831. [...] that of flash – Don’t you? Especially considering the fact that it is extremely light weight. Web Site Demo Download AKPC_IDS += "503,";Popularity: unranked [?] Share and [...]

  832. 836. JQuery: ???? ????? ???????? ? ????? ??????? | ReadTXT.org on October 4th, 2009 at 6:45 pm

    [...] Lava Lamp jQuery Menu. [...]

  833. 837. Mahmud on October 6th, 2009 at 1:54 am

    Thanks . Works great.
    btw what are the other effects besides ‘backout’??
    what other values can fx have??

  834. 838. Warwick on October 7th, 2009 at 4:08 am

    thanks for this. going to use it on one of our new sites.

    thanks!
    Warwick
    http://www.ireckon.com

  835. 839. Taty on October 8th, 2009 at 2:27 am

    Guys. if you want to implement this excellent navigation in Wordpress, FIRST OR ALL check that you really included all the javascript tags in the header.php file. I mean, “jquery-(version_number).js” should be there. “jquery.easing.min.js” should be there and “jquery.lavalamp.js” should be there… I know, there’s one more .js in the zip, but you may ignore this one.

    Now, these are the changes you should make:

    In the jquery.lavalamp.js file: just replace this…

    $li = $(“li”, this), curr = $(“li.current”, this)[0] || $($li[0]).addClass(“current”)[0];

    with this…

    $li = $(“li”, this), curr = $(“li.current_page_item”, this)[0] || $($li[0]).addClass(“current_page_item”)[0];

    THAT’S IT!!

  836. 840. MikeY on October 8th, 2009 at 10:07 pm

    Hi,

    Does anyone know how come, when the plugin loads, the back li is 100% page width and left = auto ?

    gr, Mike

  837. 841. generic drugs on October 9th, 2009 at 10:03 am

    Hi. I have to thank you such an article.

  838. 842. List of jQuery plugins » IMvsMI blog on October 9th, 2009 at 8:52 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  839. 843. Ben Tubby on October 10th, 2009 at 12:06 am

    Hi,
    There are still issues with the code listed here running under IE6 – in that some of the items wrap and make the whole effect look rubbish.
    Do you have a fix for this?
    I found these links;
    http://www.webdesignerforum.co.uk/topic/26778-internet-explorer-strikes-again/
    (this didn’t work for me)
    and
    http://www.mail-archive.com/jquery-en@googlegroups.com/msg16227.html

    Was this ever fixed?????

    Any help appreciated!
    Thanks,
    ben

  840. 844. Tom on October 11th, 2009 at 6:02 am

    Hey thanks for the awesome info!

    I’ve managed to get all the effects working but the links don’t work, in the demo up top and in the setup I’ve done, using Safari 4. Has anyone else had this problem? Any solutions?

    Thanks!
    Tom

  841. 845. roy on October 11th, 2009 at 11:10 pm

    Hey thanks for the awesome info!

    I’ve managed to get all the effects working but the links don’t work, in the demo up top and in the setup I’ve done, using Safari 4. Has anyone else had this problem? Any solutions?

    Thanks!
    Tom

    I’m having the same problem… Is there a fix for this?

  842. 846. JQuery: ???? ????? ???????? ? ????? ??????? @ ???????? ???? on October 13th, 2009 at 8:32 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  843. 847. Khanh on October 13th, 2009 at 8:32 am

    This is great! I will think of employing this in my website!

  844. 848. Tony Sperduti on October 14th, 2009 at 8:48 pm

    I used the bottom style. So i have got the lavalamp working in firefox, opera and safari. But for some reason when i open it up in Internet Explorer, the size of the navbar shrinks and the bottom line moves off to the left out of the navbar. Anyone know something I can do besides troubleshooting?

  845. 849. Plugin jQuery : LavaLamp @ Neptisblog on October 15th, 2009 at 11:36 am

    [...] officiel: LavaLamp Tweetez-le !Partagez-le sur FacebookPartagez-le sur FriendFeedS'abonner aux commentaires de cet [...]

  846. 850. McG on October 15th, 2009 at 1:14 pm

    Would it be possible to add a nested list to it?

  847. 851. BandonRandon on October 16th, 2009 at 2:26 am

    I see by default the first menu item is selected is there a way to override this right now my solution is to create a li with a class of “blank” which no text and have that selected but it’s sort of a messy solution.

    Brooke

  848. 852. 13???CSS+Javascript?? | I'm Bolo on October 16th, 2009 at 2:51 pm

    [...] LavaLamp jQuery ???? ? ?? jQuery ????? ???LavaLamp jQuery ???? ??? Mootools Fancy [...]

  849. 853. crousti on October 16th, 2009 at 11:45 pm

    Does anybody know how to fix the bug in ie6 ? It’s not working so bad on ie6, that’s surprising but maybe could be better..?

  850. 854. 26 jQuery Plugins for Superb Navigation | Master Design on October 18th, 2009 at 3:41 am

    [...] 6. LavaLamp for jQuery lovers! [...]

  851. 855. ZachMagic on October 19th, 2009 at 7:56 pm

    Hey, i’m implamenting this on Blogger. It works fine but it doesn’t set the current list item correctly.
    http://www.Left4DeadSafeRoom.com
    Any solutions?

  852. 856. ZachMagic on October 20th, 2009 at 12:42 pm

    I thought the lavalamp.js did that for you?

  853. 857. ZachMagic on October 20th, 2009 at 1:36 pm

    so do i just need to write some javascript to check the url and set the current list item based on that?

  854. [...] Read the original here: LavaLamp for jQuery lovers! | Ganesh [...]

  855. 859. Tutoriais e demos de menus em JQuery | idealMind on October 21st, 2009 at 1:05 am

    [...] Lavalamp menu Muito bacana esse menu: você passa o mouse sobre o itens e uma animação é exibida para destacar o item que o mouse está por cima. Possui diversos exemplos. Tutorial & Demo [...]

  856. 860. Kristeen on October 21st, 2009 at 10:09 pm

    What if I want one of the other links to start as the first page selected?

    For example I want “plant a tree” to be highlighted w/o the user actually having to click on it first.

    Any help would be greatly appreciated!

  857. 861. Perry on October 23rd, 2009 at 2:37 pm

    I’ve got the dame problem with the lins that are not working… What’s the solution for this?

    Thanks for any help.

  858. 862. Tony on October 23rd, 2009 at 8:42 pm

    Is there a conflict with this lavalamp and the prettybox lightbox?

  859. 863. Collection of 30+ AJAX Menu Plugins - DoNotYet.com on October 25th, 2009 at 1:14 pm

    [...] Flash like menu rollover using jQuery [...]

  860. 864. Les on October 25th, 2009 at 6:36 pm

    I have implemented a this on my site and works great but the li images don’t render in any version of IE. I thought I might have done a typo, but couldn’t find any. Anyone els have this problem?

  861. 865. Des centaines de liens JQuery | Juste le zeste... on October 27th, 2009 at 2:54 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. [...]

  862. 866. Plugins jQuery para Menús | Daniel on October 28th, 2009 at 1:10 am

    [...] 5.- LavaLamp [...]

  863. 867. NFL jerseys on October 28th, 2009 at 8:46 am
  864. 868. ugg boots on October 28th, 2009 at 8:47 am
  865. 869. hürriyet ilan on October 28th, 2009 at 10:08 am

    your good comment

  866. 870. 10 incredible JQuery navigation menus | Programming Blog on October 28th, 2009 at 7:43 pm

    [...] Lavalamp is a simple, ready to use JQuery plugin which allow you to create a stunning effect over your horizontal navigation bars. Nice to see, easy to implement. Source [...]

  867. 871. Diego on October 29th, 2009 at 12:43 am

    Do you realize that the links are not working? you actually can not follow the links with this… i thought i was doing something wrong, but if you click even in this site on one link it doesnt follow… i should get the # on nav bar.. not getting it.. not working

  868. 872. Diego on October 29th, 2009 at 12:56 am

    OMG i feel so stupid right now!! i didn’t notice de callback returning false , THANKS FOR THIS AWESOME MENU!!!

  869. 873. Jeff on October 29th, 2009 at 1:44 am

    Is there a way that I can have it hover over the current page I am on? Example: I am on the about page, I would like the “lava” to hover over the about page link.

    Any suggestions?

    Other than that I love it.

    Thanks!

  870. 874. chiangmai guide and tour on October 29th, 2009 at 7:21 am

    thank for share tips. myblog is chiangMai guide and tour

  871. 875. iyifikir on October 29th, 2009 at 8:49 am

    links don’t work

  872. 877. 50 Cool CSS Menus, Free Source Codes + Tutorials on October 30th, 2009 at 6:35 am

    [...] 27. LavaLamp Menu [...]

  873. 878. Dave on October 31st, 2009 at 10:40 am

    Thanks, got this working nicely. But how can I increase the gap between the words but keep it so the image still only highlights the word. I have tried adding padding but the image then highlights the gap aswell :(

    Please help!

  874. 879. CHROMAX on November 2nd, 2009 at 5:44 pm

    It does not work with the newest easing 1.3, only with 1.1

  875. 880. 240??jQuery?? | Jidda's Blog on November 4th, 2009 at 8:44 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  876. 881. 13????Javascript?CSS??? | ?? - CoolShell.cn on November 4th, 2009 at 11:19 am

    [...]   8 ) LavaLamp jQuery ???? [...]

  877. 882. Anthony on November 4th, 2009 at 3:30 pm

    In response to 902, I believe http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.compatibility.js fixes the issue with easing 1.3.

  878. 883. erick on November 4th, 2009 at 6:23 pm

    Dear friends, your menu is great but the links does not work… thanks

  879. 884. Vincio on November 4th, 2009 at 8:36 pm

    At Anthony 906: that library doesn’t solve the problem with the version 1.3 :\
    For me it doesn’t work :(

  880. 885. ???? on November 5th, 2009 at 7:34 am

    that library doesn’t solve the problem with the version

  881. 886. wow gold on November 5th, 2009 at 7:35 am

    SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu.

  882. [...] Demo Visit [...]

  883. 888. jQuery menu « Open Source on November 7th, 2009 at 9:52 pm

    [...] [...]

  884. 889. jQuery plugins | blogmw on November 10th, 2009 at 1:42 am

    [...] download i dokumentacja [...]

  885. [...] 2. Lava Lamp Menu Library: jQuery Source: http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/ [...]

  886. 892. Crossfit Dixie | J Man Design Group on November 11th, 2009 at 4:18 am

    [...] so Wordpress was used in this instance in its most simplistic and original approach.We used jQuery LavaLamp script for the navigation animation. It was very easy to implement and has a nice small footprint. [...]

  887. 893. Haisheng HU on November 11th, 2009 at 6:58 am

    It seems no work in IE7.
    IE6, IE8, FF are all okay.

  888. 894. propecia for sale on November 11th, 2009 at 8:56 am

    nifty effects – really nice!

  889. 895. flamingbanjo on November 12th, 2009 at 10:55 pm

    I really like this. However, I’d like to modify it so that the menu box defaulted to a position over the page that the user is currently on. I’m thinking of using a php variable to set the value of the li element to “selected” (or something like that), but I’m curious if you’ve addressed this issue already. Does the select box always have default to the far left?

  890. 896. Robi Santoso on November 13th, 2009 at 7:46 am

    Thanks for your post…
    I tried another version of lavalamp. but it’s make a conflict with my another jquery plugin..
    But…I tried your script for fixing my bug…And..It’s Fixed…

    Thank U very much…

  891. 897. Jquery Lovers on November 13th, 2009 at 5:05 pm

    I hope you could accept my request.Because I am a jquery lovers ,too .After I have found out about horizontal lavalamp .I don ‘t know how to make a vertical lavalamp.I was wondering if you could continue making vertical lavalamp for everybody who is just beginners as me ?

    I hope you could give me an opportunity to see your ability on the gmarwaha website. please.

  892. 898. Romuald on November 13th, 2009 at 6:43 pm

    I’m french, so i don’t speak english very well and i’m a jquery lover
    but i like this plugins, thank !!

  893. 899. film izle on November 14th, 2009 at 11:37 am
  894. 900. Curacao on November 14th, 2009 at 4:17 pm

    [quote]Step 3: The Javascript

    This is the easy part. [/quote]

    Fuck you!

  895. 901. huseyin on November 14th, 2009 at 7:50 pm

    good thanks my site http://www.merkezcity.com

  896. 902. 13 Javascript CSS Menus « VECTOR Tutorial on November 15th, 2009 at 11:36 pm

    [...] demo was suggested by one of our commentators Daniel Niquet: Another Context Menu 8 ) LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface [...]

  897. 903. Alphonse on November 16th, 2009 at 2:21 pm

    Thanks ! but… it’s doesn’t work with prototype’s library !!???

  898. 904. zahid on November 16th, 2009 at 11:46 pm

    i tried using this it was really simple but the links dont seems to work..however openning a window by right clicking and opening in new window works…is this the problem with this plugin

  899. 905. MysteryE on November 17th, 2009 at 4:15 am

    Yes, the links just don’t work when clicked… is it a bug? How to fix it?

    Anyway, I like the way it work though…

  900. 906. 240??jQuery?????? on November 18th, 2009 at 3:02 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  901. 907. Chris on November 19th, 2009 at 2:52 am

    I have incorporated the lava lamp i downloaded from here into my site in dreamweaver. I set the links and everything, but when i test it in a browser and click on one of the buttons, it doesn’t go to the page i pointed it to. Help?

  902. 908. firma rehberi on November 19th, 2009 at 9:21 am

    Thank you very much, my job was very useful

  903. 909. Mark Teekman on November 19th, 2009 at 11:05 am

    Hi guys,

    First of all, great tutorial! I learned allot from it and ended up with a great plug-in for my sites.

    Then for all of you having problems with the links not working and after clicking letting the effect stay on the one you just clicked on:

    @ Linking

    If you use the code directly from the download you end up with the following call function in your HTML:

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return false;
    }
    });
    });

    If you remove the the following part, linking should work again:

    click: function(event, menuItem) {
    return false;
    }

    @ Current one

    Just include class=”current” on the li you are currently on, like this:

    Plant a tree

    Well, I hope it helped, good luck all!

    -Mark

  904. 910. Sue on November 19th, 2009 at 11:21 am

    How do you set a css properties for ‘current’?
    I want to change the font color as well for the preselected link.
    Tried adding this -> .current {color: #555555}
    but does not work. Any ideas?

  905. 911. Mark Teekman on November 19th, 2009 at 11:43 am

    Hi Seu,

    Do you mean you want to change the color on hover or when clicked on, being the current link? Because from what I see, the current class is created on instant from the Lavalamp jQuery script, so that way you can’t use it in CSS if I’m correct.

    -Mark

  906. 912. Sue on November 19th, 2009 at 1:04 pm

    Yes, I notice that the .current class is not in css file but contained within the .js file. I wonder if its possible to insert an inline styling there then?

  907. [...] 27. LavaLamp Menu [...]

  908. 914. 13 Awesome Javascript CSS Menus | Theme Center on November 19th, 2009 at 4:06 pm

    [...] demo was suggested by one of our commentators Daniel Niquet: Another Context Menu 8 ) LavaLamp jQuery Sliding Menu It is a jQuery sliding nifty effect menu with light weight code and extra two more interface styles. [...]

  909. 915. tim on November 19th, 2009 at 7:58 pm

    Navigation dosent work. can i find fully fucktionall package?
    or how to fix it?

  910. 916. Mark Teekman on November 19th, 2009 at 8:53 pm

    @ Sue: I don’t really know how it should work, but I know a Dutch site that also uses this technique. And whilst you hover over the other buttons, the current one gets underlined. I did not yet figure out how they do it, but I will let it know if I understand it!

    @ Tim: Read the comment above to make your navigation work!

    -Mark

  911. [...] demo visit [...]

  912. 918. Cy on November 20th, 2009 at 4:17 am

    Hey Ganeshji,

    Great work & also technical support :)

    I checked all the answers and couldn’t find the solution for this:
    How can I display the CURRENT selection only when my mouse is ON the menu? In other words, I need to be able to hide the selected item by default, and show the menu non-selected.

    Thanks.
    Cy

  913. 919. Cy on November 20th, 2009 at 4:57 am

    Yes! I found what I wanted, that option is enabled in a newer version I haven’t seen before.

    Here’s the feature I needed, in case anyone else was looking for the same > http://nixboxdesigns.com/demos/jquery-lavalamp-demos.html

    Have a nice day :)

  914. 920. tim on November 20th, 2009 at 9:41 am

    Hey
    my links dosent work.. and i cant find solution for it.
    Can somebody but working demo code or even better download package some place!

  915. 921. John Fox on November 23rd, 2009 at 2:29 am

    Is there a way to evenly space out the navigation links? Does jQuery have an easy way to do this?

  916. 922. zahid on November 23rd, 2009 at 8:34 am

    Hi i was using lavalamp and it was working fine….but when i started using overlay form the firebug started to give an error “.lavalamp is not a function” .The code which i used is given below :

    $(function() {

    // if the function argument is given to overlay,
    // it is assumed to be the onBeforeLoad event listener
    $(“a[rel]“).overlay({

    expose: ‘darkred’,
    effect: ‘apple’,

    onBeforeLoad: function() {

    // grab wrapper element inside content
    var wrap = this.getContent().find(“.contentWrap”);

    // load the page specified in the trigger
    wrap.load(this.getTrigger().attr(“href”));
    }

    });
    $(“#1″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return true;
    }
    });
    });

    Please help me out anyone

  917. 923. Great Collection of jQuery Plugins | Webdesigner Lab on November 23rd, 2009 at 10:52 am

    [...] LavaLamp [...]

  918. 924. dsf on November 24th, 2009 at 6:24 am
  919. 925. ???? » 200+ jQuery?? on November 24th, 2009 at 3:06 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  920. 926. 26 jQuery Plugins for Superb Navigation | WebDesignFan.com on November 25th, 2009 at 1:45 pm

    [...] 6. LavaLamp for jQuery lovers! [...]

  921. 927. Michel on November 25th, 2009 at 8:53 pm

    There is a bug When using jquery 1.3.2 AND the returnDelay method..

    You will get an JS error, after the timeout.

    U can fix this with the code below:

    Replace

    function move(el) {
    if (!el) el = ce;

    WITH

    function move(el) {
    if (!el || !isNaN(el)) el = ce;

  922. 928. Gilian on November 26th, 2009 at 6:34 am

    Hi does anyone know if you can modify this code so an image icon will hover/slide above the menu as an indicator? I have some javascript in a hidden sub menu already – not sure if this is why I’m having trouble. Any help would be very much appreciated.

  923. 929. kelly on November 29th, 2009 at 7:36 am

    Hey, i’m implamenting this on Blogger. It works fine but it doesn’t set the current list item correctly.
    NFL jerseys

  924. 930. chris on November 29th, 2009 at 4:50 pm

    Hi- I’m trying to have the current page highlighted using PHP. I’m pretty clueless when it comes to SSI- I know enough to use header.php and footer.php.

    My lavalamp menu is in the header.php file:







    How/Where/What do I need to be able to have the current page selected in the menu when I am using php?

    Here’s the site:
    http://www.prodentite.com

    Thanks!

  925. 931. chris on November 29th, 2009 at 4:51 pm

    Hi- I’m trying to have the current page highlighted using PHP. I’m pretty clueless when it comes to SSI- I know enough to use header.php and footer.php.

    My lavalamp menu is in the header.php file:







    How/Where/What do I need to be able to have the current page selected in the menu when I am using php?

    Here’s the site:
    http://www.prodentite.com

    Thanks!

  926. 932. Adamou Toune Abarchi on December 4th, 2009 at 8:44 am

    Thank you for this nice menu. This will make our work easier.

  927. 933. Matt Mahar on December 4th, 2009 at 9:58 pm

    Wow, this is very “flash like” but totally simple for those familiar with Jquery. Great for learning web designer such as myself. Thank you and your inspiration.

  928. 934. ???? LavaLamp for jQuery | GoreyBlog on December 5th, 2009 at 3:48 am

    [...] ???? LavaLamp for jQuery ???????????????LavaLamp for jQuery??????????????????????????????????????????????????? [...]

  929. 935. Inhaberschuldverschreibung on December 5th, 2009 at 5:09 pm

    Thanks . Works great.

  930. 936. Thor on December 5th, 2009 at 7:59 pm

    Hi and thanks for this great work.
    I start work with it and found one problem whith google chrome.
    It’s not a error or program mistake.
    In case you load new page Chrome load the page, and update it only partial. Means only parts that have changed. It don’t see the change with li class=”current”.
    So I reload the page, but the wrong menu is selected.
    Has someone any experience with?

    With actual Safary, IE 7-8, Firefox 3.5, Opera 10.10 it work fine.
    Only Google Chrome make this mistake.

  931. 937. Thor on December 6th, 2009 at 2:17 pm

    Oh it was my mistake. I have forgot to clean the cache.

    But still one Idea: what happen if I want to show the menu but none have to be active/current cause I am not on one of these pages?

  932. 938. Kang Sun on December 7th, 2009 at 6:00 am

    Good tutorial. However, the regular left-button click does not bring up the url under the button, you have to right-click on the button and choose open the url or open it on a new page or new tab. Is it normal by design or my browser has problem? I have tried Firefox and Internet Explorer. Help please!
    Thanks!
    – Kang

  933. 939. zack on December 8th, 2009 at 3:04 am

    I love the plug-in, thanks!

    However, how do I make it so that when a user clicks one of the highlighted links it actually reloads in the current browser window with a new .html page? I do this…

    ——
    click: function(event, menuItem) {
    if(menuItem.id == “resume”)
    {
    alert(“resume”);

    }
    ————————–
    get the alert box (for testing purposes), but I want a different .html file to load in the current browser window? I’m new to Javascript and this is quite annoying! Any help would be awesome!

  934. 940. raj on December 8th, 2009 at 9:07 am

    good work buddy., really appreciate ur work !! and thanks .. continue this …

  935. [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  936. 942. Emiel on December 8th, 2009 at 3:40 pm

    Hi,

    First great article, really helped me out a lot. I have one question though: I am currently using the “underline” variation and would very much like for the blue bar to be exactly as wide as the text (not as the li-item). But obviously the space between the menu items should remain.

    I cannot seem to get my CSS fixed the right way in order to achieve this. Could anyone help me out here?

    Thanks in advance!

  937. 943. Agnes on December 8th, 2009 at 10:46 pm

    Thanks for the great plugin!

    I’m having some problems with the css however – I wan’t to add extra space between the li elements and also some more padding, but when I do the ‘lava’ ends up slightly to the right and/or below the element (I’m using the lavalamp without images). Anyone who’s worked this out?

  938. 944. ??jquery???-juery????? - ??Flash????———??Flash on December 9th, 2009 at 2:53 am

    [...] Lava Lamp jQuery Menu. [...]

  939. 945. Malcom on December 9th, 2009 at 8:24 pm

    Looks nice, but the code isn’t efficient at all. :(

  940. [...] Lavalamp (Demo – Descarga) 2. MenuMatic (Demo – Descarga) 3. Slick Animated Menu (Demo – [...]

  941. 947. phpvnn on December 11th, 2009 at 5:48 am

    thanks :D

  942. [...] [...]

  943. [...] LavaLamp for jQuery LoversA “Lava Lamp” hover animation effect on a list-based navigation bar, written for jQuery. [...]

  944. 950. Styling HTML Lists with CSS: Techniques and Resources on December 11th, 2009 at 11:55 am

    [...] LavaLamp for jQuery LoversA “Lava Lamp” hover animation effect on a list-based navigation bar, written for jQuery. [...]

  945. [...] LavaLamp for jQuery LoversA “Lava Lamp” hover animation effect on a list-based navigation bar, written for jQuery. [...]

  946. [...] LavaLamp for jQuery LoversA “Lava Lamp” hover animation effect on a list-based navigation bar, written for jQuery. [...]

  947. [...] LavaLamp for jQuery LoversA “Lava Lamp” hover animation effect on a list-based navigation bar, written for jQuery. [...]

  948. [...] LavaLamp for jQuery LoversA “Lava Lamp” hover animation effect on a list-based navigation bar, written for jQuery. [...]

  949. [...] LavaLamp for jQuery LoversA “Lava Lamp” hover animation effect on a list-based navigation bar, written for jQuery. [...]

  950. [...] The Lava Lamp Effect [...]

  951. 957. Clay on December 15th, 2009 at 6:32 pm

    This is really cool. I am just having one problem. When a page loads, initially the current menu item only shows half of the background of the current li. Once I hover over the current li it stretches out to normal (or the way it should be). I’ve only added the menu to one page as I am in the middle of constructing the site but you can see what I have done here. http://www.samclaytondigital.com/about.htm Any help would be appreciated.

  952. 958. Clay on December 15th, 2009 at 6:33 pm

    BTW – I read through just about every comment and unless I missed it, I couldn’t find a solution.

    Thanks again.

  953. 959. Clay on December 15th, 2009 at 7:05 pm

    Just a couple of more notes about the problem….

    1.)When I preview the page locally it appears fine. It’s only when the page has been uploaded to the remote server that the issue appears.

    2.)Once you browser has cached the page. When you return to it later, the current li background appears correctly. If you clear your cache and then load the page again, the issue is back.

    3.)The problem persists in IE and FF3.*

  954. 960. ???? ????? ???????? ? ????? ??????? on December 15th, 2009 at 7:10 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  955. 961. Clay on December 15th, 2009 at 10:16 pm

    RE: Comments 1107, 1008, 1009

    The problem seems to occur when I replace the anchor text for the links with transparent .png’s. When I use text links the lava lamp menu works great.

    Any idea how to use transparent .png’s for the anchors for the links and still have this work? I would like to use a non standard font with a drop shadow and I need to use transparent .png’s to do so.

    Thanks again!

  956. 962. George on December 16th, 2009 at 2:42 am

    Brilliant, I love it, thanks very much for sharing.

  957. 963. Film izle on December 16th, 2009 at 9:53 am

    Thanks Oldu Sayende siteme beklerim

  958. [...] LavaLamp for jQuery Lovers A “Lava Lamp” hover animation effect on a list-based navigation bar, written for jQuery. [...]

  959. 965. Achilles on December 17th, 2009 at 7:26 am

    I’m having a problem.
    So I moved things around a bit (Like, font color and font size), but now the links dont want to work. I noticed that in the sample you prove in this website, the links ALSO dont work. The links ALSO dont work on the Demos? The mouse changes to click a link, but when I click is like if I had never clicked it.

    Please reply to me at my provided E-mail. Please use following subject title: “LavaLamp Site”

    thanks sooo much in advice. Your gonna get good reviews if i get my help :)

  960. 966. JorG on December 17th, 2009 at 6:58 pm

    the clicks doesn’t work!!! the menu have something wrong whit the code, please someone review it and post the solution, anyway the menu its great but it’s a shame that isn’t useful

  961. [...] ???? ???? VN:F [1.7.8_1020]please wait…Rating: 0.0/5 (0 votes cast)AKPC_IDS += "358,";Popularity: unranked [?] [...]

  962. 968. JorG on December 17th, 2009 at 10:07 pm

    For everybody: I have been trying to fix the problem of the links (because doesn’t work) but i can’t find the problem in the code…

    But the good news is tha i found another version that it works :D

    Look here: http://www.queness.com/post/530/simple-lava-lamp-menu-tutorial-with-jquery

    I tried that and it works!!!

  963. 969. LavaLamp jQuery Sliding Menu | cssJuice on December 18th, 2009 at 2:38 pm

    [...] LavaLamp is a latest release jQuery Javascript menu based on the original design of fancy menu by Guillermo Rauch. It is a Web 2.0 style smooth sliding nifty effect menu with light weight code and extra two more interface styles. You can free download the full source code file here. Besides last month we had a popular roundup of CSS based navigation menu, check it out for further reference. [...]

  964. 970. Dream of space » ???????LavaLamp?? on December 20th, 2009 at 5:48 pm

    [...] you wanna English tutorial, please visit LavaLamp for jQuery Lovers. ??: WordPress ??: jQuery, LavaLamp, mg12 ??WordPress [...]

  965. 971. ooty on December 21st, 2009 at 8:00 am

    its nice. jquery is very power full

  966. 972. EMY on December 21st, 2009 at 5:39 pm

    cool script! thanks a lot!

  967. 973. Omoba on December 21st, 2009 at 6:40 pm

    Its so so cooooooooooooooooooooooooooooooooooooool

  968. 974. Kevin on December 22nd, 2009 at 7:03 pm

    Dude, AWESOME! thanks for this

    -Question tho with the links tho. When you click on the link the link should stay highlighted with the rollover image. Im working on ASP page that calls from a default template page with dynamic links. How do I make the rollover stay and not go back to the home page(default.aspx) each time?

  969. 975. Reklam on December 22nd, 2009 at 11:06 pm

    Thanks Administrators

  970. 976. Islands Yurtd??? E?itim on December 23rd, 2009 at 9:28 am

    thanks

  971. 977. ISlands Yurtdisi Egitim on December 23rd, 2009 at 9:30 am

    thanks..

  972. 978. En iyi 240 adet JQuery Uygulamas? « ABDULLAH TURHAN on December 24th, 2009 at 11:39 am

    [...] Lava Lamp jQuery Menu. [...]

  973. 979. En iyi 240 adet JQuery Uygulamas? « ABDULLAH TURHAN on December 24th, 2009 at 11:39 am

    [...] Lava Lamp jQuery Menu. [...]

  974. 980. Remco on December 24th, 2009 at 12:37 pm

    Very nice, very simple. Thanks mate!

  975. 981. En iyi 240 adet JQuery Uygulamas? « ABDULLAH TURHAN on December 25th, 2009 at 11:59 am

    [...] Lava Lamp jQuery Menu. [...]

  976. [...] LavaLamp for jQuery Lovers [...]

  977. 983. prabash on December 26th, 2009 at 7:33 am

    thanx 4 ur kindness. But links are not working…………..

  978. 984. vladmir on December 27th, 2009 at 12:21 pm

    When i click on the hyper link its not working how to solve that problem?

  979. 985. 14???????????? - ??? on December 30th, 2009 at 1:39 am

    [...] Lavalamp for jQuery Lovers | ?? [...]

  980. 987. 90+ Useful jQuery Plugins for Designers and Developers on January 1st, 2010 at 2:09 pm

    [...] LavaLamp Navigation menu with a ‘lava’ effect. [...]

  981. 988. helloworlder on January 1st, 2010 at 4:03 pm

    You’re awesome, that’s all I can say :-)

  982. [...] LavaLamp Navigation menu with a ‘lava’ effect. [...]

  983. [...] LavaLamp for JQuery Lovers es un código de JavaScript implementando la librería JQuery con la cual podemos hacer un menú al estilo de Flash. [...]

  984. 991. Ashley on January 2nd, 2010 at 12:46 am

    Hello,
    I love the simplicity of this plugin but am having trouble incorporating it into my tabbed menu. I have it loading & expanding ot size but it will not move. Please feel free to contact me for any info! Any help is great.
    Thanks very much!

  985. [...] LavaLamp Navigation menu with a ‘lava’ effect. [...]

  986. 993. Tutorial | Programming Blog on January 2nd, 2010 at 1:25 pm

    [...] LavaLamp Navigation menu with a ‘lava’ effect. [...]

  987. 994. 240+ ???????? ? Jquery ot Jurgen Koller-? - ???? ??????? on January 2nd, 2010 at 10:53 pm

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  988. 995. ???? » 13????Javascript?CSS??? on January 4th, 2010 at 4:58 am

    [...] ??? Context Menu Functionality ???Another Context Menu 8 ) LavaLamp jQuery ???? [...]

  989. 996. lin on January 4th, 2010 at 4:36 pm

    i love your tutorial…but i wonder why your demo worked at ie and firefox. but when i integrated at my site, it looks horrible in internet explorer 8… any advice? or am i just plain stup?

  990. 997. lush on January 4th, 2010 at 6:11 pm

    Links are not working, what about it?
    thanks!! :)

  991. 998. lush on January 4th, 2010 at 6:39 pm

    as Suleyman Vardar said, links work with this:

    —-
    Hi;

    If you want the script to go to a link when you click one item,
    change this line
    $li.click(function(e){setCurr(this);return o.click.apply(this,[e,this])});

    with :
    $li.click(function(e){setCurr(this);/*return o.click.apply(this,[e,this])*/});

    OR if you dont wanna comment anymore and wont require:
    $li.click(function(e){setCurr(this);});

    Im using Minifies version.

    Other version’s line number to be commented is 75th…

    Good plugin by the way.
    Thanks
    —-

    for the current page link, just add this class to the

    great!

  992. [...] Lava Lamp – Lava Lamp by ganesh is yet anather jquery menu, with cool sliding effect in the background, [...]

  993. 1000. Bjarke on January 7th, 2010 at 11:48 pm

    How can I make a dropdown feature for this amazing menu? Is it possible???

  994. [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  995. 1002. Pretty Miffed on January 8th, 2010 at 8:57 pm

    Please in future tutorials make sure that it’s possible to get them working by cutting and pasting the content into an empty page. I’ve spent 2 hours trying to get this working and it clearly doesn’t.

  996. 1003. escri2 on January 8th, 2010 at 10:48 pm

    It works perfectly.

    you must copy all files to root directory
    (http://www.gmarwaha.com/jquery/lavalamp/zip/lavalamp-0.2.0.zip),
    and modify jquery.lavalamp.min.js with the next sentence:

    Locate this:
    $li.click(function(e){setCurr(this);return o.click.apply(this,[e,this])});

    Replace with:
    $li.click(function(e){setCurr(this);});

    Works OK!! in page empty and page with a lot of table and td’s

  997. 1004. Machiel on January 11th, 2010 at 11:26 am

    Hi,
    I love this script, but i keep having one problem with it.
    In IE6 and IE7 the background starts on the left of the monitor screen instead of left of the , probably has to do with the positioning (absolute anyone?). Is there a workaround?

    Cheers

  998. 1005. Glitch on January 13th, 2010 at 7:49 am

    I seem to have a minor, inconsistent problem with the lavalamp. Occasionally when I refresh the page or first go to the site, the lavalamp is shifted and covers almost the entire selection area, slightly offset (http://www.creativefrequencies.com/temp/Picture%202.png).

    When I move my mouse over the selection area, the lavalamp “wakes up” and starts behaving like it ought to (http://www.creativefrequencies.com/temp/Picture%201.png)

    Sorry for the rough graphic trims – hope you get the idea.

    Any suggestions as to which code I should be looking at? I’ve been poking around CSS for quite some time now, but can’t seem to figure out what it’s making it do this – especially since it’s inconsistent.

    Thanks for any help!

  999. 1006. 240 ???????????? ???????? ??? jQuery | Soul DS on January 14th, 2010 at 8:43 am

    [...] Lava Lamp jQuery Menu [...]

  1000. 1007. 240 ???????????? ???????? ??? jQuery | Soul DS on January 14th, 2010 at 8:43 am

    [...] Lava Lamp jQuery Menu [...]

  1001. [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1002. 1009. ats on January 14th, 2010 at 11:59 pm

    Really cool. Having problems on clicking the link. Doesn’t do anything if I update the list href. When I hover over, it shows the correct link. Ideas?

  1003. 1010. RedKoala on January 15th, 2010 at 1:19 pm

    Hey

    How to make “current” menu with your plugin when you use wordpress?
    I tried few things, but no luck.

    Thanks!

  1004. 1011. jdsans on January 15th, 2010 at 10:51 pm

    beautiful

  1005. 1012. Jeremy on January 15th, 2010 at 11:45 pm

    Hi Ganeshji,

    Just wondering if you have worked or are working on a solution to keep the image state active when on a different page. We of course do not want to put the current class on all different pages.

    If someone can provide a php script for me to make this work it would be greatly appreciated…i’ve gone through all the comments and noticed a few people got it working on the server side.

    Thanks for the amazing plugin!

  1006. 1013. Norman on January 16th, 2010 at 12:52 pm

    for who want to initialize the menu with specified position (for example, the highlighted menu item is the second item instead of the first one) .. do the following:

    1. extend the function paramters and add itemNumber, make the default item is 0 (first menu item)

    o = $.extend({ fx: “linear”, speed: 500, itemNumber: 0, click: function(){} }, o || {});

    2. modify the function after that to make use of itemNumber

    $li = $(“li”, this), curr = $(“li.current”, this)[0] || $($li[o.itemNumber]).addClass(“current”)[0];

    and now call the lavaLamp like:
    .lavaLamp({ fx: “backout”, speed: 700, itemNumber: 1});

    this will make the second li item is highlited

  1007. 1014. Mamo Singh on January 17th, 2010 at 12:57 am

    SOLUTION TO DYNAMIC CURRENT PAGE LINK

    Hi Peeps I don’t know if this solution has been posted already but I have found a solution to the most common question here regarding the current link. The problem is by adding a ‘current’ class to the you lose the ability to have the navigation links as an include.

    Heres the solution:

    Right at the top of eache of your php pages add this bit of code:

    ‘Home’ will be reference to the homepage therefore replace ‘Home’ with the name of the otherpages respectively.

    With this technique you can still have all the navigation in one include.

    You put each in a chunk of code which tells the browser if we are on ‘home’ then use . Look at the example below.

    <?php
    if ($thisPage=='home')
    {echo 'Home‘;}
    else
    {echo ‘Home‘;}?>

    if ($thisPage==’about’)
    {echo ‘About‘;}
    else
    {echo ‘About‘;}?>

    Big hand to the developer! If if this is unclear I don’t mind going through it step by step as I know how frustrating it can be – http://www.blueprintdesigners.co.uk

  1008. 1015. Jeremy on January 17th, 2010 at 8:39 pm

    Thanks for the reply MAMO!

    For Wordpress users you can find multiple solutions to highlighting the correct page here — http://codex.wordpress.org/Dynamic_Menu_Highlighting

  1009. 1016. WETONG?? » jQuery?????? on January 19th, 2010 at 1:26 am

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  1010. 1017. Daniel on January 19th, 2010 at 4:02 pm

    LINKS DON’T WORK

    everything looks great apart from the fact that the pages don’t change.
    I have tried MAMO’s idea but this has failed.

    Any ideas??

  1011. 1018. woony on January 19th, 2010 at 9:05 pm

    In the demo you will find return:false in the jquery function. Remove this for the links to work.

  1012. 1019. Sage on January 20th, 2010 at 2:53 am

    Any plans to update this to work properly with jQuery 1.4? I tried it quickly and the hover effects stopped working. I just got things running, so haven’t had a chance to run through it yet.

  1013. 1020. 14????jQuery???????? « Dfey Creative Minds on January 20th, 2010 at 11:55 am

    [...] Lavalamp for jQuery Lovers | ?? [...]

  1014. 1021. Netvitrinim on January 20th, 2010 at 5:03 pm

    thansk for you admin

  1015. 1022. Cesar on January 20th, 2010 at 8:12 pm

    I have the same problems of ats and Daniel (messages 1013 and 1023 respectively).
    The links worked only in IE8.

  1016. 1023. vendetta on January 20th, 2010 at 9:09 pm

    for who want to initialize the menu with specified position (for example, the highlighted menu item is the second item instead of the first one) .. do the following:
    http://sanalhayat.org/
    1. extend the function paramters and add itemNumber, make the default item is 0 (first menu item)

    o = $.extend({ fx: “linear”, speed: 500, itemNumber: 0, click: function(){} }, o || {});

    2. modify the function after that to make use of itemNumber

    $li = $(”li”, this), curr = $(”li.current”, this)[0] || $($li[o.itemNumber]).addClass(”current”)[0];

    and now call the lavaLamp like:
    .lavaLamp({ fx: “backout”, speed: 700, itemNumber: 1});

    this will make the second li item is highlited
    http://sanalhayat.org/

  1017. 1024. Kenny on January 21st, 2010 at 10:41 am

    Any thought on how to use multiple images? I’d like to have the same effect you use on this site, the centered image. But also an image on either sides of the centered one. In other words, I’d like the menu to look like a square block with a pointer at the bottom center of that square. Any ideas?

  1018. 1025. Cheryl on January 21st, 2010 at 3:03 pm

    Everything works except when i navigate my mouse to a submenu item, the lavalamp background image flies right back to the “home” position and is much wider than it should be. How can I get the hover image to stay on the menu item while I’m hovering over the submenu items?

    Thank you!!

  1019. 1026. srvishnukumar on January 21st, 2010 at 4:27 pm

    Hi Ganesh,

    This is really nice one… how can i implement this query ? am using asp.net… if possible anybody tell me plz

    thanks by,
    Vishnukumar SR

  1020. [...] jQuery Lavalamp for jQuery lovers(and everybody else): Otro efecto para los menús  de una web con estilo. [...]

  1021. 1028. mauro on January 21st, 2010 at 6:49 pm

    Hola (hi):
    i need then menu change to down not to left or right pleas

    sorry for my english!!

    thanks!!

  1022. 1029. jamie on January 24th, 2010 at 12:43 am

    Awesome. Just what I was looking for.

  1023. 1030. me on January 24th, 2010 at 10:22 am

    first of all the script it’s very nice. i have a problem, it enters in conflict with another script in java also – lightbox – and it cancels it(lightbox) in totaly. is there a way that i can make them work at the same time?

  1024. 1031. George Rosar on January 24th, 2010 at 11:54 am

    AJAX support
    I figured out how to get it working with Ajax requests…
    make the changes to the lavalamp javascript file:

    o = $.extend({ fx: “linear”, speed: 500, itemNumber: 0, click: function(){} }, o || {});

    $li = $(“li”, this), curr = $(“li.current”, this)[0] || $($li[o.itemNumber]).addClass(“current”)[0];

    Then load the lavalamp in Javascript:
    $(function() { $(“.lavaLamp”).lavaLamp({ fx: “backout”, speed: 700, itemNumber: 0 })});

    This sets the default itemNumber to 0

    But here’s the problem… When you want to call an other lavalamp with a new itemNumber it leaves traces of the previous call behind to fix this is easy, assume that you have already determined which itemNumber should be, make a function that you call after linking like…

    function lavalamp_move(newItem) {
    $(‘.back’).remove();
    $(“.lavaLamp”).lavaLamp({ fx: “backout”, speed: 700, itemNumber: newItem });
    }

    The switch and case (or array) statements for determining the itemNumber based on the page are up to you. I don’t currently have it working on the site that I’m linked in this post but it will be soon, so check back. You would just call it from your link handler with lavalamp_move(3);

    Replacing 3 with the proper number

  1025. [...] 11. Lava Lamp [...]

  1026. 1033. Duffydodo on January 25th, 2010 at 9:58 am

    Hi folks,

    this lavalamp plugin is really great, but I`ve got a problem which makes me crazy.
    You can see my test page under http://www.kuskus.de/lavalamp
    It all seems fine, but the links don`t function and as a non-programmer I bet that I made an essential fault, which I am not able to see.
    It would be so kind, if s.o. could get me a hint.
    THX alot in andvance
    Duffy from Germany

  1027. 1034. Duffydodo on January 25th, 2010 at 10:37 am

    aha, all tutorials concerning the lavalamp seem to be made for coders and not only poor webdesigners. So if you poor webdesigners got the same problem, change in the code below “return false” to “return true”. thats it.

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return true;
    }
    });
    });

    now the plugin starts to make me realy happy :-)

    Duffydodo

  1028. 1035. MorphList o LavaLamp per prototype « OnRails.it on January 25th, 2010 at 8:07 pm

    [...] usare il Lavalamp in uno dei nostri progetti, ma esistono due versioni una per il jQuery e una per le MooTools, peccato che io usi prototype (testato con Prototype JavaScript framework, [...]

  1029. 1036. Jason on January 26th, 2010 at 1:17 am

    Thank you for the wonderful plugin!

    Also thank you Duffydodo. I spent ages looking through the Javascript code; didn’t think about even looking at the block of Javascript in my main page haha.

  1030. 1037. Menu en Jquery on January 26th, 2010 at 2:16 am

    [...] Este es uno de los mejorsitos, crea un efecto “slide” muy lindo. Lavamp [...]

  1031. 1038. ade on January 26th, 2010 at 6:39 pm

    Hi, tried to get this to work a while back. The effect worked great on a single page, but when I clicked from one page (say index.html with a menu item: HOME) to another page (say about.html with a menu item: ABOUT), bubble would show behind the HOME menu item on page load and not behind the ABOUT one.

    Am I missing something here?

    I’d like to get the bubble to show on page load behind ABOUT when I’m on about.html, HOME when on index.html etc.

  1032. 1039. ade on January 26th, 2010 at 6:41 pm

    Hi, I tried to get this to work a while back. The effect worked great on a single page, but when I clicked from one page (say index.html with a menu item: HOME) to another page (say about.html with a menu item: ABOUT), bubble would show behind the HOME menu item on page load and not behind the ABOUT one.

    Am I missing something here?

    I’d like to get the bubble to show on page load behind ABOUT when I’m on about.html, HOME when on index.html etc.

  1033. 1040. Jay on January 27th, 2010 at 12:31 am

    ade, what your trying to do is waht I wanted and I have it working, but it still adds the “.current” class to the first link. What you can do is code “.active” into the of the ACTIVE page so it becomes and then change “$li=$(“li”,this),curr=$(“li.current”,this)” in the minified JS file to “$li=$(“li”,this),curr=$(“li.active”,this)”

    the only problem is, is the .current still gets added to the home link.. and i dont know how to remove it yet.. does any1 know how to get this working the correct way? or how to remove the current link from the first li?

  1034. 1041. 90 hilfreiche jQuery Plugins für Webdesigner | Photoclinique on January 27th, 2010 at 6:46 am

    [...] LavaLamp Navigation menu with a ‘lava’ effect. [...]

  1035. 1042. ade on January 28th, 2010 at 4:09 am

    Hi Jay,

    I’m glad you understood what I was on about. That sounds like a way of doing it, but I’m sure there must be something simpler that we’re probably both missing.

    Surly this plugin must be meant to do what we’re wanting it too already, I think everyone using it would want it to behave like this.

    Can anyone out there help? :o )

  1036. 1043. CatherinqL31 on January 28th, 2010 at 5:02 am

    The the easiest way to determine the quality of the custom thesis writing services was to order some the hottest mini dissertation about this good post from the dissertations writing services.

  1037. 1044. ac?göl fm on January 28th, 2010 at 6:58 pm

    ac?gölden yay?n yapan ve ?u anda tüm dünyay? kasip kavuran bir radyo ac?göl fm herkes davetlimdir.

  1038. 1045. acigol fm on January 28th, 2010 at 6:59 pm

    acigol fm acigolfm acigol fm acigolfm acigol fm acigolfm acigol fm acigolfm

  1039. 1046. Ken on January 28th, 2010 at 10:16 pm

    Hi,

    Possibly stupid question, but -
    will jCarousel Lite work in wordpress selfhosted?

    Thanks

  1040. 1047. jQuery?? | DesignStudio-50M?? on January 29th, 2010 at 3:27 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1041. 1048. Lava Lamp style Menu using jQuery « Harmeet's Design Blog on January 29th, 2010 at 5:10 am

    [...] using jQuery Very fancy style of menu design using jQuery. Gives your menu a feel like it's a Lava Lamp. Very well explained and easy to integrate [...]

  1042. 1049. Medyum on January 29th, 2010 at 8:16 am

    thanks admin

  1043. 1050. halil on January 29th, 2010 at 11:19 am

    this is very good. thanks

  1044. 1051. Jquery ile haz?rlanm?? men?ler - Webmaster Forumu on February 1st, 2010 at 2:15 am

    [...] [...]

  1045. 1052. Kamlesh wagh on February 1st, 2010 at 9:02 am

    hi friend,

    i am using lavalamp menu in my project, i am giving links to menus but when i am go to “about us” page from “home” page the menu selection box is appearing on “home” link, plz gaid me how can i appear that on “about us” menu in “about us” page.

    thanks in advance
    plz reply…..

    Regards,
    Kamlesh Wagh
    Nashik, Maharashtra
    India

  1046. 1053. Kamlesh wagh on February 1st, 2010 at 9:02 am

    hi friend,

    i am using lavalamp menu in my project, i am giving links to menus but when i am go to “about us” page from “home” page the menu selection box is appearing on “home” link, plz gaid me how can i appear that on “about us” menu in “about us” page.

    thanks in advance
    plz reply…..

    Regards,
    Kamlesh Wagh
    Nashik, Maharashtra
    India

  1047. 1054. Kamlesh wagh on February 1st, 2010 at 9:03 am

    hi friend,

    i am using lavalamp menu in my project, i am giving links to menus but when i am go to “about us” page from “home” page the menu selection box is appearing on “home” link, plz gaid me how can i appear that on “about us” menu in “about us” page.

    thanks in advance
    plz reply…..

    Regards,
    Kamlesh Wagh
    Nashik, Maharashtra
    India

  1048. 1055. Kamlesh wagh on February 1st, 2010 at 9:03 am

    hi friend,

    i am using lavalamp menu in my project, i am giving links to menus but when i am go to “about us” page from “home” page the menu selection box is appearing on “home” link, plz gaid me how can i appear that on “about us” menu in “about us” page.

    thanks in advance
    plz reply…..

    Regards,
    Kamlesh Wagh
    Nashik, Maharashtra
    India

  1049. 1056. Kamlesh wagh on February 1st, 2010 at 9:03 am

    hi friend,

    i am using lavalamp menu in my project, i am giving links to menus but when i am go to “about us” page from “home” page the menu selection box is appearing on “home” link, plz gaid me how can i appear that on “about us” menu in “about us” page.

    thanks in advance
    plz reply…..

    Regards,
    Kamlesh Wagh
    Nashik, Maharashtra
    India

  1050. 1057. Kamlesh R. wagh on February 1st, 2010 at 9:26 am

    hi friend,

    i am using lavalamp menu in my project, i am giving links to menus but when i am go to “about us” page from “home” page the menu selection box is appearing on “home” link, plz gaid me how can i appear that on “about us” menu in “about us” page.

    thanks in advance
    plz reply…..

    Regards,
    Kamlesh Wagh
    Nashik, Maharashtra
    India

  1051. 1058. Jose Duenas on February 1st, 2010 at 4:48 pm

    If you are using Lavalamp menu in WordPress and you want to highligth the current page item, you just have to repalce all ocurrencies for “current” in jquery.lavalamp.js to “current_page_item”.

  1052. 1059. Junnel on February 4th, 2010 at 3:29 am

    May i know how to put a dropdown submenu in my main menu that will ease when i hover it.Please help. thanks…

  1053. 1061. RedKoala on February 5th, 2010 at 8:19 am

    Hey Ganesh
    Big thanks for this Plugin – Lavalamp looks awesome!
    I put it on my website http://www.redkoaladesign.pl

  1054. 1062. Top 15 Jquery CSS Animated Navigation Tutorials – Designzzz on February 5th, 2010 at 6:32 pm

    [...] Demo | Tutorial [...]

  1055. 1063. Theo on February 5th, 2010 at 9:55 pm

    Maybe a stupid question ? would this work on a vertical menu ?

    Thank you for sharing !

  1056. 1064. Spencer on February 6th, 2010 at 2:28 am

    Hey,

    I am wondering the same thing that others on this page have asked about keeping the current page highlighted when you click the link. If anyone has a solution I would really appreciate it. Thanks

    P.S You need a better spam filter!

  1057. 1065. chris on February 6th, 2010 at 6:11 pm

    hey thank you for this javascript it help me to release my new website
    you are so great here i have used it http://www.khoatu.de/

  1058. 1066. Creating a Fancy menu using CSS3 and jQuery | INSIC DESIGNS on February 8th, 2010 at 6:49 pm

    [...] the Mootools library. And later a jQuery version of this menu called lavalamp was made popular by Ganesh. This time I will show you how to achieve the same effect using the CSS3 new [...]

  1059. 1067. Raffaell on February 8th, 2010 at 7:27 pm

    Hi…

    I’m using ur scripts as a normal scripts (not for wp or joomla).
    Now the problem is how to fix the .current issue ?
    Everytime i click the links, the position is back to the first li.

    Too many comments already and make me dizzy to find the solution.

    Thanks,
    Raff

  1060. 1068. 20 Cool jQuery Tricks for Web Developers | DSpot Inc on February 10th, 2010 at 7:55 am

    [...] 11.) Build a LavaLamp Menu [...]

  1061. 1069. Things I Found Interesting Around February 9th | Chris Coyier on February 10th, 2010 at 3:52 pm

    [...] LavaLampI did a thing just like this on CSS-Tricks, this is the original [...]

  1062. 1070. Rawler on February 10th, 2010 at 7:16 pm

    is there a way to enable/disable menu sub-items in this control?

  1063. 1071. Erum on February 12th, 2010 at 9:34 am

    Love the plugin!!! Thanks!!!!

    Is there a way to set the default menu item?

    For example the selection stays put on Home. If I’m on the About us page, I’d like it to stay/start from the about us link.

    Is there a setting which will achieve this?

    Thanks!

  1064. 1072. Prateek on February 12th, 2010 at 7:50 pm

    Hey,
    Can you please explain your reply to comment #732.
    I am a newbie to all this jQuery and lavalamp. What I want is what John wants. I want lavalamp menu to be able to control tabs (be it coda slider or anything else).
    Please help me on how to do it.
    Also,
    I noticed that in your example if I increase number of characters in a menu item say “Riding an Elephant11111111111″ then after a fixed number of characters the lava.gif image that hovers BREAKS

  1065. 1073. Prateek on February 12th, 2010 at 8:09 pm

    I want something like this http://sinanyasar.com/blog/?p=80
    But just that I don’t understand the language this blog is written in and Google Translate isn’t giving any meaningful results

  1066. 1074. behi on February 12th, 2010 at 9:30 pm

    i want change default blue line from “home” to “Ride an elephant”.
    what i do??????

  1067. 1075. behi on February 12th, 2010 at 9:59 pm

    therefore, i will changed this menu work from left to right state, because “Home” in my language is at right side and “Ride an elephant” is at Left side.
    please help me…

  1068. 1076. egypt web designer on February 12th, 2010 at 11:59 pm

    wow, I tested it, and it work this is the first time to use a jquery menu

    thanks :-)

  1069. 1077. Danial on February 14th, 2010 at 1:07 am

    I’ve used it, its really good but i can’t use it with CSS Dock Menu Jquery together in the same website. i don’t know why but I’ve really tried it, does any one know how to fix it? let me know please. danial_comp@yahoo.com

  1070. 1078. Catherine Miller on February 14th, 2010 at 4:12 pm

    Your script is great and I love it, but I’m having trouble when I am using a custom font for the menu (@font-face). It works swimmingly in IE and Firefox on a Mac, but in Firefox 3.5 on a PC, the “current” hover state displays incorrectly until the menu is rolled over. I believe it is loading the default font first, placing the hover in the space where it thinks it belongs, then the TTF font finally loads and shifts the menu, so now the hover is in the wrong spot. I’ve tried putting in FOUT scripts, but they have the same result (even though a FOUT script will hide the default font from the browser until the custom font is loaded, the loading order problem is still the same). Is there anyway to delay the loading of the “li.back” class until after the custom font has loaded, or a way to redraw the page so that it knows that the text has changed? I’m tearing my hair out trying to make this work with the custom font before I give up and go back to a web font. Thank you for any help you can provide me!

  1071. 1079. Tushar on February 15th, 2010 at 6:41 pm

    thanx friends this is so amazing for my site
    Thanks Again lot………
    This will help me lot

  1072. 1080. Erum on February 16th, 2010 at 7:40 am

    If I try a link like this is in the menu:
    a href=#something
    it does not work if I’m using this plugin.

    Any workaround will be appreciated.

  1073. 1081. Erum on February 16th, 2010 at 7:49 am

    On second thoughts, none of the links work.

    I thought may be I had changed something. So I downloaded the plugin again and just added a link in your menu and it is not working.

    Nothing happens when I click on the menu link.

  1074. 1082. Fitiwizz on February 16th, 2010 at 9:05 am

    Hi, very nice plugin ;)

    I want to set the current object by clicking on another link in the page than the lavalamp link himself. How can I do that ?

    (i’m french, so sorry for my bad english xD)

    Thank’s you ;)

  1075. 1083. Roshan on February 16th, 2010 at 8:39 pm

    My links doesn’t works in your lavalamp menu. I inserted at but also not working. Is there another way?

  1076. 1084. timtam on February 16th, 2010 at 9:12 pm

    As per previous comments – It looks great but does not seem to hyperlink to other pages ?. I have tried it in 4 different browsers. Am i doing something wrong ?

  1077. 1085. ???? on February 17th, 2010 at 5:04 am

    My links doesn’t works in your laval

  1078. [...] Lava Lamp Menu Attached Files [...]

  1079. 1087. John on February 18th, 2010 at 10:26 am

    Same problem as many others – everything works fine except the actual hyperlinks do not work when clicked. however, right clicking and selecting ‘open in new tab’ etc, they do work. Any suggestions?

  1080. 1088. Leo on February 18th, 2010 at 10:42 am

    @John

    If you remove

    “,
    click: function(event, menuItem) {
    return false;
    }

    From the javascript the links will work, note to remove the comma after the speed value as well.

  1081. 1089. John on February 18th, 2010 at 12:43 pm

    @Leo

    Thank you so much, works perfectly now!

  1082. 1090. Macrostone Blog » Blog Archive » on February 18th, 2010 at 4:35 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1083. 1091. Jquery Kütüphanesi « Birebir Payla??m on February 18th, 2010 at 9:25 pm

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  1084. [...] 11.) Build a LavaLamp Menu [...]

  1085. 1093. m3 ds real on February 19th, 2010 at 12:24 pm

    Nice tips for HTML and Java!thanks dude…from read other’s problems, I got my answer!Thanks for this information.

  1086. 1094. Christian on February 19th, 2010 at 1:52 pm

    Is it possible to control Lavalamp with a second menu, too?
    I’ve got a Lavalamp menu on top of the website and a second menu in a sidebar, which conains the same entries. I want to update the curr variable with the value of the item I clicked in the side menu, but I don’t know how to do it.

    Thanks!

  1087. 1095. Christian on February 19th, 2010 at 2:17 pm

    … meanwhile I found it out myself :)

  1088. 1096. ????jQuery?? « ?? on February 20th, 2010 at 7:18 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1089. 1097. ?????240??jQuery?? « theU0net.Blog on February 22nd, 2010 at 1:24 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1090. 1098. BluechipJ on February 22nd, 2010 at 6:37 pm

    Is there any way to change the colours similar to MagicLine’s CSS trick, which unfortunately, doesn’t work with Internet Explorer.

    http://css-tricks.com/examples/MagicLine/

  1091. 1099. larry on February 22nd, 2010 at 11:41 pm

    hi,

    How do you modify this to handle down down sub menu off the list tag?

  1092. 1100. Tobias on February 23rd, 2010 at 1:25 pm

    Yes, this is what I’d like to know as well. At http://apycom.com/menus/1-white-smoke.html, they have multilevel menus, but AFAICS, the lavalamp effect (if present) spans the topmost level only.

  1093. 1101. Jose Gonzalez on February 23rd, 2010 at 5:09 pm

    Hi, awesome file! Only thing is that is that when you rollover a different link, the link or the color itself kinda disappears when you’re viewing it in internet explorer. I’ve tried to browse through some of your comments but I wasn’t quite successful.

    Any help would be greatly appreciated!

    http://www.virtualtouchmedia.com/v2, is the location of what I’m working on.

  1094. 1102. larry on February 23rd, 2010 at 8:56 pm

    hi,

    How would you create a sub menu or sub lists under any of the main lists in the nav?

  1095. 1103. smackdown izle on February 24th, 2010 at 8:44 am

    Thanks a lot for the wonderful information

  1096. [...] LavaLamp [...]

  1097. 1105. KURUMSAL WEB TASARIM RECEP YILDIZ on February 24th, 2010 at 1:16 pm

    This guy has some interesting suggestions as well:
    VEGA YAZILIM, RECEP YILDIZ, WEB TASARIM, e-ticaret,web design,SEO Arama Motoru Optimizasyonu
    Sleeping once in awhile is a good idea. ;D

  1098. 1106. Nishant on February 24th, 2010 at 2:20 pm

    Awesome… This is what I was looking… Here ends my search…

  1099. 1107. gunz online on February 24th, 2010 at 8:06 pm

    Thanks a lot for the wonderful information

  1100. 1108. Lowie on February 25th, 2010 at 2:31 pm

    I am using lavalamp in a schoolproject atm. But when i click on a menu-item, the page doesn’t load. So the lavalamp effect works, but the actual linking to pages doesn’t work. How can i fix this?

  1101. 1109. Jos on February 25th, 2010 at 5:20 pm

    Hey Lowie, I have the same problem.

  1102. 1110. Lowie on February 25th, 2010 at 5:29 pm

    Hey Jos,
    i just found what the problem was.

    $(function() {
    $(“#menu”).lavaLamp({
    fx: “backout”,
    speed: 800,
    click: function(event, menuItem) {
    return true;
    }
    });
    });

    I included this in my html. But the return false is causing the problem. So if you return a true in stead of a false it will work :)

  1103. 1111. jQuery??????240??? | TechTrack on February 25th, 2010 at 5:58 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1104. 1112. marc on February 26th, 2010 at 10:47 am

    Hello,

    I got trouble with implementation of this script i’m wondering maybe someone could help.

    So on my website i have using Jquery 1.4.1 and JGrowl plugin for notifications.

    When i include jquery.lavalamp.min.js and jquery.easing.min.js JGrowl popup stop working.

    I fond that Jgrowl stop after including this file jquery.easing.min.js

    I have no idea why… maybe someone could help ?

    Here You can download jgrowl

    http://plugins.jquery.com/node/11908

    Regards

  1105. 1113. 240 plugins jquery : AdaptBlog on February 27th, 2010 at 1:15 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1106. 1114. Jack Watling on February 28th, 2010 at 8:22 pm

    Hiya, i’am trying to get this working with a custom font, the underline bar is too big until i hover over an item then it is the correct size any ideas how to fix this?

    Cheers Jack

  1107. 1115. Akshay on March 1st, 2010 at 6:29 am

    Any way by which you can control the position of the active item on page load… will be specifically useful in menu systems which have a current_item sort of a class attached to the active item.

  1108. [...] LavaLamp for jQuery lovers! [...]

  1109. [...] 11.) Build a LavaLamp Menu [...]

  1110. 1118. Développement Web » LavaLamp Menu on March 2nd, 2010 at 11:33 pm

    [...] il est facilement configurable grâce à la feuille de styles qui est fournie dans le package. Catégorie: Plugins JQuery | Pas de [...]

  1111. 1119. Jquery?N??? - ??????-php?java??? on March 3rd, 2010 at 11:52 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1112. 1120. Lapinlove404 on March 3rd, 2010 at 3:53 pm

    Same problem as Jack Watling :

    I use a custom font in css using @font-face but it seems that the initial lavalamp bar width is set ‘before’ the font-face is applied, resulting in the bar being to wide until I hover another item.

    Any idea how to fix this ?

    Thanks

  1113. 1121. jquery??lavalamp????????? | web????—???? on March 5th, 2010 at 5:21 am

    [...] ???????demo???????????????????? [...]

  1114. 1122. Hopefor help on March 7th, 2010 at 9:37 pm

    Hi I really like this menu, thanx a lot, but have a big problem, I have now used 2 days to try to figure out.
    I have it installed on a blogspot site. It work well if the script are alone on the site , but if I have it together with a mootools script both of them will not work at the same time. The script I place last work well.
    I am not a script expert. Hope somebody can help me! :-)

  1115. 1123. lapinlove404 on March 8th, 2010 at 2:28 pm

    Ok, bug with custom font was fixed using $(window).load( function() { … } instead of $(function() { … }

  1116. 1124. indir on March 9th, 2010 at 12:59 am

    As User Interface developers, we know that one of the first widgets our visitors use is a “Menu”. Capturing their attention right there is something that we always strive for, and I guess LavaLamp is a step in that direction. Before you get bored with all this useless talk, let me get you started on integrating LavaLamp into your jQuery powered site.

  1117. 1125. forum on March 10th, 2010 at 11:48 am

    Thank you..

  1118. 1126. links nicht klickbar wegen Lavalamp on March 10th, 2010 at 12:36 pm

    [...] [...]

  1119. 1127. Pravin on March 10th, 2010 at 2:34 pm

    Hi,
    can this script is use with table structure. means can I use tr td instead of ul li.

    Thanks.

  1120. 1129. Hopefor help on March 10th, 2010 at 9:05 pm

    Hi I hope it is ok I ask again..I have cind of got a hang ut that I really want the lavalamp installed. As asked 2 days ago. I have trouble with jQuery and Mootools conflict. I can not get them work together.
    Anyone, any solution? I am not an script expert. Again thanks for the super cool script :)

  1121. 1130. Change IP address on March 11th, 2010 at 3:23 am

    The best tutorial.
    I know its post long time ago but really helps.
    Thanks again!

  1122. [...] 11.) Build a LavaLamp Menu [...]

  1123. 1132. andrei khmelev on March 13th, 2010 at 10:53 pm

    Thanks for the great effect with lavalamp. Unfortunately in IE8 it is not working. Did you experience problem in IE8?

  1124. 1133. luxury vacation rentals on March 14th, 2010 at 7:24 am

    This is too cute and cool. Shakedown 1979, cool kids never had the time.

  1125. 1134. Best JavaScript (jQuery) Powered Sites List « JSDaddy.com on March 14th, 2010 at 9:21 am

    [...] The jQuery LavaLamp navigation plugin is essentially a port from a Mootools which can be found at http://devthought.com/cssjavascript-true-power-fancy-menu/, however the jQuery version is available at http://gmarwaha.com/blog/?p=7 [...]

  1126. 1135. Con on March 14th, 2010 at 4:46 pm

    I can’t seem to get my links to work in any browsers. It’s almost 4am, need sleep I am sure this is an easy one. If I remove off one of the links then it works. So from this
    Services
    to this
    Services
    It’s still within the ul but not sure what it’s conflicting with, any help would be great.

  1127. 1136. Con on March 14th, 2010 at 4:50 pm

    Crap, didn’t realise that would happen :-)
    If I remove the li tags then the link works.

  1128. 1138. sohbet on March 15th, 2010 at 9:54 pm

    Hi,
    can this script is use with table structure. means can I use tr td instead of ul li.

    Thanks.

  1129. 1139. 25 JQuery Menus Ready For Download | Design your way on March 15th, 2010 at 10:47 pm

    [...] LavaLamp for jQuery lovers [...]

  1130. 1140. 25 JQuery Menus Ready For Download | Web Development News on March 16th, 2010 at 5:01 pm

    [...] LavaLamp for jQuery lovers [...]

  1131. 1141. 14????jQuery???????? - IETester on March 16th, 2010 at 11:46 pm

    [...] Lavalamp for jQuery Lovers | ?? [...]

  1132. 1142. Chirantan on March 17th, 2010 at 10:06 am

    Thank You so much for the real LAVA…
    It’s Looking Fantastic..

  1133. 1143. Rondua blog on March 18th, 2010 at 1:04 pm

    links for 2010-03-18…

    Common Queries Tree (tags: development webdev database mysql list tips queries) LavaLamp for jQuery lovers! | Ganesh (tags: webdev javascript j…

  1134. 1144. ??? » Blog Archive » jQuery???? on March 20th, 2010 at 9:13 am

    [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  1135. [...] Demo Visit [...]

  1136. 1146. sonia on March 24th, 2010 at 10:04 am

    I have a problem with the JQuery Lavalamp menu, so when i add another li for the list of menu, it not work, it work only with 4 li, what i want to say that only the first 4 li which appear in the menu, the fifth will not appear… It will be so nice if any one can help me, Excuse me for my bad english, i have a problem with the english language too, but i’m a lovers for jquery lavalamp menu :)

  1137. 1147. murugesan on March 25th, 2010 at 9:57 am

    $(function() {
    $(“#menu”).lavaLamp({
    fx: “backout”,
    speed: 800,
    click: function(event, menuItem) {
    return true;
    }
    });
    });
    This seems works but the current visited is not focused, its focused only first menu.. pls give me the solution

  1138. 1148. 99 ?????? ???????? ???? ??? ????? CSS ? jQuery | SHEBEKO.COM on March 25th, 2010 at 10:02 am

    [...] ???? «???? ?????» ?? jQuery | ???? ?????? [...]

  1139. 1149. murugesan on March 25th, 2010 at 10:06 am

    here is the css:

    .lavaLampNoImage
    {
    position: relative;
    height: 29px;
    width: 820px;
    background-color: gold;
    padding: 15px;
    margin: 10px 0;
    overflow: hidden;
    border: 1px solid gray;
    }
    .lavaLampNoImage li
    {
    float: left;
    list-style: none;
    }
    .lavaLampNoImage li.back
    {
    border: 1px solid #000;
    background-color: red;/*#e6e8ea;*/
    width: 9px;
    height: 30px;
    z-index: 8;
    position: absolute;
    }
    .lavaLampNoImage li a
    {
    font: bold 14px arial;
    text-decoration: none;
    color: #000;
    outline: none;
    text-align: center;
    top: 7px;
    /*text-transform: uppercase;*/
    letter-spacing: 0;
    z-index: 10;
    display: block;
    float: left;
    height: 30px;
    position: relative;
    overflow: hidden;
    margin: auto 10px;
    }
    .lavaLampNoImage li a:hover, .lavaLampNoImage li a:active, .lavaLampNoImage li a:visited
    {
    border: none;
    }

  1140. 1150. murugesan on March 25th, 2010 at 10:33 am

    Hi… When i click the each menu the visited menu should be focused, im using LavaLamp plugin..Please give me the solution..

  1141. 1151. Optik Tunal? on March 26th, 2010 at 12:52 pm

    Please give me the solution..

  1142. 1152. Videosee on March 26th, 2010 at 12:53 pm

    Thankss

  1143. 1153. Riju on March 27th, 2010 at 10:16 am

    Hi..the script is super….. but When i click the each menu the visited menu should be focused, im using LavaLamp plugin..Please give me the directions….

  1144. 1154. wholesale football jerseys on March 27th, 2010 at 11:38 am

    thank you,i like it!

  1145. 1155. hotfile search on March 27th, 2010 at 5:13 pm

    I will try this out.Looks cool.

  1146. 1156. Jake on March 28th, 2010 at 5:22 pm

    Hi,

    Can’t get the hyperlinks to work without taking out the attribute, can you help?

    Cheers,

    Jake

  1147. 1157. Jake on March 28th, 2010 at 5:23 pm

    Hi,

    Can’t get the hyperlinks to work without taking out the link attribute, can you help?

    Cheers,

    Jake

  1148. 1158. ??????? on March 29th, 2010 at 5:45 am

    I will try this out.Looks cool.

  1149. 1159. jquery ?????? | WebLab on March 29th, 2010 at 1:35 pm

    [...] LavaLamp for jQuery lovers! [...]

  1150. 1160. Yasar on March 29th, 2010 at 2:08 pm

    For the people who would like to use this example, do not forget to delete callback function, otherwise hyperlinks won’t work.

  1151. 1161. Ebook Device Reader on March 29th, 2010 at 4:54 pm

    Really wonderful information. Keep more posting..

  1152. 1162. Sushil on March 30th, 2010 at 1:31 pm

    Please let me no how to make horizontal menu like this.
    Please sent me Example Link.

    Please

    Regards
    SUSHIL KUMAR
    Delhi India

  1153. 1163. Prathap on March 30th, 2010 at 1:41 pm

    Hello, i have used this script into my website the effect works but links won’t working. You know what i mean when i click on a particular link eg:about it’s not showing the about page instead of that it sticks in the same old page. Am i doing something wrong!

  1154. 1164. Tomasz Bzymek on March 30th, 2010 at 2:54 pm

    Hey, there is a problem whit JS on Opera 10.51 (Windows). Try http://www.meethod.pl/provitao

  1155. 1165. G. on March 31st, 2010 at 10:21 am

    Can you point me where the callback function is. I face the same issue with the hyperlinks.

  1156. 1166. G on March 31st, 2010 at 10:47 am

    Found it, got it to work.

  1157. 1167. Silja on March 31st, 2010 at 2:25 pm

    Where can I find the callback function??

  1158. [...] LavaLamp for jQuery lovers! [...]

  1159. 1169. Silja on April 2nd, 2010 at 1:37 pm

    Why can’t anyone help me :( (

    I just don’t know where I have to delete the callback function so links will work!!!

    Please help me!!!!

  1160. 1170. gianlu on April 2nd, 2010 at 4:13 pm

    for everyone who does not work:
    in the file .html, at the baginning of the script:

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return true;
    }
    });
    });

    you must replace “returne false” with “return true”

    enjoy

    ps. I think the admin should write this rules directly to Article

    by
    Gianlu

  1161. 1171. Blake on April 2nd, 2010 at 4:14 pm

    I’m new to jquery but I really love this script, could someone who has it working please send me the script files, css and any other files that it needs to work? It would really help! Thanx

    Email: blakefinley94@gmail.com

  1162. 1172. Gianlu on April 2nd, 2010 at 4:52 pm

    I have resolved the problem relative to the Highlighting of the “button” in a current page.

    you must change the htm page in php page and in the ul list you must add this code:

    <li class="”> Home
    <li class="”>Pics
    <li class="”>events
    <li class="”>contacs

    enjoy :)

  1163. 1173. Gianlu on April 2nd, 2010 at 5:02 pm

    sorry…

    I re-write the code:

    ul class=”lavaLampWithImage” id=”1″>
    li class=”"> a href=”index.php?pagina=home”> Home
    li class=”"> a href=”index.php?pagina=tabelle”>Pics
    li class=”"> a href=”index.php?pagina=tabelle”>events
    li class=”"> a href=”index.php?pagina=contac”>Pics

    I have omit some caracter “<"

  1164. 1174. Gianlu on April 2nd, 2010 at 5:04 pm

    ul class=”lavaLampWithImage” id=”1″>
    <li class="”> a href=”index.php?pagina=home”> Home
    <li class="”> a href=”index.php?pagina=tabelle”>Pics</li

  1165. 1175. gianlu on April 2nd, 2010 at 5:06 pm

    argh!!!

    this blog hidden the ph p code!!

    <li class="”>Pics</li

    sorry for the spam , I ask the admin to fix the post

  1166. 1176. sesli chat on April 3rd, 2010 at 6:16 pm

    thanks

  1167. 1178. Maha Qd on April 5th, 2010 at 5:56 am

    ok i solved it in another simple way,
    just add class=”current” to the li of the current page
    ie.
    you are in home >>
    li class=”current”> a href=”home.html”> Home
    li> a href=”page1.html”>page1
    li> a href=”page2.html”>page2

  1168. 1179. Stefan Gustafsson on April 6th, 2010 at 9:02 pm

    Great script, thanks!

  1169. 1180. Andy on April 7th, 2010 at 8:08 pm

    @Maha Qd no need to change the code manually for the current page highlight to work, you can do that with a bit of jQuery

    var theUrl = window.location.href;
    $('a[href="'+ theUrl +'"]').parents('li').addClass('current');

    @Ganeshji Thank you for sharing this great script.

  1170. 1181. William Beley on April 8th, 2010 at 4:08 pm

    I’ve been scanning through your site. You have some nice posts on here, especially this one – I really liked it…nice post. Consider yourself bookmarked

  1171. 1182. Gavin on April 8th, 2010 at 6:24 pm

    You realize that this is not compliant with IE 7 and IE 8. It’s broken

  1172. 1183. mentesviajantes on April 9th, 2010 at 12:04 am

    very nice menu

  1173. 1184. patrick on April 9th, 2010 at 5:20 am

    Great script. Just one question though. Is there a way to change the color of the .current item back to the normal up state when hovering over another li?

    For example my lava.gif is green. The .current color is white, the ul background is white and the li’s are gray. When I hover over li’s the lava.gif moves away from the .current li so I’m left with white on white.

    Any ideas for a solution would be most gracious!

  1174. 1185. Fenris on April 9th, 2010 at 6:38 am

    TThank you for the great script

  1175. 1186. laxman on April 9th, 2010 at 10:17 am

    Hi..the script is superb and i like….. but When i click the each menu the visited menu should be focused, im using LavaLamp plugin..Please give me the directions…

    send it to my email: ylax26@gmail.com

  1176. 1187. Glen on April 9th, 2010 at 1:27 pm

    Thank you for a really great script.

    I have been able to ensure the current page stays highlighted by using

    Home

    I have to list the menu items on every page for this to work, whereas prior to using this script my menu was inserted on every page using

    If I make changes to the menu, I have to change every page, whereas before I only had to change masthead.html.

    Is there a way to include the menu from masthead.html, but have the current page highlighted on the menu?

    Andy said “no need to change the code manually for the current page highlight to work, you can do that with a bit of jQuery”

    var theUrl = window.location.href;
    $(‘a[href="'+ theUrl +'"]‘).parents(‘li’).addClass(‘current’);

    But where should this jQuery script be added?

    Thanks for any help.

  1177. 1188. 240 plugin h?u ích c?a JQuery - Vivui.net on April 10th, 2010 at 12:30 am

    [...] Lava Lamp jQuery Menu. [...]

  1178. 1189. Raffaell on April 10th, 2010 at 10:32 am

    Hello,
    Its very nice scripts btw but quite seems old.
    Now I have jquery easing 2 scripts to load, and its make your scripts conflict. Can you help on this ?

    Thanks
    Raff

  1179. 1190. Favola Web y Diseño on April 10th, 2010 at 12:35 pm

    ME parece muy bueno este menú lo voy a comenzar a usar en los nuevos sitios que haga.

    Muchas gracias!!

  1180. 1191. Rahul on April 10th, 2010 at 4:10 pm

    Will it work for Asp.net, I have tried effect is coming correctly but on click I am not redirecting to any page.
    Please help.

  1181. 1192. mozaik on April 10th, 2010 at 4:24 pm

    Tenks admin you power blog cammozaik.org

  1182. 1193. Sesli Chat on April 10th, 2010 at 10:45 pm

    Thank you for the information your provide.

  1183. 1194. Seth T. on April 11th, 2010 at 12:55 am

    Hi, I really like this script! I changed the CSS to match my site and it looks and works great!

    (http://www.trapscreato.com/test/lavalamp)

    There was one problem I’m experiencing… I looked through your code and couldn’t seem to find anywhere that you can specify which tag you can start on. Suggestions? Thanks in advance!

    Seth

  1184. 1195. Seth T. on April 11th, 2010 at 1:06 am

    Oh boy, do I feel dumb… Sorry, I didn’t see the other 1000 comments! I’ll just be quiet now…

  1185. 1196. ??1000?jquery????? | ????WEB?? on April 12th, 2010 at 10:43 am

    [...] LavaLamp [...]

  1186. 1197. jquery??,240? | ????WEB?? on April 12th, 2010 at 10:54 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1187. 1198. ?arküteri on April 12th, 2010 at 1:49 pm

    This seems works but the current visited is not focused, its focused only first menu.. pls give me the solution

  1188. 1199. Melinda on April 13th, 2010 at 7:30 am

    I have a question. When i link my work, they do not work!!!??

    WHY!!!!???

  1189. 1200. Sören on April 13th, 2010 at 10:13 am

    Hello

    I’m integreated the application into my website. Everything is working fine, even when I click on the links, they change the color, but clicking on them has no function. The links doesn’t work. Can somebody help me out, what I’m doing wrong? What is missing.

    I would like to use it, but how?

    Thanks in advance

  1190. 1201. Sören on April 13th, 2010 at 10:35 am

    A…

    I found it – “tue” instead of “false”
    Shouldn’t this stand above? I guess many people don’t know that.
    It’s not so clear..

  1191. 1202. Desirée on April 13th, 2010 at 2:27 pm

    Thx Sören, I’ve been looking for this hint, too. Thanks a lot!!!

  1192. 1203. travesti on April 13th, 2010 at 3:23 pm

    very good

  1193. 1204. Andres Garcia on April 13th, 2010 at 8:00 pm

    Finally Figured it all out! Thanks for sharing :)
    http://www.andresfgarcia.com/que/

  1194. 1205. Melinda on April 14th, 2010 at 12:43 am

    Sören where is this true instead of false???

  1195. 1206. Melinda on April 14th, 2010 at 12:47 am

    I found it!! To everyone who is having link problems..soloution…. on your main page where your code is, you will see this line: $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return false;
    }
    });
    });

    change the word false to true!

    It works….

    Simple as that

  1196. 1207. destan on April 14th, 2010 at 6:02 pm

    very good

  1197. 1208. bilge on April 14th, 2010 at 6:03 pm

    super thanks

  1198. 1209. art? dershanesi on April 15th, 2010 at 5:34 am

    very good thank you

  1199. 1210. shahil on April 15th, 2010 at 6:54 am

    when i click on any menu item and then when i come back to the same page by hitting back button, the square frame or the selection box is at the menu item which was clicked last. can we get it its original position?

  1200. 1211. sunglasses on April 15th, 2010 at 9:23 am

    Its really luky to find this blog,i fell so great!
    Jordans i love it,i support you always!
    the style always fashional!
    passenger by sunglasses 2010

  1201. 1212. tom on April 15th, 2010 at 9:48 am

    nice navigation plugin! ?

  1202. 1213. JoeH on April 15th, 2010 at 4:04 pm

    Anybody knows how to extend the bar width to auto? I changed the overflow property to auto but it did not work well.

  1203. 1214. JoeH on April 15th, 2010 at 4:27 pm

    got it from murugesan’s comment! Thank you murugesan!

  1204. 1215. yiyi on April 16th, 2010 at 1:39 am

    Cartier replica
    chopard replica
    [url=http://www.patekphilippewatches.us/]watches[/url]
    [url=http://www.patekphilippewatches.us/A.Lange-&-Sohne/]A.Lange & Sohne watches[/url]
    [url=http://www.patekphilippewatches.us/Alain-Silberstein/]Alain Silberstein watches[/url]

  1205. 1216. izle on April 16th, 2010 at 1:28 pm

    Anybody knows how to extend the bar width to auto? I changed the overflow property to auto but it did not work well.

  1206. 1217. ginny love on April 17th, 2010 at 9:39 am

    Thanks for sharing this important stuff

  1207. 1218. Strollnet Co.,Ltd. on April 17th, 2010 at 12:04 pm

    [...] jQuery ? LavaLamp????? ????????????????????????????????CSS?????????LavaLamp for jQuery lovers ?????????????CSS?????ZIP?????????????? [...]

  1208. 1219. Johan on April 19th, 2010 at 6:52 pm

    I am trying to implement your menu in WordPress. So far so good, but what I am missing is a function to set the active option. As long as the page doesn’t refresh the solution given works fine, but the moment that PHP refreshes, it loses the option. I know the index, but I miss a function in your nice program like SetActiveOption what you can call with the index number. The menu is very nice. If you give me a hint on where to look, than I will tell afterwards how I used it in Wordpress (PHP not Ajax).

  1209. 1220. Douglas on April 20th, 2010 at 8:10 pm

    For those who couldn’t run this script on Joomla, here’s how I did it:

    I changed from “current” to “active” in the file jquery.lavalamp.js

    In the template I inserted this:
    jQuery.noConflict();
    (function($) {
    $(function() {
       $(“#lavaLamp”).lavaLamp({ fx: “backout”, speed: 500 })
    });
    })(jQuery);

    That’s it.

  1210. 1221. farkas on April 21st, 2010 at 4:07 pm

    Hi my question
    If i have more pages( Home, portfolio, contact, order, etc) how can i set the current ex if i’m on contact page the current must be the contact.
    Thanks!

  1211. 1222. xxi on April 22nd, 2010 at 7:14 am

    Hi to all !

    I have installed the lavalamp menu with CSS and it’s wroking fine with Firefox and Chrome.

    But with IE, i cas see the menu but the adnimation (underline) stays on the left of the screen. How could I solve this please ?

    Thanks for your help !

  1212. 1223. sohbet on April 22nd, 2010 at 11:43 am

    Crap, didn’t realise that would happen :-)
    If I remove the li tags then the link works.

  1213. 1224. ?????? ??????? ??????? on April 22nd, 2010 at 1:52 pm

    Thank you very much. i gonna try it on my site

    regards

  1214. 1225. Web Design on April 22nd, 2010 at 11:59 pm

    awesome stuff
    thanks for the great info

  1215. 1226. ThaiCar on April 23rd, 2010 at 11:26 am

    Good post. Thank you for this.

  1216. 1227. 4 Great CSS & jQuery Menus | Web Design Blog on April 25th, 2010 at 9:10 pm

    [...] Demo | View Source Code [...]

  1217. 1228. deepak tevathiya on April 26th, 2010 at 10:13 am

    i like your script this srcipt is so cool
    thanks for it

  1218. 1229. ???? on April 27th, 2010 at 8:11 am

    i like your script this srcipt is so cool
    thanks for it

  1219. 1230. Zillion on April 29th, 2010 at 11:08 am

    @ Cherryl “Everything works except when i navigate my mouse to a submenu item, the lavalamp background image flies right back to the “home” position and is much wider than it should be.”

    Change menu.js in
    [code]
    $li = $(">li", this), curr = $("li.current", this)[0] || $("li.current last", this)[0] || $($li[0]).addClass("current")[0];
    // met >li ervoor gezorgd dat alleen parent li het doet

    $li.not(".back").hover(function() {
    $('#navtop ul li.back').fadeTo('slow',1,function() {
    // Animation complete.
    });
    move(this);
    }, noop);

    $(this).hover(noop, function() {
    //move(curr);
    $('#navtop ul li.back').fadeOut('slow', function() {
    // Animation complete.
    });
    });
    [/code]

  1220. 1231. john on April 29th, 2010 at 8:04 pm

    Is there any way to modify this for a vertical menu?

  1221. 1232. Bernardo on April 29th, 2010 at 9:05 pm

    Hi Ganeshji, Lavalamp is great! Thank you!

    I’ve got one doubt and it’s the same that “#574 Marc” ask in this post. But I couldn’t find an answer.

    And the blog http://judepereira.com doesn’t explain this case. And “Google” cannot offer a better place.

    Can you help me?

    Thanks.

  1222. 1233. John on April 30th, 2010 at 8:39 pm

    I’ve implemented this technique on one of my sites and it works great. I’d like to convert it to a vertical nav menu for another site I’m working on. Can this be converted to a vertical layout? How could I modify this to accomplish this?

    Thank you.

  1223. [...] creating the icon I refer you Ganesh article where you can learn LavaLamp effect with a step-by-step guide and also can download the [...]

  1224. 1235. Maximusweb on May 1st, 2010 at 11:44 am

    Thx for sharing this :)

  1225. 1236. Deepak Nigam on May 1st, 2010 at 1:45 pm

    Great plugin……….

  1226. 1237. Sampaioric on May 2nd, 2010 at 4:07 am

    Please. How can I implement sub menu items. It seems obvious but I can’t.

  1227. [...] Demo | Tutorial [...]

  1228. 1239. 35 Ultimate Useful jQuery Tutorials | WEBAXES.COM on May 4th, 2010 at 6:35 pm

    [...] LavaLamp for jQuery lovers!- A step by step tutorial to create a LavaLamp menu packaged as a plugin for the amazing jQuery javascript library. [...]

  1229. 1240. Lurios on May 4th, 2010 at 11:05 pm

    hi!, how can I do to set the initial item selected? for example if I go to plant a tree page, then in the menu I want that the default item selected will be “plant a tree” instead of home..

    thanks!

  1230. 1241. lokanath on May 5th, 2010 at 4:41 am

    sir i am a begineer freelancer…using ur zip file i am getting this problem that i can not redirect to any page from the home page through the link. no doubt i hav given the correct href=”blahblah.html”…..

    still cant link…..pls help

  1231. 1242. lokanath on May 5th, 2010 at 10:40 am

    m same lokanath again …is there anyone to help out me pls

  1232. 1243. Ilija on May 5th, 2010 at 10:52 am

    Hello there!

    function on demo.html is:

    $(function() {
    $(“#1, #2, #3?).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return false;
    }
    });
    });

    for working links just replace function like this:
    [ on end code at "return" replace fasle in TRUE ]

    $(function() {
    $(“#1, #2, #3?).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return true;
    }
    });
    });

  1233. [...] LavaLamp for jQuery lovers! [...]

  1234. [...] LavaLamp for jQuery lovers! [...]

  1235. 1246. jQuery?????????? | LAMP???? on May 6th, 2010 at 5:07 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1236. 1247. Kathryn Merlihan on May 6th, 2010 at 2:24 pm

    Hi guys,

    Has anyone been able to implement this with working links that also hold the place of the current nav item?

    cheers

  1237. 1248. Rantu Das on May 6th, 2010 at 9:46 pm

    hello.. I am new in website designing. On the way to unearth the lovely world of web, I got you.. and loved your work. I am working on a website. I added your LavaLamp menu design. And I added a jquery content slider…. but unfortunately Lavalamp menu is not woking because of this file below..

    please help me what to do and the solution…

    Waiting for your reply…
    plz reply on email address.

    Thanks

  1238. 1249. hridaya on May 8th, 2010 at 9:52 am

    Hello,

    Great article . Works perfectly. But i have one issue..
    When working with link like following code

    $(function() {
    $(“#1, #2, #3?).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return true;
    }
    });
    });

    The clicked menu is not seleted.Is there any way to select the current clicked menu.

    Thank you
    hridaya

  1239. 1250. kt on May 8th, 2010 at 11:34 am

    @Kathryn (and many others),

    The only way I could get it to work was with a switch case statement.

    $(function() {
    var tText = “Website Title – “;
    switch (document.title) {
    case tText + “My Page”: $(‘li’).removeClass(“current”);
    $(‘li:eq(1)’).addClass(“current”);
    break;
    case tText + “Another Page”:
    $(‘li’).removeClass(“current”);
    $(‘li:eq(2)’).addClass(“current”);
    break;
    }
    });

    //Then you switch the value for return to ‘true’.
    $(function() {$(“#2″).lavaLamp({fx: “backout”,speed: 700,click: function(event, menuItem) {return true; } }); });

    //The list is like this

    My Page
    Another Page

    Prost

  1240. 1251. Razvan on May 8th, 2010 at 6:21 pm

    Hello,
    First of all,I apologize for my bad english.I’m trying to figure out how can I change the font color of the button when I make hover and when the button It’s active.

    .lavaLampWithImage li a {
    font: bold 14px Georgia;
    text-decoration: none;
    color: #fff; <—

    If I try to change here it changes for every button.I want to have a color for the button that is pressed / hover / active and another color for the rest of the buttons.
    thank you

  1241. [...] Lavalamp is a simple, ready to use JQuery plugin which allow you to create a stunning effect over your horizontal navigation bars. Nice to see, easy to implement. Source [...]

  1242. 1253. jQuery-????????? - ?????? on May 12th, 2010 at 5:47 am

    [...] ????http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/ [...]

  1243. [...] Endnu en klassiker, LavaLamp menuen. Jeg har dog aldrig forstået [...]

  1244. 1255. Activezero Webmedia on May 16th, 2010 at 9:47 pm

    Great plugin!

    For anybody who is using this with WordPress: You can easily get the menu to highlight the current page by adding a line of jQuery before the lavaLamp() call.

    jQuery(“.current_page_item”).addClass(“current”);

    I thought this was going to take a lot longer to implement. Hope this saves someone some time.

    T.

  1245. [...] navigation, j’ai utilisé Lavalamp Menu, un très bon plugin de messieurs Guillermo Rauch et Ganesh Marwaha qui permet de façon simple et avec énormément d’options disponibles de créer de biens [...]

  1246. 1257. k?zl?k bozma on May 19th, 2010 at 6:05 am

    thank you…
    k?zl?k bozma

  1247. 1258. Dustin on May 19th, 2010 at 2:31 pm

    Is there a way to do a javascript call to move the highlighter from an event on another object?
    For example, say you have a map and the menu just lists locations on the map and if you mouseover the location I’d like the highlight to move to the corresponding menu item. I was easily able to do the reverse and have the menu item to also highlight on my map but not the other way around.
    For this example I’ve tried using
    $(‘.current’).removeClass(‘current’);
    $(‘#menu-north’).addClass(‘current’);
    without any luck. The class does change but it doesn’t move the highlighted menu item.

  1248. 1259. Clem on May 19th, 2010 at 4:19 pm

    Nice looking tool however clicking the links in the menu does nothing. Not much purpose for this eh!

  1249. 1260. fritz on May 19th, 2010 at 8:51 pm

    At the top change “return false;” to “return true;” in order to get your buttons to link to your other pages!!!!!!!!!!! it works!

  1250. 1261. ???? » jQuery / ????jQuery?? on May 20th, 2010 at 3:15 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1251. 1262. pceasies on May 23rd, 2010 at 4:27 pm

    In order for it to hold the current place you will have to modify the the class and add current.

    So for home:
    Home
    Other Link

    And for other link:
    Home
    Other Link

    This can be achieved multiple ways. You could use a small chunk of code that gets the page title and uses that to display the current page. You could use a series of server side codes such as PHP, but that might be a bit of a hassle. If you have the menu pasted on each page you can simply edit the page. Wordpress has functions that will tell you the name of the page, so you can use that.

  1252. 1263. pceasies on May 23rd, 2010 at 4:29 pm

    [li class="current"] Home [/li]
    [li] Some Link [/li]

    [li]Home[/li]
    [li class="current"] Some Link [/li]

  1253. 1264. Miami Wedding Photographer on May 23rd, 2010 at 8:31 pm

    lavalamp widget on every coolest blog?

  1254. 1265. Daniel on May 24th, 2010 at 6:02 am

    Hello!

    First of: Great use of jquery and lovely tutorial! :)

    I was wondering whether or not there are any terms of use? I’m building a site for public use and would like to use this navigation, anything i should be aware of?

  1255. 1266. h?rdavat malzemeleri on May 24th, 2010 at 8:54 am

    thanks for subject

  1256. 1267. e?e on May 24th, 2010 at 8:55 am

    thanks a lot

  1257. 1268. cam mozaik on May 24th, 2010 at 9:34 am

    Thanks For Information. LavaLamp is Good i need more Jscript :)

  1258. 1269. maddy on May 25th, 2010 at 11:00 am

    hey the url is not working…even if i place any url it does not go to
    another page…check it

  1259. 1270. Jone on May 25th, 2010 at 1:36 pm

    yes the url not working did anyone fixed it, i want plzzzzzzzzzzzzzzzz

  1260. 1271. David Rodriguez on May 25th, 2010 at 4:09 pm

    mmmm the url dont work, somebody has the solution ?

  1261. 1272. Carlos Andreotti on May 25th, 2010 at 11:04 pm

    To activate the url links, open your html with menu code and change:

    click: function(event, menuItem) {
    return false;
    TO
    click: function(event, menuItem) {
    return true;
    and it will work!

  1262. 1273. neve on May 27th, 2010 at 9:58 am

    Hi?Thank You For Your LavaLamp?
    I find if I want the menu up or down moving?not right or left?
    Then How can I change?

  1263. 1274. Mark - Business Marketing Strategies on May 27th, 2010 at 1:03 pm

    “SOLUTION TO DYNAMIC CURRENT PAGE LINK

    Hi Peeps I don’t know if this solution has been posted already but I have found a solution to the most common question here regarding the current link. The problem is by adding a ‘current’ class to the you lose the ability to have the navigation links as an include.

    Heres the solution:

    Right at the top of eache of your php pages add this bit of code:

    ‘Home’ will be reference to the homepage therefore replace ‘Home’ with the name of the otherpages respectively.

    With this technique you can still have all the navigation in one include.

    You put each in a chunk of code which tells the browser if we are on ‘home’ then use . Look at the example below.

    if ($thisPage==’about’)
    {echo ‘About‘;}
    else
    {echo ‘About‘;}?>

    Big hand to the developer! If if this is unclear I don’t mind going through it step by step as I know how frustrating it can be – http://www.sprike.co.uk

    RE: That’s is a great solution and has helped me get out of my misery

  1264. 1275. Matu on May 27th, 2010 at 8:19 pm

    Nice one, thanks for this.
    To show the effect only by hover:

    return this.each(function() {
    var me = jQuery(this), noop = function(){},
    $back = jQuery(), /* change this … initialize */
    $li = jQuery(“li”, this), curr = jQuery(“li.current”, this)[0] || jQuery($li[0]).addClass(“current”)[0];

    * … to this */
    me.hover(function(){$back = jQuery(”).appendTo(me).css(‘opacity’,'0.6′)},function(){$back.remove()}); /* css optional */

    Many greetings
    Matu

  1265. 1276. 30+ Best JavaScript Tutorials You Have To See on May 28th, 2010 at 11:58 pm

    [...] LavaLamp for jQuery lovers! [...]

  1266. 1277. Matt Rittman on May 29th, 2010 at 2:22 am

    For those of you using Wordpress and trying to get this to work with the “current” page item, open the jquery.lavalamp.js file and replace this line:
    $li = $(“li”, this), curr = $(“li.current”, this)[0] || $($li[0]).addClass(“current”)[0];

    With this line:
    $li = $(“li”, this), curr = $(“li.current_page_item”, this)[0] || $($li[0]).addClass(“current_page_item”)[0];

  1267. [...] This tutorial will help you create an absolutely beautiful navigation menu, that slides the background image to the hovered navigation item. Amazing, and powered by jQuery. Read on Ganeshji Marwaha's blog » [...]

  1268. [...] a massive thank you to the team over at gmarwaha who developed the lavalamp menu, its [...]

  1269. 1280. Puru Raj on May 30th, 2010 at 11:17 pm

    Very nice plug in. Had a little bit to work to apply for my vertical menu which I enjoyed. But I’ve two sets of menu in a page. It is working with only one of them. Anyone has any idea that how can we use this multiple times in a page. Any suggestion is appreciated.

    ta

  1270. [...] 5: Lava lamp liquid menu Menus look great with some movement. This adds a very fluid transition effect between menu items. View Demo [...]

  1271. 1282. sözlük on June 1st, 2010 at 2:12 pm

    thanks for sharing. good informations. good luck. best regards

  1272. [...] LavaLamp Navigation menu with a ‘lava’ effect. [...]

  1273. 1284. arunsameer on June 2nd, 2010 at 12:25 pm

    hi this is good plugin but i ahd a problem with firefox when i click back button of browser easing effect not working but class current is working

  1274. [...] LavaLamp Navigation menu with a ‘lava’ effect. [...]

  1275. 1286. video izle on June 3rd, 2010 at 9:02 am

    thanksss

  1276. 1287. donna on June 4th, 2010 at 1:19 am

    the links don’t work :(

  1277. 1288. Frank Los on June 4th, 2010 at 8:50 am

    Hi,

    I am trying this great script together with the dynamic drive accordion menu. Which uses jquery 1.3.2, as soon as I upload that Jquery the LavaLamp looses its smooth movement, any solution to that behavior?

  1278. 1289. ???? LavaLamp JQuery ???? » Life Studio on June 6th, 2010 at 1:50 pm

    [...] ?????? LavaLamp ?? DEMO?http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/ [...]

  1279. 1290. magooz on June 7th, 2010 at 12:08 am

    good job…
    looking for code with dropdown menu don’t find any links ,examples..
    any ideas, links?
    thanks

  1280. 1291. dawood on June 7th, 2010 at 8:42 am

    I am trying this Lavalamp jscript.But not work button link.how to create a button link.

  1281. 1292. murdi on June 8th, 2010 at 1:21 am

    If your links don’t work, please goto html page, find script below and change “return false” to “return true”

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return false;
    }
    });
    });

  1282. 1293. Sprike Business Marketing on June 8th, 2010 at 1:32 pm

    “SOLUTION TO DYNAMIC CURRENT PAGE LINK

    Hi Peeps I don’t know if this solution has been posted already but I have found a solution to the most common question here regarding the current link. The problem is by adding a ‘current’ class to the you lose the ability to have the navigation links as an include.

    Heres the solution:

    Right at the top of eache of your php pages add this bit of code:

    ‘Home’ will be reference to the homepage therefore replace ‘Home’ with the name of the otherpages respectively.

    With this technique you can still have all the navigation in one include.

    You put each in a chunk of code which tells the browser if we are on ‘home’ then use . Look at the example below.

    if ($thisPage==’about’)
    {echo ‘About‘;}
    else
    {echo ‘About‘;}?>

    Big hand to the developer! If if this is unclear I don’t mind going through it step by step as I know how frustrating it can be – http://www.sprike.co.uk”

    RE: That’s is a great solution and has helped me get out of my misery

  1283. 1294. Gaudino on June 9th, 2010 at 10:42 pm

    Hi,

    I have small problem.

    When I click on menu item and reload the page, so menu is “reseted”. (active item is selected first menu item, but I need to have selected actuall item)

    How can I set it right?

    Thx

  1284. [...] LavaLamp for jQuery lovers! | Ganesh [...]

  1285. 1296. Tracy Barker on June 14th, 2010 at 5:15 pm

    Just wanted to drop a note for anyone looking for Superfish integration. I was puzzling over it for a while the other day, and if I remember correctly, it only took a very small change in the code.

    On line 63 (non-minified), try changing $li = $(“li”, this) to $li = $(“>li”, this)

    I tried a lot of things, so there may have been something else I did as well, but I believe that this was the solution to lavalamp + superfish.

  1286. 1297. 51+ Best of jQuery Tutorials and Examples | Webmaster 9 on June 16th, 2010 at 4:51 am

    [...] LavaLamp for jQuery lovers!- A step by step tutorial to create a LavaLamp menu packaged as a plugin for the amazing jQuery javascript library [...]

  1287. 1298. Goncorpius on June 16th, 2010 at 4:53 pm

    Plz help me ,i use jquery lavalamp for site ,very good ,but , if my rerdiect link page on site , bg on page dose not active

    plz

  1288. 1299. crybaby on June 22nd, 2010 at 11:01 am

    Hi, i really like the effect and i’ve got it to work for my site but when i click the nav links they don’t work. It’s as though the ‘a’ tag has been disabled.

    Thanks again for tutorial, any feedback would be really appreciated.

  1289. 1300. crybaby on June 22nd, 2010 at 11:02 am

    I forgot to mention, when i disable javascript it the links work again. My digging through the code can’t find the ‘a’ disable code though. :(

  1290. 1301. Salman on June 22nd, 2010 at 1:21 pm

    I used lavalamp , but when I try to use a link instead of “#” in anchors, it does not work,
    I have to right click on the text and choose “open link” to open it

  1291. 1303. jQuery LavaLamp script | The Largest Forum Archive on June 23rd, 2010 at 8:02 pm

    [...] vb.net | No Comments » Hi Iam very begginer I want to use the script named lavaLamp from here http://www.gmarwaha.com/blog/2007/08…lovers/?cp=all ) but I donn’t know how I can use it I try to change the <li [...]

  1292. 1304. deano on June 24th, 2010 at 10:07 pm

    HOW TO MAKE VERTICAL (BODGED!)

    very new to jquery, dont understand how the code works yet, but had a little trouble trying to get this nav working verticaly. the other tutorials out their dont have the same effect as this one thus i tried to modify the code from this tut as it was closest effect to what i wanted.

    until someone posts a clean solution to setup verticaly here are some very trial and error modifcations you can do with lavalamp.js

    $(this).hover(noop,function(){move(curr)});
    delete this line to stop the lamp returning to its current location

    return o.click.apply(this,[e,this])
    delete this to let links work

    reduce width of .lavaLampWithImage and the LI’s will fall below one another. add a background colour (to see) and increase height.

    this is not clean, i dont know how to code jscript, so backup before try, worked for me. ive just noticed that theirs a non-crunched (non-min) version of the code *DOH!*, wish i had seen that earlier. note that a straight up search for the above code might not work due to spacing but its in their.

  1293. 1305. video izle on June 25th, 2010 at 9:21 am

    reduce width of .lavaLampWithImage and the LI’s will fall below one another. add a background colour and increase height.

  1294. 1306. Jon on June 25th, 2010 at 10:36 pm

    Hey if you are atill confused about the tag being disabled, there is a solution:-
    click: function(event, menuItem) {
    return false;
    }

    change false to true and then it should work.

  1295. 1307. seslichat on June 26th, 2010 at 12:08 pm

    I used lavalamp , but when I try to use a link instead of thanks admin

  1296. [...] LavaLamp [...]

  1297. 1309. Trip advice on June 28th, 2010 at 10:05 am

    I tried a lot of things, so there may have been something else I did as well, but I believe that this was the solution to lavalamp + superfish.

  1298. 1310. joe on June 28th, 2010 at 7:28 pm

    I love this menu. I’m using it in my site and it looks great but I cannot get it to link to my other pages once the button’s are clicked. Could some one please help me with this?

  1299. 1311. karakral on June 29th, 2010 at 4:05 pm

    I used lavalamp , but when I try to use a link instead of thanks

  1300. 1312. Fancy menú CSS3- Noticias del Cerebro Digital on June 29th, 2010 at 8:52 pm

    [...] conocimos una versión utilizando jQuery, llamado lavalamp, el cual tambien se hizo popular por Ganesh . Esta vez, veremos cómo obtener el mismo efecto utilizando las nuevas características de CSS3. [...]

  1301. 1313. serdar on June 30th, 2010 at 2:10 pm

    thank’s

  1302. 1314. ??240??jQuery?? | ???? .NET,C#,??,???,????,??? on July 1st, 2010 at 12:56 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1303. 1315. Yan Cui on July 2nd, 2010 at 12:37 am

    Thanks a lot!
    all working well!

  1304. 1316. Green Web Hosting on July 2nd, 2010 at 12:29 pm

    Hey…..nice post!!

    Awesome, No more words to explain :) :) :D just….cool blog.

  1305. 1317. Green Web Hosting on July 2nd, 2010 at 11:01 pm

    I would like to say “wow” what a inspiring post. This is really great. Keep doing what you’re doing!!

  1306. 1318. Adam Olsen on July 2nd, 2010 at 11:03 pm

    Slick plugin, thanks! Definitely like riding elephants.

    Another solution to setting class=current for the right li when not using AJAX:

    $(document).ready( function(){
    $(‘.lavalamp [href='+window.location.pathname+']‘).parent().addClass(“current”);
    $(function() { $(‘#nav’).lavaLamp({ fx: ‘backout’, speed: 700 })});
    });

  1307. 1319. Adam Olsen on July 2nd, 2010 at 11:04 pm

    Slick plugin, thanks! Definitely like riding elephants.

    Another solution to setting class=current for the right li when not using AJAX:

    $(document).ready( function(){
    $(‘.lavalamp [href='+window.location.pathname+']‘).parent().addClass(“current”);
    $(function() { $(‘.lavalamp’).lavaLamp({ fx: ‘backout’, speed: 700 })});
    });

  1308. 1320. RubensaiD on July 3rd, 2010 at 6:08 am

    The correct solution is:

    $(function() {
    var direc = location.href;
    var bus;
    $(“.lavalamp li a”).each(function(i) {
    bus = this.href;
    if(bus == direc) {
    $(“.lavalamp li:eq(“+i+”)”).addClass(“current”);
    }
    })
    });

    that is before tha call to initialize the menu

  1309. 1321. cadas18 on July 4th, 2010 at 1:27 pm

    Thanks You Man ! :)

  1310. 1322. En iyi 240 adet JQuery Uygulamas? « ABDULLA TURHAN on July 4th, 2010 at 6:05 pm

    [...] Lava Lamp jQuery Menu. [...]

  1311. [...] Read this tutorial >> [...]

  1312. 1324. Naresh on July 7th, 2010 at 6:08 am

    cool…! effect. its awesome.. :)

  1313. 1325. kompresör on July 7th, 2010 at 3:48 pm

    thank’s
    great..

  1314. 1326. Brian on July 7th, 2010 at 11:10 pm

    Hey thanks for the amazing plugin Ganeshji! I’m having a small problem though, that perhaps you or someone else would be gracious enough to help me with.

    The background image on my menu is being cut off on the edges as it reshapes to the current link area. Is there any way to turn this off? I would like the image to bleed outside of each link area. You can see what I mean here: http://www.omni-flux.com/projects/valleytradesinc/Slider/slider.html

    Any help would be greatly appreciated. Thanks in advance!

  1315. 1327. hal? y?kama on July 8th, 2010 at 6:51 am

    thank you bro

  1316. 1328. sunucu kiralama on July 8th, 2010 at 6:52 am

    Thanks.

  1317. [...] Web Site Download Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages. [...]

  1318. 1330. Liste de 240 plugins Jquery | Worm's Blog on July 8th, 2010 at 1:53 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1319. 1333. natural penis enlargement on July 11th, 2010 at 6:26 am

    Hi,Thanks for leading me to your Blog from a comment left on my Blog, some great stuff here, will bookmark it, Thanks again!

  1320. 1334. 7 ???????? jQuery ????. | ????? ? ??????? ?? ???? jQuery. on July 12th, 2010 at 5:43 am

    [...] 2. jQuery ???? LavaLamp (????) [...]

  1321. 1335. Harpreet Singh on July 12th, 2010 at 4:35 pm

    Links in menu not working. Even the demo(both versions) downloaded not working.

  1322. 1336. Harpreet Singh on July 12th, 2010 at 4:40 pm

    Sorry about this. Links are working now the demo was returning false for click. remove the return false now working.

  1323. 1337. Bernhard on July 13th, 2010 at 2:17 pm

    Thanks.
    Works cool!

  1324. 1338. Celebs on July 14th, 2010 at 7:37 am

    In html you must edit javascript code for active links.

    Simply:

    $(function() {
    $(“#1, #2, #3″).lavaLamp({
    fx: “backout”,
    speed: 700,
    click: function(event, menuItem) {
    return true;
    }
    });
    });

  1325. 1339. Malowanie on July 15th, 2010 at 12:25 pm

    Owesome menus! :) ) Thanks for this tut. Keep up the good work!

  1326. 1340. Joël Kuiper on July 15th, 2010 at 11:44 pm

    In a case of “why on earth would you want to do that”: if you ever want to set the current after the initialization of the lamp you can add a little bind to the code:

    $(this).bind(“move”, function(e, el) {
    setCurr(el);
    });

    you can move by calling with $(“.lavaLamp”).trigger(“move”, v); with .lavaLamp being whatever element your lamp is and v the jqeury li object you wish to set the cursor to.

  1327. 1341. Prabodha on July 16th, 2010 at 6:29 pm

    wow nice post and nice article.so beautiful..

  1328. 1342. seguridad medicina laboral on July 17th, 2010 at 1:09 am

    i do not like the dots in the ul, li structure.

  1329. 1343. Gideon on July 17th, 2010 at 11:01 pm

    This plug in does not work for blogger? I have tried everything I know of and cant get it to work. errors every time. can I not embed Java strait into blogger?

  1330. [...] Nav Effect. This little bugger gave me trouble for some time! I originally found this jQuery LavaLamp effect for top navigation and thought it was pretty sweet. But, of course—I needed it styled for my [...]

  1331. [...] Menu « Lavalamp » design : http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/ – Gestionnaire d’onglets : http://stilbuero.de/jquery/tabs_3/ – Menu accordéon simple : [...]

  1332. 1346. Top 10 jQuery Plugins | Brio Daily on July 23rd, 2010 at 12:12 am

    [...] 7. LavaLamp jQuery [...]

  1333. 1347. nandhini on July 23rd, 2010 at 10:14 am

    hello pls.have done a grt work…also i need the coding for…tats the lavalamp should hide… only on when mouse on menu the lava lamp should come..until then it should get highlighted

  1334. 1348. 37 Amazing Tutorials for jQuery Navigation Menus on July 23rd, 2010 at 9:21 pm

    [...] 22-LavaLamp for jQuery lovers! [...]

  1335. 1349. Danny on July 24th, 2010 at 12:18 am

    Hey that’s a nice effect you got there. I am still getting my head around jquery, and been doing some research.

    Keep up the good work.

    CHEERS :)

  1336. 1350. Fabio on July 25th, 2010 at 5:19 pm

    Initially, it worked. It was just change “false” to “true” and everything worked. Thanks.

  1337. 1351. Adam on July 26th, 2010 at 3:33 am

    Very Nice work!!

    Only problem is when return is set to true the Lavalamp works but the links in the nav dont, when return is set to false the links work but Lavalamp always hoovers over ‘Home’ nav link.

    I am probably missing something obvious but all the different solutions i have found still delivery one the above problems.. :(

  1338. 1352. Adam on July 26th, 2010 at 3:43 am

    :) solved it!…. silly me had the li class=”active” instead of class=”current”….

  1339. 1353. window cleaning on July 27th, 2010 at 12:38 pm

    Initially, it worked. It was just change “false” to “true” and everything worked.
    nice work.

  1340. 1354. ?????240??jQuery?? @ flyxiang on July 27th, 2010 at 1:32 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1341. 1355. BitlisHaber13 on July 27th, 2010 at 3:55 pm
  1342. 1356. alejandra on July 28th, 2010 at 2:05 pm

    hi! i’m using you plug in but what i want is to use that menu in a section. When you press a link it shows an image.
    How can i do it??

  1343. 1357. p90x on July 29th, 2010 at 9:04 am

    I totally love this article. I think you could write some other things to make your blog more complete wansantg3lj.

  1344. 1358. Jamie on July 29th, 2010 at 10:46 am

    I found that changing “false” to “true” solved the problem of not being able to click the links, as for it hovering back over the Home link, set your class to and that fixed it for me. Hope this helps!

  1345. 1359. Lasse on August 1st, 2010 at 10:24 pm

    Hello

    I wish to know how I can adjust the width of the bottom border in lavalampBottomStyle?
    I want the width to be the same as the menutext.. so no extra on each side of the navbar words.

    Thanks

  1346. 1360. 240 plugins jquery gratuit! | palino on August 2nd, 2010 at 9:17 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1347. 1361. Harpreet Singh on August 2nd, 2010 at 11:20 pm

    Lava lamp is not working with the jCarousel on same page. If I take out the jquery.easing.min.js JCarousel works fine but but of course lava lamp won’t work without this script file

  1348. 1362. Alex on August 5th, 2010 at 5:57 am

    escri2, thank you very much.
    I was with problems with my li, and you fix it ywith your comment:)
    I works just fine

  1349. 1363. Warcraft Professions on August 5th, 2010 at 9:55 pm

    This is great and would look nice for my next project. Thank you for this!

  1350. 1364. khaled on August 6th, 2010 at 5:59 pm

    Thank you for this useful information.
    The library deal with difficult
    The difficulty lies in knowing how to use this library to get out of fantasy impacts
    Keep more posting..
    Regards

  1351. 1365. ?????240??jQuery?? on August 7th, 2010 at 4:34 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1352. 1366. En iyi 240 adet JQuery Uygulamas? | ABDULLA TURHAN on August 7th, 2010 at 7:57 pm

    [...] Lava Lamp jQuery Menu. [...]

  1353. 1367. unklejam on August 9th, 2010 at 9:10 pm

    Hi, great article. I was wondering if there is a way for the current page to be highlighted rather than always going back to the home page.

    Anyone?

  1354. 1368. sesli sohbet on August 9th, 2010 at 10:11 pm

    Thanks for the nice simple tutorial.

  1355. 1369. Shankar on August 12th, 2010 at 4:04 am

    can I get this menu vertically

  1356. 1370. Ralphy on August 12th, 2010 at 7:58 pm

    I am trying to set up the jquery menu with lavaLamp on my test site. It is a ning site. I can’t get the lavaLamp to show no matter what I do. Have you heard of Ning sites having issues before(since ning uses a predefined nav bar called #xg_navation)

    Please let me know

  1357. 1371. Mathias on August 14th, 2010 at 9:15 pm

    The lavalamp effect works fine.
    But i have still one problem.

    When clicking on another page the line stays under home, and not on the current page…

    Can somebody help me??

  1358. 1372. fragman on August 16th, 2010 at 7:27 pm

    These are great thanks for sharing.

  1359. 1373. sesli sohbet on August 17th, 2010 at 12:37 am

    can I get this menu vertically….

  1360. [...] [...]

  1361. 1375. Thomas on August 17th, 2010 at 10:15 pm

    Nice plugin!

    So if anyone still wondering how to make the nav hover over the current page and not going back to home, consider my solution.

    The easiest way is indeed to add the current class to the li. But some of you use one header.php so that won’t work.

    My solution is just add a variable to your links.
    and then add
    <li

    for li element.

  1362. 1376. Thomas on August 17th, 2010 at 10:16 pm

    Nice plugin!

    So if anyone still wondering how to make the nav hover over the current page and not going back to home, consider my solution.

    The easiest way is indeed to add the current class to the li. But some of you use one header.php so that won’t work.

    My solution is just add a a href=”url?page=1 variable to your links.
    and then add
    li <? if ($_GET['page']==1) {echo " class='current'";}

    for li element.

  1363. [...] 8. ????? ????? ?? ???? ????? ????? jQuery [...]

  1364. 1378. Arc Floor Lamp on August 19th, 2010 at 9:42 pm

    Love how you can make variations with simple changes to the stylesheet.

  1365. 1379. deb on August 20th, 2010 at 10:21 pm

    how do I make a parent page static on the menu bar(un-clickable)?

    Thanks!

  1366. 1380. adketing.com » Fancy menú CSS3 on August 21st, 2010 at 7:37 pm

    [...] conocimos una versión utilizando jQuery, llamado lavalamp, el cual tambien se hizo popular por Ganesh . Esta vez, veremos cómo obtener el mismo efecto utilizando las nuevas características de CSS3. [...]

  1367. 1381. 13 menu in javascript e css on August 22nd, 2010 at 7:04 pm

    [...] LavaLamp jQuery Sliding Menu Demo: Mootools Fancy [...]

  1368. 1382. Buz on August 23rd, 2010 at 10:45 am

    possibility of sharing and social solidarity at a level just fine

  1369. 1383. ??????? – ???? on August 23rd, 2010 at 4:11 pm

    [...] [...]

  1370. 1384. Ernie Mac on August 24th, 2010 at 12:59 pm

    nice tutorial….very impresive

  1371. 1385. Michael on August 27th, 2010 at 1:49 pm

    Thanks for the good stuff. These are really helpful for us…

  1372. 1386. ilovehtc.net on August 27th, 2010 at 10:01 pm

    good work thanks

  1373. 1387. Vibrators on August 29th, 2010 at 5:41 am

    This is what I need. Thank you for sharing this information.

  1374. [...] I’m getting better at it. I had my first proper foray into jQuery with this site, I utilised LavaLamp pretty much out of the box for the top menu. For the class switcher (colour changer) I used jQuery [...]

  1375. 1389. Oye on August 30th, 2010 at 2:07 am

    ??????

  1376. 1390. He's A Pirate Sheet Music on August 30th, 2010 at 7:53 pm

    Hey you have a great website and I will most certainly be coming back again. It is always great to read what you have to say. Thank you Sometimes though I have to go against what you are saying. Anyway I wish you the best with your site!

  1377. 1391. hardlock on August 30th, 2010 at 8:16 pm

    Para solucionar problema con jgrowl utiliza la versión de compatibilidad de jquery.easing
    http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.compatibility.js

  1378. 1392. JadiysonTaki on August 31st, 2010 at 4:32 am

    good work,nice job!

  1379. 1393. seslialmanya on August 31st, 2010 at 5:35 am

    Thank you Admin My Name Seslialmanya From Turkey Thanks

  1380. 1394. Marathi sms on August 31st, 2010 at 7:58 am

    Its great resource. i was finding that type inf and now i get it.thanks for this…

  1381. 1395. sesli sohbet on August 31st, 2010 at 9:52 am

    Thenk you very much very nice

  1382. 1396. cheap jonas brothers tickets on August 31st, 2010 at 10:17 am

    This is another excellent and useful addition from google. Thank you for your explaination about page ranking.

  1383. 1397. webtasarim on August 31st, 2010 at 11:38 am

    web design a site that has done a good share.thanks

  1384. [...] Menu Plugin Ch? v?i 20 dòng l?nh, ??n gi?n và ti?n d?ng – ?ó là anh này. LavaLamp jQuery mernu plugin Hi?u ?ng tr??t c?c k? ??p. jGlideMenu L?i 1 menu ??n gi?n v?i cú [...]

  1385. 1399. dell destek on September 1st, 2010 at 6:05 am

    I wish you continued success sharing.thanks

  1386. 1400. RubensaiD on September 2nd, 2010 at 4:37 am

    @Thomas the best way to solution that problem is adding this code at the end of your jquery.lavalamp.js script

    $(function() {
    var direc = location.href;
    var bus;
    var yata = false;
    $(“#list-menu li a”).each(function(i) {
    bus = this.href;
    if(direc == bus) {
    $(“#list-menu li:eq(“+i+”)”).addClass(“current”);
    yata = true;
    }
    })
    if(!yata) {
    $(“#list-menu li a”).each(function(i) {
    bus = this.href;
    var a = false;
    if(direc.indexOf(bus) != -1) {
    a = i;
    }
    if(a) {
    $(“#list-menu li:eq(“+a+”)”).addClass(“current”);
    }
    })
    }
    });

    you can see in action in http://www.cefim-uni.com/

  1387. [...] for jQuery jQuery SuckerFish Style jQuery Plugin Treeview treeView Basic FastFind Menu Sliding Menu Lava Lamp jQuery Menu jQuery iconDock jVariations Control Panel ContextMenu plugin clickMenu CSS Dock Menu jQuery Pop-up [...]

  1388. 1402. A M Rahman on September 2nd, 2010 at 6:05 pm

    Thank u for the nice work

    I want to disable the hover effect after clicking a menu item, then make a ajax call and re-enable the hover effect inside the ajax return handler.

  1389. 1403. tamer on September 2nd, 2010 at 7:49 pm

    thank you very much for the this quality work.
    i will try that what you say in here to my works like http://www.herkesebendencay.com

  1390. 1404. aa on September 3rd, 2010 at 1:09 am

    Hurble burble.

  1391. 1405. Acer Destek on September 3rd, 2010 at 8:22 am

    Your site has very nice, thank you for sharing.

  1392. 1406. 240??jQuery?? | ???? on September 5th, 2010 at 8:28 am

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1393. 1407. mirc on September 5th, 2010 at 11:30 am
  1394. 1408. web tasar?m on September 5th, 2010 at 11:45 am
  1395. 1409. webmaster on September 5th, 2010 at 11:46 am
  1396. 1410. sohbet on September 5th, 2010 at 11:50 am
  1397. 1411. mirc yukle on September 5th, 2010 at 11:51 am
  1398. 1412. spor on September 5th, 2010 at 11:52 am
  1399. 1413. dursun ali on September 5th, 2010 at 11:57 am
  1400. [...] LavaLamp for jQuery lovers! | Ganesh [...]

  1401. 1415. external sliding doors on September 6th, 2010 at 6:36 am

    I really like your post you done a great jobs . Thanks for sharing valuable information.

  1402. 1416. laptop battery on September 6th, 2010 at 7:27 am

    I want to disable the hover effect after clicking a menu item, then make a ajax call and re-enable the hover effect inside the ajax return handler.

  1403. 1417. wolanlw on September 7th, 2010 at 2:36 am

    Cookie theme wedding favour isprom dresses the second option available for a cheap prom dressesbridal couple to look for their guests.wedding invites Most couples want something that representsjunior bridesmaid dresses their wedding day and at the same,wedding hairstyles used as a nice token of their appreciation for the love and support of their wedding guests.celebrity lace front wigs Opting custom wedding cookie favors is a good choice for the wedding couple.wedding invitations The cookies can add nice décor to the wedding reception and the delicious treat well be appreciated by the wedding guests

  1404. 1418. HOTEL AKBULUT on September 7th, 2010 at 8:09 am
  1405. 1419. xiaobei on September 7th, 2010 at 10:00 am

    Yes ,it’s good,But the link can’t be Clicked……
    I want to use it,But who can tell me how to modify it……

  1406. 1420. hal? y?kama on September 7th, 2010 at 1:09 pm

    Great post thanks

  1407. 1421. JQuery N00B on September 7th, 2010 at 2:11 pm

    Hi,
    Having problems with getting my href menu links to work – nothing is happening when clicking. I´ve downloaded the updated Zip file and made some adjustments to it. It seems to work in IE but not Safari and Firefox.

    I really love this menu and want it to work! But I can´t seem to find the $(document).ready() function, to replace it with $(window).load()…. If that´s the problem…

    Anyone!?

    /N00B

  1408. 1422. 240 plugins jquery – Separados por categoria on September 7th, 2010 at 3:04 pm

    [...] jQuery SuckerFish Style. jQuery Plugin Treeview. treeView Basic. FastFind Menu. Sliding Menu. Lava Lamp jQuery Menu. jQuery iconDock. jVariations Control Panel. ContextMenu plugin. clickMenu. CSS Dock Menu. jQuery [...]

  1409. 1423. Best bargain of the day | Melanoma Blog on September 8th, 2010 at 4:57 am

    [...] LavaLamp for jQuery lovers! [...]

  1410. 1424. cheap justin bieber tickets on September 8th, 2010 at 8:17 am

    Hi..
    Thank you because sharing a good information.Hopefully u will contribute more articles in future.cheap the eagles tickets
    Thank you for awesome stuff!

  1411. 1425. Folder printing on September 8th, 2010 at 8:45 am

    This is a well written piece. Its written in simple words yet it explores very complex concepts of life.

Leave a Reply