Close Panel
 
 

Remember my Sliding Login Panel with Mootools 1.2? Well, I thought it could have been improved both for design and functionnalities and so I did! but with jQuery this time.

sliding-login-panel-jquery

See the demo here »

What’s new in this version?
  • Panel has been redesigned to be “slicker”.
  • Panel overlaps content instead of “pushing” it.
  • Images are transparent… and work in IE6! (Thanks to 24Ways for their IE PNG Fix.) This means, you can change the background color of the body as you wish or even set a background image.
  • Login button that slides the panel down changes from “Log In | Register” to “Close Panel” on click and I have added some nice rollover images:

Login button when panel in closed state:
sliding-login-panel-jquery-closed-state
Close button when panel in opened state:
sliding-login-panel-jquery-opened-state

Toggle effect (.toggle() in the javascript code below) behaves differently in jQuery than in Mootools and makes it dead simple to switch the login and close buttons on click. Here’s how I proceded:

?View Code HTML4STRICT
<li id="toggle">
	<a id="open" class="open" href="#">Log In | Register</a>
	<a id="close" style="display: none;" class="close" href="#">Close Panel</a>			
</li>

… and the javascript to expand/collapse panel and switch the buttons on click:

?View Code JAVASCRIPT
$(document).ready(function() {
 
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");	
	});	
 
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
 
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
 
});

Check the jQuery documentation for usage.

Known Bugs

  • Rollover effect for the login button doesn’t work in IE6 because of 24Ways’ script. Knowing alpha transparency works perfectly in this browser I think we can disregard that minor bug.
Download

Please note the Login and Register forms in this demo will not work “out of the box” without a user login system pre-installed on your site (e.g. PHP/MySQL user login system)!

Download (55.5 KiB, 35,878 hits)

The sliding panel works like a charm in IE6, IE7, Firefox, Safari, Opera and Chrome. I didn’t test it in IE8 yet. Let me know if it does.

How to implement this sliding panel into Wordpress

Next week, I will explain you how to implement this script into Wordpress. Make sure to come back or subscribe to RSS feed. If you can’t wait until next week, check this article to get started: Add a show/hide login panel to your Wordpress theme using Mootools »
View article: Implement a Nice & Clean jQuery Sliding Panel in Wordpress 2.7+

Update: June 27, 2009: It seems this sliding panel has inspired a few people and they have created some Wordpress plugins for your convenience:

Enjoy!

Popularity: 90% [?]

 

Related posts

| Subscribe to Feed | Email the author

313 Responses to “Nice & Clean Sliding Login Panel built with jQuery”

  1. 1
    Web-kreation - Show/hide a nice Login Panel using Mootools 1.2 Says:

    [...] new version of this script is available here. This new version works with [...]

  2. 2
    Benjamin Says:

    Works perfectly in IE 8 for me. Tried it on Windows 7.

  3. 3
    alex Says:

    Looking forward for the tutorial on how to implement this into wordpress.

  4. 4
    Dustin Says:

    I really hope you integrate this into PigNews, can’t wait for the tutorial for Wordpress implementation, i may mess around with it while i wait for your new theme :) Amazing work as usual!

  5. 5
    Jeeremie Says:

    Thanks!

    I talked to Chris (the guy who’s coding PigNews theme) about this script. He told me “very nice” but didn’t tell me he would implement it yet. He is working on the backend at the moment to create options page and he is not quite ready to work on the front end yet.

  6. 6
    Mario Says:

    Hi, nice script! I found a bug, if you click in the very bottom of the bar, just under the login link, if you click there, the text+button swap, but the slider stays in the same position.

    BTW I want to ask something, how can I create multiple sliders in the same page without collision? I have a php that create X contacts, I want every contact to has a slider under his name. How can implement it?

    Keep the great work and thx in advance!

  7. 7
    dewey Says:

    Excellent! Waiting for the WP implementation. this deserves a donation ;) ..

  8. 8
    " » 30 Ressources incontournables pour Webdesigner !" by Design Spartan Says:

    [...] Panneau de connexion en jQuery [...]

  9. 9
    Jon Says:

    Thanks for the script. I got it implemented today into wordpress.
    Works like a charm.

  10. 10
    Jeeremie Says:

    @Mario. you are right. It is because the <a> tag doesn’t fill the <li> tag. So if you click inside the <li> tag but not on the link, it switches the buttons but doesn’t expand or collapse the panel. One simple way to fix that is to add “a” to our first selector below:

    ?View Code JAVASCRIPT
    $("#toggle a").click(function () {
     $("#toggle a").toggle();
    });

    I tried to check it in IE6 but it doesn’t stop crashing for no reasons so I hope it works well in this browser. I will update the code in my post.

    @Jon: yes, I saw that this weekend but did you remove the code already? Did you run into problem?

  11. 11
    Pre Says:

    Hey nice script, ran into an issue though. I’m trying to add ajax login verification. The script doesn’t work with the verification script I have. Do you have one that could work?

  12. 12
    fred Says:

    where is your code ???
    This is just 10 lines of basic jquery’script ….
    a big buzz for nothing…

    BUT , the css is beautifull .

  13. 13
    Jeeremie Says:

    Yes, just a few lines of code. Are you disappointed? The point was not much to write a complicated jQuery application but more to create a beautiful Panel with some nice but simple effects that you can implement on your site.

  14. 14
    Berke Says:

    Hi.How can convert button to Turkish.Thanks

  15. 15
    Jeeremie Says:

    Open index.html, and replace “Login” in the Value attribute by your own turkish text:

    ?View Code HTML4STRICT
    <input type="submit" name="submit" value="Login" class="bt_login" />

    Same for the register button. You might have to change charset to support your language:

    ?View Code HTML4STRICT
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />

    Turkish alphabet: charset=windows-1254 (see reference)

  16. 16
    Olivier Says:

    Bonjour,
    j’ai vu que pour utiliser ce (super) script, il y avait une license creative common 2.5
    pouvez-vous m’en dire plus ?
    merci

  17. 17
    taewoo Says:

    What about browsers with javascript not enabled? Your script doesn’t degrade gracefully

  18. 18
    Jeeremie Says:

    Tu peux voir les détails de cette license ici.

  19. 19
    Juan Says:

    I believe this is a great example of a case in which it is better not to use PNG-24. Your image only has a light shadow. You could save the image on Fireworks as PNG-8 with alpha transparency. That way you’ll see it perfectly on any modern browser and IE 6 will show the all the image except the light shadow (the part with alpha transparency) without the typical grey/white background. PNGFix is actually quite slow so this way you’ll be saving javascript file size and processing time.

  20. 20
    awake Says:

    very nice…

  21. 21
    Jon Berry Says:

    Love it!! Thanks so much. Works great in IE8/Vista.

  22. 22
    Sliding Login Panel with jQuery Says:

    [...] Sliding Login Panel – learn how to show/hide a nice login panel using jQuery. [...]

  23. 23
    thom Says:

    thats great! thx as much!

  24. 24
    Sliding Login Panel теперь и для jQuery « Vizor-IT blog Says:

    [...] создатели Sliding Login Panel для MooTools, выпустили версию Sliding Login Panel для jQuery. И еще у них на сайте можно скачать приятную тему для [...]

  25. 25
    antonio Says:

    We are waiting the tutorial too, but please, instructions for noobs ;-)

  26. 26
    Joakim Says:

    Greate Stuff!

    This is one of the best Javascript/css improvment I have seen. Good locking layout, simple installation and one known javascript library. Things tends to be more and more complex nowaday, but this is a school example, simple is more!

    Keep up the good work!

    Best regards, Joakim

  27. 27
    Ayham Alsuleman Says:

    Great Brilliant

  28. 28
    anyup Says:

    thinks for share

  29. 29
    Jeeremie Says:

    Thanks guys!

    @Antonio, I didn’t post the tutorial last week as promised because I was trying to turn this script into a Wordpress plugin but, not being an experienced PHP developer, it proved to be more difficult than I thought. I will have a look at the plugin later and write the article today. The tutorial will be as easy as 1,2,3. ;)

    @Joakim: Thanks! I always try to optimize my scripts whenever I can.

  30. 30
    Jeeremie Says:

    @Juan, Sorry, I forgot to answer you. First, my images are PNG-32, not PNG-24. Second, I tried PNG-8 with alpha transparency but shadow under the tab turned to be black and lost transparency in IE. Besides, gradient was really ugly. If you know a way to keep transparency with PNG-8 in IE without any fix, let me know.

  31. 31
    Web-kreation - Implement a Nice & Clean jQuery Sliding Panel in Wordpress 2.7+ Says:

    [...] one week ago, I introduced the Nice & Clean Sliding Login Panel built with jQuery which was a redesigned of my popular Mootools sliding panel. Today, we will see how to implement it [...]

  32. 32
    john Says:

    Great stuff here ! Does anyone know a good login script ? I use access_user right now, but as most php/mysql login sripts it can only be used to protect the whole page and there is no way to show content to registered users etc.. Can´t use a CMS.

  33. 33
    Gençay Says:

    Yes, thanks for lesson.

  34. 34
    CcC » Blog Archive » jQuery Login Panel Says:

    [...] Download Read More [...]

  35. 35
    JN0117 Says:

    Is there a way to make this push down the page(like the old script for mootools)?

    I have an issue with this script dropping down under the flash on my page. Tried using a z-index to fix this but I was unsuccessful.

    Nevertheless, I still need it to push down the page. Any ideas?
    Thanks

  36. 36
    Sliding Login Panel - Elegante panel deslizable - Desarrollo | pixelco.us blog Says:

    [...] Web: web-kreation.com/index.php/tutorials/nice-clean-sliding-login-panel-built-with-jquery [...]

  37. 37
    Jeeremie Says:

    @JN0117, To “push” the content down, change the position property to “relative” for the toppanel ID:

    #toppanel {
        /*position: absolute; */ /*Panel will overlap  content */
        position: relative; /*Panel will "push" the content  down */
        top: 0;
        width: 100%;
        z-index: 999;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
  38. 38
    John Says:

    Just mirroring taewoo’s concerns, is there any way of making the script degrade gracefully?

    I’m not the best at Javascript by a long shot, but could it be possible to have the ‘Login/Regsiter’ link to a login page if Javascript is disabled but toggle the slider if Javascript is enabled.

    The only way I could think this might work is if you assign a href value of the login page as default, then use jQuery to change this once the page is loaded.

    Just a theoretical approach, whether or not it would work, I was hoping you could tell me.

    Great script though, keep up the good work.

    John

  39. 39
    plisvb Says:

    Very Nice Script,

    I have a question though:

    Does the panel have to be on the top of the page, I would like to incorporate the script into my current design below my main navigation. Everything works fine however, when I click to open the panel, it always forces the browser to jump to the top of the page first.

    Anyone have an idea???

    Thanks in advance

  40. 40
    MissionSix Says:

    @John

    You wouldn’t have to change the href value… you can have your onclick event, which is essentially what the jquery is doing, return false. When a javascript returns false to an onclick event, the link is not followed.

    <a href=”link” rel=”nofollow”>don’t link me</a>

    i’m not exactly sure how to do this in jQuery, but its definitely possible.

  41. 41
    Jeeremie Says:

    @plisvb, you can place the panel wherever you want but you will have to change the #toppanel position property to “relative” in your css (see my comment above for code).

    You can keep “position:absolute;” if you want the panel to overlap the content but in that case you will have to add “position:relative;” to your container. For example, if you want to display your panel within <div id=”content”> … </div>, then your CSS code has to be something like this:

    #content{position:relative;}

    Browser jump to top because we set the link location to href=”#”:

    ?View Code HTML4STRICT
    <li id="toggle">
     <a id="open" class="open" href="#" rel="nofollow">Log In | Register</a>
     <a id="close" style="display: none;" class="close" href="#" rel="nofollow">Close Panel</a>			
    </li>

    Write href=”#content” instead and it will jump to the content.

  42. 42
    David Says:

    Great stuff. However, it’s not working in IE8/Windows 2003.
    Has anyone tried it if it’s working on IE8/XP?

    Thanks.

  43. 43
    David Says:

    Update to my comment.

    Sorry please ignore my previous post.
    It’s working great with IE8.

    I wasn’t set the security stuff correct.

    Sorry my friend.

    David

  44. 44
    Jeeremie Says:

    Wow! Still some people use Windows 2003? ;)

    It works perfectly in IE8/XP.

  45. 45
    ChevronX Says:

    I wonder how hard would this be to put it into Doku or Mediawiki.

  46. 46
    Linda Kelson Says:

    Great script… thanks.
    Check out: jQueryBasics.com
    http://www.jquerybasics.com

  47. 47
    plisvb Says:

    Thank you for this Jeeremie

  48. 48
    Matt Says:

    I tried to make it stick to the head even when i scroll but couldn’t manage. anyone, help please

  49. 49
    flo Says:

    Bonsoir, je vous remercie pour ce script sympathique, mais j’ai du mal à l’installer sur ma DB pour un site wordpress. Pourrait tu m’indiquer d’avantages ?
    Merci bien.

  50. 50
    Jeeremie Says:

    Je ne vais pas pouvoir t’aider si tu m’en dit pas plus ou si tu ne me montres pas un exemple en ligne.

  51. 51
    Johnny5 Says:

    Very nice article!

  52. 52
    Kim Alsgaard Says:

    This is great!

    I am currently developing a new site for our project, and this fits in perfectly. Easy to use “out-of-the-box”.

    Thanks!

  53. 53
    Graeme Says:

    How difficult would this be to make using the prototype framework?

  54. 54
    S. Muralikrishna Says:

    Thanks a ton, i was waiting for this for a long time

  55. 55
    Web Design Quote Says:

    Great script, I tried it and it looks nice. I’m trying to do some modifications though, lets see what I can come up with.

  56. 56
    Silver Firefly Says:

    It’s very nice but guess what? I won’t use it because it doesn’t degrade at all. There needs to be a fallback (using good ‘ole fashioned HTML and CSS) for those who have Javascript disabled (regardless of supposed stats). Good rule of thumb – don’t use Javascript in place of CSS.

  57. 57
    Silver Firefly Says:

    CORRECTION

    “Good rule of thumb – don’t use Javascript in place of CSS.”

    was meant to say:

    “Good rule of thumb – don’t use Javascript in place of HTML and CSS.”

  58. 58
    Jeeremie Says:

    I don’t agree at this point. Javascript is going to play an important role in the future. We should better encourage users to turn on their Javascript and even explain them how to do so with a short message than trying to work on some fallbacks.

    This is the code I use on this site to display a message to my readers who disabled Javascript:

    ?View Code HTML4STRICT
    <!-- If Javascript is disabled, display message below: -->
    <noscript>
     <p class="noscript">You will have to enable Javascript in your browser in order to view this site properly! <small>[ <a href="https://www.google.com/adsense/support/bin/answer.py?answer=12654" title="enable javascript in your browser" target="_blank" rel="nofollow">View Help!</a> ]</small></p>
    </noscript>
  59. 59
    David Pratt Says:

    Very nice. Have you thought about extending it so that the unused panel area could also act as an additional close trigger?

    This should do the job nicely:

    // Collapse the panel when the panel bg is clicked.
    $(“#panel”).bind(“click”,function(event){
    $(“#panel”).slideUp(“slow”);
    $(“#toggle a”).toggle();
    });
    // Prevent the panel form elements from trigging a panel close.
    $(“#panel *”).bind(“click”,function(event){
    event.stopPropagation();
    event.preventDefault();
    });

  60. 60
    Silver Firefly Says:

    @Jeeremie,

    I totally disagree with that because Javascript shouldn’t be required for a website to work correctly, instead it should be used to enhance a website’s functionality. A website should work without having to have Javascript enabled, including basic functionality such as logging in etc. If you have to display a message telling your visitors that they need to turn on Javascript to be able to use your website etc then your website is broken. End of.

    It’s acceptable to use Javascript if it enhances something. For example, if I applied the link nudging effect (http://davidwalsh.name/mootools-link-nudging) to my links, and a non-Javascript user was browsing my website, they would still be able to use the links. The Javascript is enhancing the links’ appearance but it isn’t required for the links to work as intended i.e. a non-Javascript user can still click on them and be taken to the destination page.

    Most people, if they have to do something to get your website to work for them, aren’t going to hang around. They’ll likely go elsewhere.

  61. 61
    Jax Newton Says:

    You might find the information here:
    jQueryBasics.com
    http://www.jquerybasics.com

  62. 62
    Silver Firefly Says:

    Someone on SitePoint confirmed that something similar to this sliding panel can be created with CSS only, which would make provisions for non-Javascript users.

    You could modify the CSS in the link below for it to look and behave almost like the jQuery sliding panel (just disable Javascript when you try the demo out).

    http://www.visibilityinherit.com/code/slide-in-demo2.php

  63. 63
    Javascript, jQuery, Tutorials… « PostIT Says:
  64. 64
    Julien Says:

    Hi

    Very nice job.

    I have a little problem. Is it possible to do a link in the title (like the control panel “Login | Register”), but a link which launch an other page.

    I want to put my flags for translation on it but … its not ok. I want a link to the profile too when we are log.

    Thank you for answer :)

  65. 65
    Jeeremie Says:

    @Silver Firefly, thanks for the link. I will have a look later. By the way, sorry for my previous comment. I totally agree with you, it is just I am really annoyed with all that talk about about script that must “degrade gracefully”. What a mouthful!

    Anyway, I still think we should tell users how to turn on their Javascript. Javascript can do much more than just enhance your pages with some cool effects and we should not be limited by just a few conservative users. My two cents. :)

    @Julien, you can add as many links as you want in the “tab”. Just add another list to the tab, like this:

    ?View Code HTML4STRICT
    <!-- The tab on top -->	
    <div class="tab">
     <ul class="login">
      <li class="left">&nbsp;</li>
      <li>Hello Guest!</li>
      <li class="sep">|</li>
      <li id="toggle">
       <a id="open" class="open" href="#" rel="nofollow">Log In | Register</a>
       <a id="close" style="display: none;" class="close" href="#" rel="nofollow">Close Panel</a>			
      </li>
     
    <!-- External Link -->
      <li><a href="http://yourexternallinkhere.com" rel="nofollow">You External Link here</a></li>
    <!-- END external link -->
     
      <li class="right">&nbsp;</li>
     </ul> 
    </div> <!-- / top -->

    Did you have a look at the next article “Implement a Nice & Clean jQuery Sliding Panel in Wordpress 2.7+“? If not, you should. It will help you understand how it works. Bonne chance!

  66. 66
    julien Says:

    hi and thx for your answer but… it doesn’t work at home…

    i can see the link when i go on mouse over but the click do nothing :(

    could you test if its the same for you plz or if i did a bad thing lol

    ty a lot

  67. 67
    Ainslie Stephens Says:

    Excellent job with this!

    For those asking about graceful degradation, it’s easy to achieve. As was already mentioned, you just have to set the HREF for the open link to reference a standard login page, and then add return false to the expand panel function. Actually you probably want to add it anyway to prevent unwanted page jumps.

    // Expand Panel
    $(“#open”).click(function(){
    $(“div#panel”).slideDown(“slow”);
    return false;
    });

    // Collapse Panel
    $(“#close”).click(function(){
    $(“div#panel”).slideUp(“slow”);
    return false;
    });

  68. 68
    Jeeremie Says:

    Thanks Stephens for the info.

  69. 69
    julien Says:

    y ty for info.

    i found my pb… it was a conflict with another plugin (bslink)

    i will try to correct it.

    ty again for ur job

  70. 70
    julien Says:

    for information, my problem was ther because there was a conflict with the plugin bslink, which have a class “tab” too.

    so i just modify the class to “tab_login” in the panel and the css file and now its ok.

    bye and ty

  71. 71
    Jeeremie Says:

    Glad to know you could fix it.

  72. 72
    Craig Says:

    First of all, thanks for this. I have my login all hooked up with Expression Engine on a test site and it’s working great.

    It seems like it should be possible given some of the earlier versions of this (the Mootools one) to have more than one tab/window, but I couldn’t find anything to help me figure this out with the jquery version.

    What I would like to do is to have a second tab next to the login tab which could be used for a “view cart” sliding panel. Currently the login tab spans the width of the container. I’m not sure if it’s my CSS skills that are lacking, my jquery, or both.

    Can you point me in the right direction?

  73. 73
    Sliding jQuery Login Panel that reduces needed screen space | Weblenium Says:

    [...] more information: http://www.web-kreation.com General, [...]

  74. 74
    John Dorian Says:

    Man this sucks ! It’s overlapping all over the place, i can make that in five seconds. Lame, really lame. Bagingo !

  75. 75
    Cody Says:

    How do I make it so when someone submits the form, it doesn’t automatically close the panel?

  76. 76
    joe Says:

    Does anyone know how to make a mediabox lightwindow work when the login panel is operational. I can get the lightwindow to work when I take out the mootools12.js script for the slide in login in. But when i put it back the login window will not work. Anyone run into this problem. Thanks for everything.

  77. 77
    Derleth Says:

    que bonito :D y es gratis :D

    nice i love you xD

  78. 78
    Mark Says:

    Hi jeeremi,

    Thanks for a GREAT SCRIPT!!! :D Should be way more people like you!

    I have a question:
    Is it possible to have the menu in the bottom of the page so it “drops” up istead?

    Again thanks, a donation is comming your way. :)

  79. 79
    Eve Says:

    I have tried to tweak the events triggering the slide down and up such as mouseover and mouseout but I can’t get it to work properly. The panel is blinking and rapidly slides up and down many times, it doesn’t work as smoothly as it does with click event.

    Do you know what I can do to fix it?

  80. 80
    Jeeremie Says:

    Thanks! You can have the menu at the bottom if you want, but it won’t be easy. First, you will have to edit the tab images and then tweak the code to make it stick at the bottom and have tab on top.

  81. 81
    mubarak Says:

    Amazing !!!!!!!!!!!!!!!!!!

  82. 82
    JR Says:

    again this is an awesome jquery write up… i just changed my theme and would like to implement the jquery version but with the mootools look that you created initially (and would definitely like to integrate it into the top nav bar…just like you did on this site)… any help you can throw my way would be much appreciated.

    basically i already got this (the above tutorial) working before i just couldnt figure out how to change the look to the mootools look.

    and again thanks.

  83. 83
    Phil Says:

    Is it possible to position the tab to stay in the middle of the page? I’ve got a page width of 860px and would love for the tab to stay aligned on the right of that. Any coding help would be appreciated!

  84. 84
    Dan Says:

    Crazy, I just came here to ask the same thing… I’d like to center the tab too. So far, changes to #toppanel and #panel have yielded no results.

  85. 85
    Jeeremie Says:

    An easy way would is to change the right value for .tab ul.login in slide.css:

    .tab ul.login
    ...
    /*right:150px;*/
    right:400px;
    ...
    }
  86. 86
    Phil Says:

    Not exactly what I was looking for. I’m trying to keep the login tab fixed on the right side of a wrapper (860px wide). Changing the css from right: 150px to 400px does move it over, but doesn’t keep it aligned on the right side of my wrapper. Sorry, I should have clarified this earlier. Any other suggestions?

  87. 87
    Robert Says:

    Thank you for the awesome script!

    Question:
    Is it possible to link to sections of the page without the panel eating the top portion of the page?

    Example:

    and then further down on the page…

    When I attempt this the panel remains at the top of my window, but the top portion of the page is gone and the is now at the top of the window with no way to scroll back up.

    Any help would be greatly appreciated!!

  88. 88
    Jeeremie Says:

    @Phil, I understand now. Read comment #36. If you want the tab to be on the right without a margin, set “right:0;” in the code I gave you above.

  89. 89
    Eve Says:

    I run into a little problem. I noticed that when I have other java scripts that require positioning those element are visible on the panel ! this happens with some input boxes, links with tool-tips, even paragraphs.

    This is really strange. I think that positioning of element in css is responsible for this because when I removed positioning from the element it disappeared from the panel.

    Can someone help to solve this?

  90. 90
    Mike Says:

    I was wondering, is there any way to use 2 of the sliding panels on the same page? What i’m trying to do is use one panel for a game site to hide the game server status and use the other panel to show admin functions only when logged in. I’m new to jQuery and I don’t know very much but i’m catching on. I have already tried to have two panels on one page and when clicking on panel 1, it opened panel 2 and so on.

  91. 91
    Robert Says:

    Ok, so clearly my question didn’t work as it ate the coding I inserted. How do you comment out your code on here to use examples?

    My problem is that when I create what is essentially a Table Of Contents for that page and each section has a link down to that section further down on the page, the links don’t work as they should. It scrolls down but anything above that section disappears into the top of the page and you’re unable to get back to it. Any ideas on how to stop that from happening?

  92. 92
    Thomas Says:

    Any chance this could be easily made into a Drupal module?

  93. 93
    piatrouc Says:

    I’m having major difficulties with flash in page witch should be slide over by login panel.

    Sliding panel goes under flash content no matter what – wmode is set up as transparent and z-index is higher for panel…

    any advices?

  94. 94
    Robbie Says:

    Hi, great script! I’m trying to setup the script as per my css and essentially have the entire panel go within a width restraint of 900px, center aligned to the browser window, right at the top of the page. Can somebody please tell how to achieve this? Thanks in advance

  95. 95
    Jeeremie Says:

    @piatrouc, this happens frequently with flash and I really don’t know how to fix it. Does anyone know?

    @Robbie, pls read comments.

  96. 96
    piatrouc Says:

    Actually just found the solution for Flash problem:

    wmode should be opaque (not transparent)

  97. 97
    Willem Says:

    I want to use the script the other way around: positioned at the bottom of a div and slide out to the top when I click the link. Is this possible?

  98. 98
    Adam Says:

    hello

    What about people who doesn’t have JavaScript enabled in the browsers? I think you should add some solution because now when I have disabled JavaScript I can’t login by your panel because I can’t open it without JavaScript. I think after clicking you should be run to any web page of the site where you can login in some standard login form. Is that possible? I can’t see such possibility into your demo.

  99. 99
    Robbie Says:

    Hi Jeeremie and all, I read and re-read the comments and finally figured it out with my files thanks! One final minor problem I have is that when I click on the open/close tab, the panel kind of stutters on the way down (opening) but is smooth closing back up. Do you know why this is happening and how to make it smooth upon opening and closing the tabs? I’m using php include statements and have a couple of other js scripts running on the page so I don’t know if that’s causing an issue or not.
    Thanks again!

  100. 100
    Jeeremie Says:

    @Willem, yes, everything is possible. Depends how much effort you want to put in. You will have to edit all the files and images to do so.

    @Robbie, Try to isolate the problem by deactivating other JS scripts.

  101. 101
    Willem Says:

    Maybe you can point me in to the right direction? I know how to change the images, but how to open the panel to the top instead of the bottom?

  102. 102
    Jeeremie Says:

    There’s too many things to change. That would be too long to explain it here. HTML, CSS, Javascript and images need to be edited.

    Maybe you can have a look at Mooslide. Panel can slide from bottom. It is the script I used for this sliding panel.

  103. 103
    Willem Says:

    I know I have to edit the images and CSS, but I don’t know how or what to edit in the Javascript files to make the the effect open from bottom to top of a div. In only need the setting that makes this happen.

  104. 104
    Robbie Says:

    @Jeeremie, Thanks for the tip Jeeremie however I tried deactivating the other js function which are basically called in through php include statements, but still no change in the effect. when I click on the open/close tab, the panel still stutters on the way down (opening) but is smooth closing back up. Is it something in the panel script that I need to look at?

  105. 105
    Robbie Says:

    On another note, I was reading Stephens comments #61, on a graceful degradation, but I don’t understand how when js is enabled, how will this panel work? Won’t it still just redirect the user to the HREF page specified instead of just opening the tab? Can you please clarify how to achieve this as I’ve already included the return false statements in the slide.js file.
    Thanks!

  106. 106
    Anthony Says:

    @John (Comment #29), I have been looking for a login script to accomodate this great panel and stumbled on the access_user script you’re using. I know this is a separate issue altogether, but can you please see my issues at http://www.finalwebsites.com/forums/topic/installation-help and if possible, tell me how to install the access_user script?
    Thanks!

  107. 107
    Robbie Says:

    @Jeeremie, would changing the size/width of the panel itself slow down the effect of the tabs slide function as I did change the overall width to 900px in the end?

  108. 108
    Jeeremie Says:

    Did you try to put the panel right after the Body tag and without resizing it. Try this and see if it fixes your problem. I don’t really know what to tell you if this doesn’t work.

    Won’t it still just redirect the user to the HREF page specified instead of just opening the tab?

    No, it will redirect to the HREF page specified only when javascript is disabled.

  109. 109
    Jon Says:

    My page is acting crazy with the login panel.
    When clicking on the button the action send the user to the bottom of the page. Making the user to scroll to the top of the page to view the panel.
    changing this doesn’t help.
    #content{position:relative;}

    Thanks in advanced.
    Jon.

  110. 110
    Mike Says:

    @Jon, First you have your position set to relative and in your css it seems you want the panel to overlap your content, not push it down. In the #toppanel css id set position to absolute. the #content div id is in your code, but has nothing to do with the panel itself. Its in a div under the panel just under your header.php include.

    Also why do you have multiple instances of jQuery running? I see at least 3 separate versions running within your Wordpress code, 1.2.3, 1.2.6 and 1.3.2. Take the code off for the first 2 versions and then see what happens, might be a conflict.

  111. 111
    Jon Says:

    Thanks man.
    I tried that but no luck.
    I put back all the jquery scripts back in after i tried that,because it was giving me errors in other widgets.
    Yes. i wanted to push the content down.Im having no luck on it.
    still just sends me to the botom of the page.

    Any further help thanks in advanced.
    Jon.

  112. 112
    Amanda Says:

    How do I change the height of the panel?

  113. 113
    Marc Says:

    Hey guys i have a question that takes me the whole day!
    How can i open the sliding login panel out of the normal link in the main content?

    Greets

  114. 114
    Robbie Says:

    @Amanda, I believe its the slide.css file, #panel height attribute

  115. 115
    Robbie Says:

    @Jeeremie, thanks for the resizing tip, that’s what ruined the smooth transition. I specified height in pixels instead of 100% and that worked fine.

    As for the HREF issue, I have disable js and tried changing the Log In | Register to Log In | Register for example, but with/without js disabled, the tag redirects to the home.php page. Any ideas how I can fix this?

  116. 116
    Luicid Says:

    Hi !
    Thanks for this script but I saw an error :
    when we replace text “Log in | Register” By longer
    we notice that the text distorted the panel.
    So, I recommend changing


    .tab a.open, .tab a.close {
    height: 20px;
    line-height: 20px !important;
    padding-left: 30px !important;
    cursor: pointer;
    display: block;

    THIS —–> width: 100%; <——- THIS

    position: relative;

    top: 11px; ”

    By “width: auto;”

    :)

  117. 117
    Albi Says:

    Thank you for the information.
    great work

  118. 118
    7 Incredibly Beautiful Sliding Panel with jQuery Says:

    [...] 7. Nice & Clean Sliding Login Panel [...]

  119. 119
    Painel de login suspenso | Links Web Says:
  120. 120
    Ericc Says:

    AWESOME job!
    Too bad for me that it doesn’t slide from the bottom, but great script !

  121. 121
    durand Says:

    thanks this has been a great help

  122. 122
    Simon Says:

    Hi, great script, but is there any way of opening the panel without using the href “#” tag because this obviously screws up the current url. For example I would love to implement it on oscommerce header file but if you try opening the panel on any page other than the homepage it simply redirects user to homepage due to the “#”?

  123. 123
    贝库 Says:

    good

  124. 124
    gaurav Says:

    Nice script. Anyone figure out a way to have two of these on the same page?

  125. 125
    Luc Says:

    Great script!

    Small question though. Is it possible to submit the form when the users uses the -key on the keyboard? Now they have to use to go to the Login-button, after the Password-field is filled in. And on the Login-button they have to press to submit the form.

    Thx for a reply.

  126. 126
    Luc Says:

    I see that some tags were removed in my comment. Here is the complete version:

    Great script!

    Small question though. Is it possible to submit the form when the users uses the ENTER-key on the keyboard? Now they have to use TAB to go to the Login-button, after the Password-field is filled in. And on the Login-button they have to press ENTER to submit the form.

    Thx for a reply.

  127. 127
    Desmond Chee Says:

    hi,

    How can i change the slide down length ? Because if i put in more information, the extra info will not be show ( out of the slide down area)

  128. 128
    Jeeremie Says:

    @Luc, Wordpress removes html tags automatically. No idea about keys you talk about.
    @desmond, edit height for #panel in slide.css

  129. 129
    Interesting Web UI Effects at A Path Less Taken Says:

    [...] a list of 7 sliding panel effects at http://www.balkhis.com/. Of particular note is the one found here which has the most polished appearance of the [...]

  130. 130
    JJ Says:

    Jeeremie,

    First off, awesome work. This is hands down the best sliding panel implementation I found on the web. I found an article that covered 7, including yours and yours was the best.

    I do have one question. I had already implemented virtually the same think using jQuery, but I was having trouble getting the “tab” to over-lay the content below. In your solution it works, but when I try to replicate your solution and I set the “tab” to position: relative it displaces the content below it rather than over lay it. I cannot seem to find the difference between your example and my attempt to replicate your example.

    So, essentially, my question is what in your script causes the “tab” (ul, li, a) to overlay the content below it.

    Thanks for your help and for such a great plug-in!

  131. 131
    Jeeremie Says:

    If you open slide.css, you will notice the position property for #toppanel is set to absolute:

    #toppanel {
    margin-left:auto;
    margin-right:auto;
    position:absolute; /* This will cause the panel to overlay the content */
    /*position:relative;*/ /* This will push the content down */
    text-align:center;
    top:0;
    width:100%;
    z-index:999;
    }

    This causes the panel to overlay the content. But if you change it to “position:relative;” it will “push” the content down. I should add #toppanel works as a container for the panel content and tab.

    Does it help?

  132. 132
    JJ Says:

    I was trying to get my tabs to overlay the content below, but also to get my #toppanel to displace the content below. I achieved this by making the tab divs position: absolute. That seemed to work. Thanks again for the great post!

  133. 133
    gaurav Says:

    Hello,

    I am using your script on the website given above. Works great for people asking for help. Problem is, when users try to print the page, it first comes out with the Need help content, which I do not want to print. How can I fix that?

  134. 134
    Robin Henriksson Says:

    Hello!

    I have implemented your code and it worked fine in firefox,

    but when I check in IE (7), the panel margins left about 600-700 px and starts there?

    I cannot find the problem in my code, but when I delete the toppanel div, the whole panel go back to normal,
    besides the toggle button who doesn’t show and the background that isn’t transparent anymore.

    When I delete the div named “shadow” in my code the panel sets itself to my wrapper div, otherwise it is margined left 6-700 px like I said above.
    It’s so hard to explane, but I hope you understand.

    Otherwise I maybe can find some place to upload the whole homepage for some days and you can help me from there.

    Please Revert.

    Best Regards
    Robin Henriksson

  135. 135
    Nick Says:

    im wondering what login system you used for this…i tried access_user but kept coming up with errors when i tried to access its example page…

  136. 136
    Robin Henriksson Says:

    Hello Again!

    I haven’t found the solution yet so I post some images for the right and wrong looks.

    In Firefox, it look correctly like this:

    http://i43.tinypic.com/35baucm.jpg

    But in IE (I have IE7) it looks like this:

    http://i41.tinypic.com/2d8gnlx.jpg

    What can be the problem?

    Please help.

    Best Regards
    Robin Henriksson

  137. 137
    Andy Says:

    Hi

    Great script but I am trying to implement this on a site that HAS to load jquery.js?ver=1.2.6 on teh same page and unfortuntely this breaks this great script :(

    Any ideas why and might you be able to get it working with jquery.js?ver=1.2.6?

    Thanks

  138. 138
    Junaid Says:

    Hi,

    I have implement this on my page it’s work fine but i have some trouble kindly help me out.

    i have replaced login link with my image bar.

    After applying scripting on page when i scroll down my page the image also goes down.

  139. 139
    wolf Says:

    The script works great as long as I do not use prototype on the page ….
    Would it be fine if I used mootools instead of jquery here?
    Thanks!

  140. 140
    Robin Henriksson Says:

    Hello!

    I have now solved my problem with the IE center problem that I mentioned above. I had set text-align: center in Body.

    Hope this helps anybody else.

    Wolf! Try noConflict with jQuery like this after you have called jquery library:

    jQuery.noConflict();

    and you also need to change almost all $ to jQuery in your jQuery plugins. If you do not understand you can always google jquery noconflict. I use this together with prototype and it works great.

    Best Regards
    Robin Henriksson

  141. 141
    wolf Says:

    @Robin,

    funny -this is almost exactly the approach I took yesterday and everything works like a charm! I just replaced all instances of “$” with “jQuery” in “slide.js” and that was all that was necessary to make it work – not even calling jQuery.noConflict() anywhere at all and so far no problems with any of my plugins. If that was the case I would try”jQuery” for “$” in jQeury plugins that run into conflicts. All good so far! Thanks!

  142. 142
    Jeeremie Says:

    The jQuery noconflict script is really great and I wish Mootools and other AJAX libraries had something similar. That would save everyone countless hours of work.

  143. 143
    twincascos Says:

    I’ve turned this into a wordpress plugin.
    SuperSlider-Login http://wordpress.org/extend/plugins/superslider-login/
    It comes with an options panel, where you can place the tab at page top or side, define the animation type, speed etc. and it automatically changes language according to your site prefs.
    Includes the registration form if registration is active, etc.
    Great tutorial, thanx.

  144. 144
    Sliding Login Panel with Ajax and JQuery | Sinvise Says:

    [...] you follow on this link it will guide you through a very clean tutorial on how to implement it, I don’t want to copy [...]

  145. 145
    Terry Says:

    I have installed this script on a site I’m developing. My client LOVES this! However, I just discovered a problem I don’t know how to remedy.

    In IE, I get bounced back to the home page of the site when I click on the link to slide down the panel. The panel begins to slide, then I get bounced to home. This is working beautifully in FF.

    Perhaps I have a conflict of some sort between this, mootools and Ajax search. I am running jQuery in no conflict mode. I’m not a programmer, I’ve cut and pasted each of these into the site so I don’t know how to approach this.

    Perhaps it has something to do with the #link?
    Log In | Register

    Anyone care to take a peek at this?

    http://www.reddogrun.com/index.php

    Thank you!

  146. 146
    Chris Beaman Says:

    Very cool. Thanks!

  147. 147
    Elvis Says:

    Wow, awesome. Any advice how to center the open/close tab below the panel?

  148. 148
    BinaryKitten Says:

    with the toggle on the link element, preference would dictate that it would be better to happen after the completion of the scroll.

  149. 149
    Ajax Açılır Kapanır Giriş Paneli | Script Indir Says:

    [...] Script Adı : Sliding Login Panel with jQuery Dil : Ajax Açıklama : WordPress ile de uyumlu hale getirilmiş açılır kapanır giriş paneli uygulaması. Örnek : Buradan Türü : Free İndir : Buradan [...]

  150. 150
    Shawn Says:

    Would someone please guide the Drupalers in the right direction for adding this to a Drupal site? I have come a long way since I first started on my site, but I still have much more to learn. If someone could at least point me in the right direction for hard coding this, and/or building a Drupal module that would be awesome.

    Thank you!

  151. 151
    kingsley Says:

    question

    script works but a few questions

    after a successful submit for login,
    It seems the slider still says hello guest,
    is there a way to have it say/do something else with a succesful registration or login?

  152. 152
    Mike Says:

    Has anyone figured out how to do 2 panels on one page?

  153. 153
    20 jQuery Tutorials And Plugins To Impress Your Friends | Spyre Studios Says:

    [...] Nice & Clean Sliding Login Panel built with jQuery ↓ [...]

  154. 154
    Jake Rocheleau Says:

    This is a great script, and thanks for posting up a demo too! I can’t stand seeing screens of a great-looking UI but having no demo to check out before following the tutorial

  155. 155
    Best jQuery Tutorials And Plugins for your website. | guidesigner.net Says:

    [...] Nice & Clean Sliding Login Panel built with jQuery ? [...]

  156. 156
    Paul Says:

    Hello

    How can I set to auto focus on the username?

    Thanks!

  157. 157
    Joakim Says:

    Hi,

    Great script – but I am having problems with a flash that runs directly below the panel. Somehow the flash is displayed on top of the content when it slides down? Can I change the z-index or any other suggestions?

    regards, Joakim

  158. 158
    etkileyici jquery uygulamaları « Bay Bedava – Netten Başlıklar Says:

    [...] using jQuery CSS Dock Menu jQuery Virtual Tour How to Load In and Animate Content with jQuery Nice & Clean Sliding Login Panel built with jQuery jQuery Dropdown Search Panel Dynamic Drag’n Drop With jQuery And PHP How To Build A Personal [...]

  159. 159
    Etkileyici jquery uygulamaları | Aruha Says:

    [...] using jQuery CSS Dock Menu jQuery Virtual Tour How to Load In and Animate Content with jQuery Nice & Clean Sliding Login Panel built with jQuery jQuery Dropdown Search Panel Dynamic Drag’n Drop With jQuery And PHP How To Build A Personal [...]

  160. 160
    blogg | animadverto corporate blog Says:

    [...] using jQuery CSS Dock Menu jQuery Virtual Tour How to Load In and Animate Content with jQuery Nice & Clean Sliding Login Panel built with jQuery jQuery Dropdown Search Panel Dynamic Drag’n Drop With jQuery And PHP How To Build A Personal [...]

  161. 161
    Jules Says:

    I love your script and got it to work without a hitch, Thank you for sharing!

    I was wondering if there was a way to for the panel to load open.

    I am hoping to be able to make it so a user won’t have to click to open the panel up again after hitting “reset pw” (you have a link I’m using a button) to gain access to the reset pw form. I would also like it to be open when the page loads after the user clicks on an email link to reset the password.

    Thanks for any insights!
    Jules

  162. 162
    Jules Says:

    Well Jeeremie… I finally found what was right in front of my nose the whole time!

    I just couldn’t figure out how you were hiding the panel. I kept looking for a display:none on the #panel or #toppanel and I even did a word search, though I think now for some reason I typed in hidden. My brain just wasn’t registering what was on the screen.

    Good lord, I think I’ve been sitting her too long, time for a break! LOL!

  163. 163
    20个jQuery教程和插件 « SonicHTML – 高品质XHTML+CSS服务 Says:

    [...] Nice & Clean Sliding Login Panel built with jQuery ↓ [...]

  164. 164
    Jasa Web Desain Says:

    it work on every browser…. very nice..

  165. 165
    Andrew Says:

    hey

    I trying to use this script with a tpl file, it dosent seem to work any idea?

    please help me.

  166. 166
    Shadi Says:

    Hello,
    I am trying to put adsense into the panel but its not appearing

  167. 167
    Andrew Says:

    hello in response to Joakim :

    Use the below flash code it will wk perfectly

    1.
    2.wmode=”opaque”

    Thanks.

  168. 168
    Andrew Says:

    1.
    2.wmode=”opaque”

    .
    .
    .
    .
    .
    .

  169. 169
    Shadi Says:

    Now the sliding panel when open comes over an adsense ad, all is good, except that adsense ad is not clickable anymore

  170. 170
    Ajax Cookies | George Jipa Says:

    [...] 1. Sliding login panel – link [...]

  171. 171
    jQuery Tools that Rock | Linfiniti Geo Blog Says:

    [...] Sliding panels for login screens etc by web-kreation.com [...]

  172. 172
    nuke Says:

    man, nice job! great!

  173. 173
    iHolyElement Says:

    Still cant fix it, Any help? Thanks!

  174. 174
    Oliver Says:

    Very Cool SCRIPT! Thank you!

  175. 175
    iHolyElement Says:

    Hello, I’m iHolyElement, At the moment im using this for my main page for my site. Witch you can view the Code here… http://iholyelement.org/js/jquery-latest.pack.js And it makes so those Dropdown menus/boxes on the main page to be expanded all of them without clicking on them, How do i fix this? Thanks. Not so good with Javascript/jQuery yet. If i dont reply within 30 minutes send the reply to my email… iHolyElement@live.com, Thanks!

  176. 176
    john Says:

    Hi nice work,

    It’s a shame that the close button doesn’t show on ie6 because of the png fix..

    if anyone knows how to combine the 24 ways png fix and the close panel button let me know…

  177. 177
    thomas Says:

    Yes , thanks

  178. 178
    jonners Says:

    This code is brilliant thanks for providing it.

  179. 179
    Ampped Aeon Says:

    How can i move the bar so it is at the far left and not the right? Im having a problem where internet explorer pushes it way far right out of the page?

  180. 180
    Robin Henriksson Says:

    Ampped Aeon,

    I do not know if it was the same problem I had, but if it is, set body text-align to left instead of center or right.

  181. 181
    Etkileyici Jquery Uygulamaları | Arşiv Merkezi Says:

    [...] using jQuery CSS Dock Menu jQuery Virtual Tour How to Load In and Animate Content with jQuery Nice & Clean Sliding Login Panel built with jQuery jQuery Dropdown Search Panel Dynamic Drag’n Drop With jQuery And PHP How To Build A Personal [...]

  182. 182
    jQuery Sliding Login Panel - Themeflash : One Stop For All Your Web Resources Says:

    [...] Sliding Login Panel – learn how to show/hide a nice login panel using jQuery. [...]

  183. 183
    5 Sliding Content Techniques, Examples & jQuery How to’s | Noupe Says:

    [...] Sliding Login Panel built with jQuery- [...]

  184. 184
    5 Sliding Content Techniques, Examples & jQuery How to’s - Programming Blog Says:

    [...] Sliding Login Panel built with jQuery- [...]

  185. 185
    Wordpress Blog Services - 5 Sliding Content Techniques, Examples & jQuery How to’s Says:

    [...] Sliding Login Panel built with jQuery- [...]

  186. 186
    小T Says:

    nice work!做得真漂亮

  187. 187
    5 Sliding Content Techniques, Examples & jQuery How to’s | huibit05.com Says:

    [...] Sliding Login Panel built with jQuery- [...]

  188. 188
    25+ Awesome Slider Techniques NEED TO HAVE for any Web Developer | tripwire magazine Says:

    [...] Sliding Login Panel built with jQuery [...]

  189. 189
    5 Sliding Content Techniques, Examples & jQuery How to’s | SeanBurdick Says:

    [...] Sliding Login Panel built with jQuery- [...]

  190. 190
    ThinkBohemian Says:

    There is a problem with the slide effect and jrails, did anyone else run into this, or figure out a solution?

  191. 191
    jQuery İle Hazırlanmış Sürgülü Panel Eklentisi « NeYeni.Net - [ yeni olan ne varsa ] Says:

    [...] Sliding Login Panel eklentisi ise bu yetenekli çatılardan biri olan jQuery ile hazırlanmış oldukça kullanışlı bir eklenti. [...]

  192. 192
    5 Sliding Content Techniques, Examples & jQuery How to’s | Web Design GroundBreak Says:

    [...] Sliding Login Panel built with jQuery- [...]

  193. 193
    JQuery: Die 20+ besten Content – Plugins (Scroll, Accordion, Slide) | BLOGRAMMIERER Says:
  194. 194
    The best tutorials combining HTML,CSS,PHP and JQuery | blogfreakz.com Says:

    [...] How to implement a Post-to-Wall Facebook-like using PHP and jQuery [...]

  195. 195
    25+ Awesome Slider Techniques NEED TO HAVE for any Web Developer | huibit05.com Says:

    [...] Sliding Login Panel built with jQuery [...]

  196. 196
    snowski bbPress Theme — Eric Barnes Says:

    [...] theme features a nice clean look and includes a jQuery slider for login and [...]

  197. 197
    20 jQuery Tutorials And Plugins To Impress Your Friends | WEBDESIGN FAN Says:

    [...] Nice & Clean Sliding Login Panel built with jQuery ↓ [...]

  198. 198
    Jquery / Ajax Sliding Panel | Tyler Merrick Says:

    [...] Read Article… [...]

  199. 199
    Nice & Clean Sliding Login Panel – jQuery Plugin | Ajaxdump Says:

    [...] Sample| Tutorial Share and [...]

  200. 200
    Maddin Says:

    Hi on my testwebsite I can see a problem with the graphics. They are not implemented correctly. Who can help me? I can give the test url!

  201. 201
    Igor Stepanov Says:

    I have modified this example to use in CMS ModX, which is actively used library Mootools v.1.11. Maybe someone else needs this update script. You can download this script here »

  202. 202
    Tangerois Says:

    This is brilliant thanks for providing it. Can i use it for wordpress?

  203. 203
    95+ Exceptionally Useful jQuery Plugins, Tutorials and Cheat Sheets | tripwire magazine Says:

    [...] Sliding Login Panel built with jQuery [...]

  204. 204
    jeeremie Says:

    Did you read the article? This is in the last paragraph of this article.

  205. 205
    Sliding login panel with jQuery | ShakyaNilam Says:

    [...] Demo Visit Website Tags: AJAX / Javascript, Tutorials, Wordpress You can follow any responses to this entry [...]

  206. 206
    Josh Says:

    Hi,
    I want to write my code on LOGIN button ..dont know which LOGIN system of php/mysql u are talking about..can u please guide me to make it work?

    thanks

  207. 207
    bizamajig Says:

    Great work, we are excited to use your widget.

    We have a global top menu “bar” with height: 28px, and we want to add your slideDown login script to this bar.

    Our other links appearing on this menu bar are using HREF or AJAX to navigate.

    Can we alter your script/css to drop the “tab” aspect of your design, allowing us to add your Login / Register link to our menu “bar”?

    Any punchlist items (possible starting points) you might mention will be helpful for us to get started with our customization process.

    Thanks in advance ;)

  208. 208
    Sexy Wordpress | Cyxob’a žurnals Says:

    [...] nu munom RSS padevem, kur par sekseigū paneļi ari uzzynōju. Pateik! Poša ideja ir apraksteita web-kreation blogā. Pats pajiemu vīnu nu Wordpress spraudņim, kas realizej ideju. Saite. Tagad maņ žurnala [...]

  209. 209
    Ryan Says:

    Does anybody notice how the shadow for the tab and the background that is stretched are slightly different? Can anybody please help me fix that? I keep on seeing a darker shadow for the actual tab area compared to the line that is stretched across.

  210. 210
    Login popup | أرخص هوست فى مصر AWEBSO ALEX WEB SOLUTIONS Says:

    [...] script example here ajax script demo here ajax script download here Posted in ajax « Image zoom popup [...]

  211. 211
    Ravikumar V. Says:

    nice one thanks :)

  212. 212
    wxipn Says:

    Hello and thank you for plugin,
    A question, how is that possible as we confirm the form of connection (my form sending another page) so that the slider does not close?

  213. 213
    Luke Vear Says:

    Hey guys!

    If you want to center the tab change the following:

    .tab ul.login {
    display: block;
    position: relative;
    float: right;
    clear: right;
    height: 42px;
    width: auto;
    font-weight: bold;
    line-height: 42px;
    margin: 0;
    color: white;
    font-size: 80%;
    text-align: center;

    to

    .tab ul.login {
    display: block;
    position: relative;
    float: right;
    clear: right;
    height: 42px;
    width: auto;
    font-weight: bold;
    line-height: 42px;
    margin: 0;
    right: 42.5%; <——- Put this in!!!
    color: white;
    font-size: 80%;
    text-align: center;

  214. 214
    jQuery Login Panel moduł dla Pligg 1.0.1 | spuavick Says:

    [...] bazując na module Moo Login stworzonym przez Yankidank’a, a także rozwiązaniu Jeeremie, który stworzył całość; ja jedynie utworzyłem z tego moduł do Pligg’a. Oczywiście [...]

  215. 215
    51 Form Element Resources and Tutorials Using CSS And Javascript | pc-aras Says:

    [...] 23. Nice & Clean Sliding Login Panel built with jQuery [...]

  216. 216
    Chad Says:

    Can we please get the PSD for the images? Not every site has those colors :)

  217. 217
    jeeremie Says:

    I work with Fireworks, not photoshop. That’s why there’s no PSD is not included. I can send you the PNG though if you want to edit it in Fireworks.

  218. 218
    brierycredact Says:

    Thank you for great post!

  219. 219
    jerryi Says:

    This is brilliant thanks for providing it

  220. 220
    51 Form Element Resources and Tutorials Using CSS And Javascript - Programming Blog Says:

    [...] 23. Nice & Clean Sliding Login Panel built with jQuery [...]

  221. 221
    Nice Sliding Login Panel built with jQuery | amolwable.com Says:

    [...] Web-kreation has shared sliding login panel that show/hides the login panel on top of page. The panel works by overlapping the content rather than pushing it. [...]

  222. 222
    Pretty Sliding Login Panel With MooTools/jQuery - Programming Blog Says:

    [...] is sharing a beautifully-crafted sliding login panel that is very handy to be used in websites with limited [...]

  223. 223
    Sliding Login Panel With MooTools/jQuery | oOrch Blog Says:

    [...] sharing abeautifully-crafted sliding login panelthat is very handy to be used in websites with limited [...]

  224. 224
    Pretty Sliding Login Panel With MooTools/jQuery | devhideout.com Says:

    [...] John on Oct.02, 2009, under Web Resources Web-kreation is pity a beautifully-crafted shifting login panel which is really accessible to be used in websites with singular [...]

  225. 225
    Web-kreation – Nice & Clean Sliding Login Panel built with jQuery | My Web Development Bookmarks Says:

    [...] See the article here: Web-kreation – Nice & Clean Sliding Login Panel built with jQuery [...]

  226. 226
    Kuba Says:

    Well,Nice job you did here with this.
    It Works gist grate,but i got a question….,im a newbie in this field and i would like to know or if someone can direct me somewere wrere i can learn. Ho to make the register and the login work.

    I have gist starded making my frist template,and ….i know only 10 % of what dreamwaver cs4 can do.

    I will apreciate if someone can direct me somewere were i can learn,or if someone can explain at least how…sould i start.
    Thank YOU.

    Im really sorry ,if i wasnt clear,my English is not so good.
    Thank You again.
    Alex

  227. 227
    PatelVadi Says:

    Hello,

    What code needs to change to get the sliding menu to work from left or right side of the screen. Right now it pulls down from top, but I’d like to have it pull from the left. How can I do that?

    Patel

  228. 228
    Sliding Login Panel With MooTools/jQuery… « wiki.laroouse Says:
  229. 229
    Beutiful Sliding Login Panel With MooTools/jQuery | guidesigner.net Says:

    [...] 13:02 Posted in category Development, Joomla, Jquery No Comments Web-kreation is sharing a beautifully-crafted sliding login panel that is very handy to be used in websites with limited [...]

  230. 230
    XanelaWeb – Diseño, web y nuevas tecnologías » Panel deslizante con jQuery Says:

    [...] Sliding Panel | Demo | Descarga [...]

  231. 231
    95+ Exceptionally Useful jQuery Plugins, Tutorials and Cheat Sheets « Photoshop.vn – Your Design Resource Says:

    [...] Sliding Login Panel built with jQuery [...]

  232. 232
    lavaper Says:

    I noticed that the mootools version slides the login box (and it’s contents – the login forms) from top pushing the content below down. In jquery version it just slides the tabs down and shows the login box (and it’s content – login forms).

    I’ve read about pushing solution but how to make panel contents to slide from top not just show up after tabs slide down?

  233. 233
    Ashwin Vijayakumar Says:

    The WP Sliding Login/Dashboard Panel is being displayed all the way at the bottom of my Wordpres 2.8.3 page (Just above the footer). Can you please help me debug this?

    I am using this theme with fixed width(690px):
    http://wpthemepark.com/themes/fallseason

  234. 234
    Diego Says:

    Great job! and works excellent!
    One questions, I pluged in my register/login logic, is there a way to show a “LOGGED” info onces logged in and remove the register option? or it should be redirected to an entirely different page?
    I wanted to add this in a php file as a header include for all pages, but if this logic isn’t possible it doesn’t make sense.

    Thanks!

  235. 235
    Steffen Schuler Says:

    Nice piece of work! Does it work with jquery 1.2.6, too? Currently, within some weframes like liferay, 1.3.x is not (yet) supported… argh!

  236. 236
    jeeremie Says:

    I am not sure. If you try it, let us know. Thanks

  237. 237
    lavaper Says:

    Jeeremie

    is there a way to make contents of the panel slide in from top like it does in mootools version?

  238. 238
    Actarus Says:

    Hi,

    First, what an awesome sliding panel !!!

    I have a big problem with my panel… in the content ;-)

    I try to add some styles to my form with jqTransform but nothing appears in the panel le is visible but there nothing is styled :-(

    I use this noConflict script to the slide.js:

    jQuery.noConflict();
    (function($){
    $(document).ready(function() {
    // Expand Panel
    $(“#open”).click(function(){
    $(“div#panel”).slideDown(“slow”);
    });
    // Collapse Panel
    $(“#close”).click(function(){
    $(“div#panel”).slideUp(“slow”);
    });
    // Switch buttons from “Log In | Register” to “Close Panel” on click
    $(“#toggle a”).click(function () {
    $(“#toggle a”).toggle();
    });
    })})(jQuery);

    But unfortunatelly it doesn’t work ????

    Someone could help me please ??

    Thx :-)

  239. 239
    Diego Says:

    Hello jeeremie. Is this intented for only 1 page and once logged go to different sites or can I use it in an include and code it to show user information when already logged?

    thanks!

  240. 240
    jeeremie Says:

    @lavaper, read comment 37 above.

    @diego, not sure to understand your question. Could you ask again?

  241. 241
    Diego Says:

    Hello jeeremie,
    What I mean is, does the panel have a way or setting to recognize once your already logged.
    In that case I would add the panel as an include in all site pages.
    If not, I would add it only to the “main page” and after you login not show the panel anymore.
    Was that clearer?
    Thanks a lot!
    Diego

  242. 242
    jeeremie Says:

    Yes it can. Check this article ». I explain how to implement this panel into Wordpress. It will give you some clues

  243. 243
    Making A Cool Login System With PHP, MySQL & jQuery – Tutorialzine Says:

    [...] add the needed flair, we are using the amazing sliding jQuery panel, developed by [...]

  244. 244
    10+ astonishing jQuery resources to spice up your website Says:

    [...] If your website allow user registration, it should definitely a good idea to implement this very nice sliding login form. Of course, it can be used for many other things, as such as a contact form. » View tutorial [...]

  245. 245
    Sarah Gooding Says:

    Thanks for this tutorial :) I’ve linked you from my blog at WPMU.org http://wpmu.org/7-ways-to-spice-up-your-wordpress-login/

  246. 246
    7 Ways to Spice Up Your WordPress Login | WPMU Says:

    [...] » Find the demo/tutorial here. [...]

  247. 247
    PC Consulting – Pop-up Login Says:

    [...] Ajax script aici demo Ajax script aici script-ul Ajax download aici 0 Posted by admin   @   27 [...]

  248. 248
    Scott Says:

    Thank you very much! I am going to try in implement this on http://www.proofofbrain.com, my wordpress blog. I have it working on my test setup, and hopefully can get it implemented alongside the wordpress user system and have it their in the end because i really like it.

    thanks again.

  249. 249
    jQuery Sliding Login Panel - Techno Trousers Says:

    [...] More Info [...]

  250. 250
    Diego Says:

    thanks jeeremie!
    I used that article as a guide and worked great!

  251. 251
    10+ astonishing jQuery resources to spice up your website | meshdairy Says:

    [...] If your website allow user registration, it should definitely a good idea to implement this very nice sliding login form. Of course, it can be used for many other things, as such as a contact form. » View tutorial [...]

  252. 252
    Making A Cool Login System With PHP, MySQL & jQuery | AlbDimension Blog Says:

    [...] add the needed flair, we are using the amazing sliding jQuery panel, developed by [...]

  253. 253
    Pozycjonowanie Stron Says:

    Very nice tutorial :)

  254. 254
    Marc J Says:

    Is there any way this can use JQuery Easing? So that it can have a bounce or other effect as at http://nettuts.s3.amazonaws.com/041_TopPanelWithJquery/demo/index.html ?

  255. 255
    Jeeremie Says:

    Yes, sure. Nettuts uses the “animate” effect. Check the docs or read Nettuts article for explanation (step 15).

  256. 256
    Michael Says:

    I know you have a lot of comments, but I wanted to give you yet another site that is using it. I’ve implemented it to work in http://www.hokietextbooks.com/ I’ve been able to implement an AJAX backend to it, which allows it to work quite flawlessly. Thanks for your work, and for building such a nice tool!

  257. 257
    3 astonishing jquery resources for registration page designs | Goeshare Says:

    [...] login form. Of course, it can be used for many other things, as such as a contact form. » View tutorial Share and Enjoy: These icons link to social bookmarking sites where readers can share and [...]

  258. 258
    matevzl Says:

    Simon use this for Oscommerce:

    $(document).ready(function() {

    // Expand Panel
    $(“#open”).click(function(){
    $(“div#panel”).slideDown(“slow”);

    });

    // Collapse Panel
    $(“#close”).click(function(){
    $(“div#panel”).slideUp(“slow”);
    });

    // Switch buttons from “Log In | Register” to “Close Panel” on click
    $(“#toggle p”).click(function () {
    $(“#toggle p”).toggle();
    });

    });

  259. 259
    20 Most Sexiest Jquery Plugins and Tutorials – Designzzz Says:

    [...] View Demo | Go to Tutorial [...]

  260. 260
    dailce Says:

    Great work for making the mootools version Igor Stepanov :) Thanks.

  261. 261
    jQuery Sliding Login Panel Says:
  262. 262
    JQuery Script Sammlung | astBlog Says:
  263. 263
    Marc J Says:

    Another quick question – is there any way the panel contents can be animated along with the tab?

    What I mean is – as it is the panel bottom / tab slides down, but the content of the panel is revealed, rather than sliding in along with the panel.

  264. 264
    Cool Login With PHP, MySQL & jQuery « Developer Suite Says:

    [...] and stores all the registrations into a MySQL database. This tutorial is an addon to the original sliding jQuery panel developer by [...]

  265. 265
    Jeeremie Says:

    @Marc, you mean a fadeIn/Out effect for example? You can do anything you want with jQuery. Check this: API/1.3/Effects

  266. 266
    Marc J Says:

    No…well, kind of…I mean a slideDown along with the actual tab bottom / tabs. As it is the panel contents don’t move, they are revealed when the tab is pulled down. If the panel contents slid into view as if grouped with rest of the tab, it’d give more of a “window blind” style effect….

  267. 267
    Paul Says:

    I know that by now you might be familiar with this and/or this is not an option because of the drawbacks but to fix all IE6 transparency related bugs thus enabling hover effects for the close button simply use PNG8 with alpha transparency. You might get a slightly worse looking but transparent gradient or none at all but the overall transparency will be far better then in case of gifs or png8’s without alpha transparency. All other real browsers will not be affected the image will look exactly like a PNG24. The slightly worse gradient in IE6 is a minor drawback since most users of IE6 aren’t used to quality by definition. To achieve alpha transparency for PNG8 use Fireworks, Photoshop is not “familiar” with this technique.

  268. 268
    Marc J Says:

    Because I wasn’t explaining very well, see http://www.javascriptkit.com/script/script2/dropdownpanel.shtml – the way the content moves down along with the panel…any way to duplicate this?

  269. 269
    10 Wordpress Plugins To Boost Up Your Theme You Have Ever Known | AEXT.NET Says:

    [...] Add a sliding login/dashboard panel to Wordpress Theme. This awesome panel is based on Nice clean sliding login panel built with jquery [...]

  270. 270
    John Fox Says:

    @plisvb (#39) did you ever figure out how to keep from jumping to the top when sliding-login was called? For the life of me, I can’t figure it out.

    pls take a look at:
    http://www.marketing-playbook.com/entrepreneur-expert-series/index.php

    All the login links on this page call the script.

  271. 271
    Jules Says:

    @John Fox instead of using
    href=”#” try href=”javascript:void(0);”
    and the page shouldn’t jump.

    The # sign is used when calling a named anchor inside the HTML. ie: Useful Tips Section To link to the this area you would then use

    Jump to the Useful Tips Section

    If a the # sign is used without a name then it anchors to the top of the page.

    I also wanted to say thanks to Jeremie for a great tutorial! I used it on a site I recently launched. You can check it out at http://www.roysteinberg.com/

    ~Jules

  272. 272
    Jules Says:

    Sorry, I used the wrap code instructions, but it didn’t come through like I thought it would. Hopefully you will see what I was referring to below:

    The # sign is used when calling a named anchor inside the HTML. ie:

    a name=”tips”>Useful Tips SectionJump to the Useful Tips Section</a

  273. 273
    John Fox Says:

    Thanks! Completely spaced on using href=’javascript:void(0);’

  274. 274
    Mike Says:

    You don’t have to use javascript:void(0); in the href tag to keep it from jump to the top of the page. I took this panel code and use it for my own purpose of a sliding panel under the header and menu on a gaming site i’m developing. I left the href=”#” tag as is in the sample and added return false; inside the jquery code instead, look below.

    $(document).ready(function() {
    $(“#open”).click(function(){
    $(“div#panel-status”).slideDown({ duration: 800, easing: ‘easeOutQuad’});return false;
    });
    // Collapse Panel
    $(“#close”).click(function(){
    $(“div#panel-status”).slideUp({ duration: 800, easing: ‘easeOutQuad’});return false;
    });
    // Switch buttons from “Log In | Register” to “Close Panel” on click
    $(“#toggle a”).click(function () {
    $(“#toggle a”).toggle();return false;
    });
    });

  275. 275
    How to add a nice jQuery slider | Radu Poenaru Says:

    [...] weekend fun was adding to my website the cool sliding control from Jérémie Tisseau website. As pretty it was, I imediately started thinking it as a container to my BNR exchange rate page. [...]

  276. 276
    Jeeremie Says:

    Yes, Mike is right. return false will prevent the browser jump to the link anchor.

  277. 277
    Steve Says:

    Thanks, this is great. Really like it!

  278. 278
    DiEg0 Says:

    Hi Jeeremie,

    Can I have your permission to implement this script as drupal module please?

    I have sent you a mail via contact form.

    Thanks

  279. 279
    Ideas para la zona de login de tu wordpress-mu y buddypress « Clones web Says:

    [...] » Demo y tutorial aquí. [...]

  280. 280
    Jeeremie Says:

    Yes, as long as you give credits and a link back to the original code.

  281. 281
    Amin Says:

    Thank you for the very nice script and a good tutorial on how to use it .
    Here I have added a tutorial for those who are experiencing problem
    with flash files .. I have explained how to solve it …
    http://www.ipageonline.com/en/index.php/2009/12/display-flash-behind-javascript-menupanel/
    ——————————————-
    Just one thing I’m experiencing problem on IE 8.0 the panel is not 100% in width … you can see an example here :
    http://www.uaedalel.com/vb
    any idea how to solve it ??
    It works OK on FF , and Chrome ..

  282. 282
    yan Says:

    i placed ur amazing slide login panel in a masterpage
    and the slide wont open, it just clickable like href=”#”
    my ? can it work in masterpage or i doing somthing wrong.
    thx
    great job mate

  283. 283
    Amin Says:

    I need to say that I tested the panel on IE6 and 7 also working perfect only it’s not working on IE 8 ….. :( does any one knows what should I do?

  284. 284
    yan Says:

    try using ie8.js for making ie8 more compitable and work like ie7 google it, hope it will help u

  285. 285
    yan Says:

    the porblem with masterpage is fixed my fault , he didnt reach the js i used ../ and not ./ lamo

  286. 286
    10 Wordpress Plugins To Boost Up Your Theme You Have Ever Known | Wordpress Share Free Says:

    [...] Panel Add a sliding login/dashboard panel to Wordpress Theme. This awesome panel is based on Nice clean sliding login panel built with jquery Download: WP Sliding Login/Dashboard [...]

  287. 287
    http://yesayahandoyo.blogspot.com/2010/01/how-to-implement-nice-clean-sliding.html Says:

    Implement it in Drupal 6 block

  288. 288
    Nathan Says:

    Any ideas on howto slide down the panel when a page loads:

    eg.

    Plz… anyone ?

  289. 289
    Ian Says:

    Hi… Im using asp.net and put the code in my master page as a menu and then put in a few links. After I travel to the other page my content updates but the panel does not close again and the label says it is closed and the “open menu” appears. can anybody help me please

    Regards
    Ian

  290. 290
    5 nice resources and tutorials form with jquery | denbagus blog Says:

    [...] Sliding Login Panel built with jQuery [...]

  291. 291
    +30 jQuery Eklentisi « Bay Bedava – Netten Başlıklar Says:

    [...] çeşitli içerikler sunabileceğiniz, Internet Explorer 6 için .PNG destekli jQuery eklentisi. WEB SİTESİ – DEMO – [...]

  292. 292
    Amin Says:

    Still couldn’t solve my problem in ie8 any ideas?
    has any one having the same problem?
    all other browsers are OK even older IE.

  293. 293
    Matbaa Says:

    Really good script. Still ie8 problem exists.

  294. 294
    必要な時に呼び出すログインフォーム | 独り言日記 Says:
  295. 295
    New ‘under construction’ template | 3mension Says:

    [...] new template got some jQuery love. I’m using a script found in a tutorial at web-kreation.com, which gives really exceptional results. I’m working on a theme for 3mension that will [...]

  296. 296
    Chris R Says:

    I have seen this on a joomla site and was wondering whether there is a joomla module/plugin for this sliding login panel. It is excellent!
    I am not joomla expert and have been struggling for the last couple of hours. If anyone can help that would be much appreciated.
    Many thanks!!!

  297. 297
    10 Super jQuery and Ajax Scripts « Web Design Says:

    [...] Download | Demo [...]

  298. 298
    noob Says:

    Havent tried it yet, but: wonderful work!

    Thx!

  299. 299
    CMR Says:

    Nice. But how to implement with joomla? perhaps we can have a tutorial on this! :)

  300. 300
    Sedat Kumcu Says:

    Thanks for this article. Very beatifull. Best regards.

  301. 301
    Revast Says:

    Anyone have a tutorial on how to implement this into vBulletin (if possible)? Would be much appreciated!

  302. 302
    Membuat Cool Login System Dengan PHP, MySql dan Jquery | Semongko Group Says:

    [...] add the needed flair, we are using the amazing sliding jQuery panel, developed by [...]

  303. 303
    Karp13 Says:

    This may not be graceful but, another way to make it degrade and still show the layout.
    —————————————
    slide.js
    // close panel onload
    $(“div#panel”).addClass(“closepanel”);
    //Set the position of the panel
    $(“div#toppanel”).addClass(“positionpanel”);

    —————————————-
    slide.css

    line 107 comment out/delete — position: absolute;
    line 125 comment out /delete — display: none;

    Add the following lines

    .positionpanel {
    position: absolute;
    }
    .closepanel {
    display: none;
    }

    ————————————
    If JavaScript is disabled the panel will be displayed and it will push the rest of the content down. You could also then add a blurb about this is showing by default because you have JavaScript off.

    I know this is not the prettiest way to do it, but it works. My site requires JavaScript to be on for the online bidding functions to work correctly.

  304. 304
    Marc Says:

    Nice article. Easy to complete.

    Am sure it will help a lot of people.

  305. 305
    Kyle Says:

    Hey,
    I tried Karp13 method of degrading if javascript is disabled but now the login remains open no matter if javascript is on or off, any suggestions anyone on how I can fix this? Great script though, thanks loads!!

    Kyle

  306. 306
    Nice & Clean Sliding Login Panel Says:

    [...] Tutorial Tutorial Page [...]

  307. 307
    25 Ultimate Useful Form Tutorials Using CSS and Javascript | Smashing Buzz Says:

    [...] 23. Nice & Clean Sliding Login Panel built with jQuery [...]

  308. 308
    Ravi Kumar Tamada Says:

    Nice a new implementation……

  309. 309
    Preisvergleich Says:

    Good post. Thank you for good great information.

  310. 310
    Lacey Says:

    Back again,
    I have put this on the most up to date WP and Thesis 1.6. Now her instructions should be followed with an eye on how Thesis works. 1) When you place the header.php code do as it says but move the you have in the original header.php to below the new head and next to the
    body but it should look like:

    <head/>
    <body <?php thesis_body_classes(); ?>>

    otherwise you will loose your header image.
    2) I put all the CSS code in the thesis custom.css
    3) As for the Java js flie I put it in Themes/thesis_16/
    a. The images go into the Themes/thesis_16/custom/images
    4. registration is explanatory.
    hope this helps, see it at http://www.policyintelligence.com/ contact me at lacey@policyintelligence.com


    Someone ask the same question I wanted answered. How to add the username to the Logout tab and I went back through your code to get the code that displayed my name or the user who logged in the drop down panel and I inserted it into the logout tab with a comma after hello (proper grammer). So here is what the code should look like: (insert <?php echo $user_identity ?> in code below).

    <!-- The tab on top -->  
    <div class="tab">
        <ul class="login">
            <li class="left">&nbsp;</li>
            <!-- Logout -->
            <li>Hello, <?php echo $user_identity ?></li>
            <li><a href="<?php echo wp_logout_url(get_permalink()); ? rel="nofollow">" rel="nofollow" title="<?php _e('Log out'); ?>"><?php _e('Log out'); ?></a></li>
            <li class="sep">|</li>
     
            <li id="toggle">
            <a id="open" class="open" href="#" rel="nofollow">Show Dashboard</a>
            <a id="close" style="display: none;" class="close" href="#" rel="nofollow">Close Panel</a> 
            </li>
            <li class="right">&nbsp;</li>
        </ul>
    </div> <!-- / top -->

    Several people in the comments have been asking for this so hopefully this will help.

    Great work Jeremie, Thank you for the email and support as well!

    Lacey

  311. 311
    25 splendidi tutorial per creare form usando CSS e Javascript | Voci dal Web Says:

    [...] 23. Nice & Clean Sliding Login Panel built with jQuery [...]

  312. 312
    Varma Says:

    What type of license is this released under? Can I use it on a commercial site or is it limited to personal use?

  313. 313
    Lacey Says:

    Why am I getting the class=”custom home” in my page at the top of the browser? Can someone please advise me?

    Lace

 

Leave a Reply

Wrap all code in <pre lang="LANGUAGE" colla="-">...</pre> and replace 'LANGUAGE' by 'html4strict' for HTML, 'php', 'javascript', 'css'...