Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

Member 10697386

@Member 10697386
About
Posts
1
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to write the handler for buttons using JQUERY
    M Member 10697386

    you want to use your input button in place of link , then you can use id of the input button and use .click handler. Use HTML instance

    of this

    and Script

    $("#btnNext").click(function () { // Event of link-click "necxt step"
    if (current_step == steps.length - 2) { // checking - will it the next step is last
    $(this).hide(); // i hide the link "next step"
    $("form input[type=submit]").show(); // show thge button "OK"
    }
    $("a.back").show(); // show the link "Back"
    current_step++; // increase the counter of the current slide
    changeStep(current_step); // change a step
    });

    do same as it is for another button

    JavaScript javascript html css tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups