I have a <div class="foo">Foo</div> and I have two input fields:
<input type="submit" class="text_field" name="input_one" value="">and<input type="submit" class="text_field" name="input_two" value="">
I would like to be able to click <div>Foo</div> and populate field #1 with the value Foo and field #2 with value Bar. (Extrapolate upon this idea to incorporate many different divs and thus, many different value combinations.) How best can I do this using jQuery?
So far I have no trouble doing something like:
jQuery(function () {
$('div.foo').click(function (e) {
var foo = $(this).text();
$("input.text_field").val(foo);
});
});
This works for clicking the div and populating one text field with the text value between the tags, i.e., "Foo". This is a good start and all...but since I am new to this, I was wondering how might I best go about populating the two different text fields with two different said values "Foo" and "Bar". Is there a way to set a name="Bar" or something to this effect on the div, and then access that name value to insert into the second text field input_two? Thoughts, comments, considerations appreciated, thank you!
