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 3: Study and demonstrate mysqli connection and CRUID operations with php.

Part-6 Prac 1: Implement following tasks using jQuery