I have a button like following
<input type='button' value='Generate' onclick='f1()' />
now the f1 function should show a alert box contain button value. in this case 'Generate'
How to do this?
I tried
alert(this);
alert(this.val());
it does not work
Try this.
<input type='button' value='Generate' onclick='f1(this)' />
Now alert like
function f1(objButton){
alert(objButton.value);
}
P.S: val()
is actually a jQuery implementation of value
Or you do this:
<button id='button' value='Generate' onclick='f1()'>Generate</button>
Then this for javascript:
Const click = document.getElementById('button')
Function f1{
Alert(`${click.Value}`)
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With