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

Part-2 Prac 3: If you could take the perfect trip, where would you go??? What animals would you see? What food would you eat? Add images to this webpage after each paragraph tag, to share your perfect trip with the world. Apply graphics using HTML CANVAS along with properties and methods.