javascript disable button
//disable the button
document.getElementById(BUTTON_ID).disabled = true;
//reable the button
document.getElementById(BUTTON_ID).removeAttribute('disabled');
javascript disable button
//disable the button
document.getElementById(BUTTON_ID).disabled = true;
//reable the button
document.getElementById(BUTTON_ID).removeAttribute('disabled');
html button disabled
<button type="button" disabled>This button is disabled</button>
button disabled
.disabled {
opacity: 0.6;
cursor: not-allowed;
}
enable html button
$('#Button').prop('disabled', true);
disable button
collector.on('collect', async i => {
if (i.customId === 'id_1') {
row.components[0].setDisabled(true) //disables but_1
}
if (i.customId === 'id_2') {
row.components[1].setDisabled(true) //disables but_2
}
interaction.editReply({ content: "Click a button", components: [row] });
})
disable button
from tkinter import *
ws = Tk()
ws.title('PythonGuides')
ws.geometry('200x80')
def isChecked():
if cb.get() == 1:
btn['state'] = NORMAL
btn.configure(text='Awake!')
elif cb.get() == 0:
btn['state'] = DISABLED
btn.configure(text='Sleeping!')
else:
messagebox.showerror('PythonGuides', 'Something went wrong!')
cb = IntVar()
Checkbutton(ws, text="accept T&C", variable=cb, onvalue=1, offvalue=0, command=isChecked).pack()
btn = Button(ws, text='Sleeping!', state=DISABLED, padx=20, pady=5)
btn.pack()
ws.mainloop()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us