Posts by Du Santos • 11 points
2 posts
-
1
votes0
answers449
viewsQ: Enable/Disable input by clicking a checkbox
I have this code: function EnableDisableTextBox(quant_a0) { var txtquant_a0 = document.getElementById("quant_a0"); txtquant_a0.disabled = quant_a0.checked ? false : true; if (!txtquant_a0.disabled)…
-
0
votes1
answer42
viewsQ: How I can remove and print the textbox value associated with a php checkbox
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Form</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,…