Advertisement
Guest User

main.js

a guest
Dec 21st, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var element = document.getElementById("placeholder_one");
  2.    
  3. function floatdiv_load() {
  4.   element.innerHTML = "<div id='floatdiv'>Username/Email<input type='text' formaction='' />Password<input type='password' formaction='' /></div>";
  5.   document.getElementById("login-button").onclick = "floatdiv_unload" ;
  6. }
  7.  
  8. function floatdiv_unload() {
  9.   element.innerHTML = " ";
  10.   document.getElementById("login-button").onclick = floatdiv_load ;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement