PHP Classes

File: WIMembers/WIInc/login_panel/js/slide.js

Recommend this page to a friend!
  Classes of Jules Warner   WICMS   WIMembers/WIInc/login_panel/js/slide.js   Download  
File: WIMembers/WIInc/login_panel/js/slide.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WICMS
Database driven content management system with PDO
Author: By
Last change:
Date: 7 years ago
Size: 366 bytes
 

Contents

Class file image Download
$(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(); }); });