ibmi-brunch-learn

Announcement

Collapse
No announcement yet.

JS tip! Disable submit button after click

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • JS tip! Disable submit button after click

    Disable submit button after click

    A simple way is to use an onclick handler on the submit button to either disable or hide the button:

    onclick="this.disabled=true"
    onclick="this.visibility='hidden'"
    onclick="this.display='none'"

    Example:

    <input name="btn" value="ACCEPT" type="submit" onclick="this.disabled=true" >

    I like those "short code" tips ! If you have one, post then too !
Working...
X