Part-6 Prac2: Create a simple and interactive Login form using JQuery.


Both forms display in one page using fadeIn and fadeOut method of jquery.

sample code :

function show_signup(){
  $("#login_div").fadeOut('fast', function() {
    $("#register_div").fadeIn();
  });
}
function show_login(){
  $("#register_div").fadeOut('fast', function() {
    $("#login_div").fadeIn();
  });
}

Name: Naisarg Modi
ID : 18CE055

Comments

Popular posts from this blog

Part-7 Prac 2: Study and demonstrate php syntax, data type, variable, function, array, superglobal variable and form (Self-learning exercise using this link: https://www.w3schools.com/php/).

Part-6 Prac 5 :Create Hello World program using Node.js.