PHP Classes

File: fwphp/glomodul/z_examples/ora11g/wishlist/public/wishlist.js

Recommend this page to a friend!
  Classes of Slavko Srakocic   B12 PHP FW   fwphp/glomodul/z_examples/ora11g/wishlist/public/wishlist.js   Download  
File: fwphp/glomodul/z_examples/ora11g/wishlist/public/wishlist.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: B12 PHP FW
Manage database records with a PDO CRUD interface
Author: By
Last change: Update of fwphp/glomodul/z_examples/ora11g/wishlist/public/wishlist.js
Date: 1 year ago
Size: 856 bytes
 

Contents

Class file image Download
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ function showHideLogonForm() { if (document.all.logon.style.visibility == "visible"){ document.all.logon.style.visibility = "hidden"; document.all.myWishList.value = "<< Wish List (master with psw)"; } else { document.all.logon.style.visibility = "visible"; document.all.myWishList.value = "Wish List (master with psw) >>"; } } function showHideShowWishListForm() { if (document.all.wishList.style.visibility == "visible") { document.all.wishList.style.visibility = "hidden"; document.all.showWishList.value = "Show Wish List of >>"; } else { document.all.wishList.style.visibility = "visible"; document.all.showWishList.value = "<< Show Wish List of"; } }