i need to retrieve value for a clickable button using jquery. i have 3 buttons under a <div>
.
<div class="button1">
<input type="button" value="one" id="One" onclick= "location.href='index.html'"/>
<input type="button" value="two" id="Two" onclick="location.href='index.html'" />
<input type="button" value="three" id="Three" onclick="location.href='index.html'" />
</div>
if i click on button 1 i need to get value for a button 1. i dunno how exactly get the value of this.
here is my js.
$(document).ready(function() {
$('.button1').click(function() {
var text = $(this).text();
$("input").val(text);
});
});
i know this js script i wrote as wrong. because am getting values as "one,two,three".
thanks in advance.
Like any other input, to get the value of a button use .val():
http://jsfiddle.net/3QDM5/
I'm not sure exactly what you're trying to do with your script though!
example :
where click(this.value) is function on javascript
use attr http://api.jquery.com/attr/