how can you disable button by using javascript?

Use .attr() to set disable attribute

Usage $(selector).attr("disabled", true)

In your case : $("#button-next-3").attr("disabled", true)

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top