Sunday, 14 August 2011

Jquery Dropdown menu

These are some links to easy and usefull dropdown menu links :

DHTML menu creator for free. Click first link below :

http://www.dhtml-menu-builder.com/download/sothink-free-menu-builder.zip



http://www.scriptiny.com/2011/04/javascript-dropdown-menu/

8 comments:

  1. http://xtnd.us/dreamweaver/jquery

    ReplyDelete
  2. http://docs.jquery.com/UI/Draggable#option-containment

    ReplyDelete
  3. http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding

    ReplyDelete
  4. http://www.webdesignshock.com/jquery-slider

    ReplyDelete
  5. place position:relative/absolute; with z-index for ie7 z-index problem

    thanks

    ReplyDelete
  6. http://www.computerhope.com/j18.htm

    ReplyDelete
  7. http://pastebin.com/PV2MnaWup

    widget

    photoshop to css3 in photoshop

    ReplyDelete
  8. $("img").each(function(){
    var real_width = $(this).width();
    var real_height = $(this).height();
    var max_width = $(this).css("max-width"); // Or just say 200
    if (real_width > max_width) {
    var ratio = real_width / real_height;
    $(this).width(max_width);
    $(this).height(max_width / ratio);
    }
    });

    ReplyDelete