I'm trying to have a variable store the HTML in a div tag, but simply using var a = $('div').html()
doesn't store the values of the input tags that lie within the div.
So, my question is, how should I go about saving the HTML and the selected options and values of input tags to a variable using jQuery?
Here is some example code:
HTML:
<div>
<p>Some Text</p>
<select name="word">
<option value="1">Placeholder 1</option>
<option value="2">Placeholder 2</option>
</select>
<input type="text" />
</div>
Javascript:
/* "a" should also have the user values, such that when I use $('body').append(a),
it has the same user input as the div. */
var a = $('div').html();
Thanks in advance.
To get HTML content of an element using jQuery, use the html() method. The html() method gets the html contents of the first matched element.
jQuery val() method is used to get the value of an element. This function is used to set or return the value. Return value gives the value attribute of the first element.
jQuery html() Method The html() method sets or returns the content (innerHTML) of the selected elements. When this method is used to return content, it returns the content of the FIRST matched element. When this method is used to set content, it overwrites the content of ALL matched elements.
Use getElementsByTagName (defined in DOM) to get a list of all input tags, and then filter them in Javascript code (looking at their value attribute).
You could $.clone()
the element.
var $a = $("div:first").clone();
$a.appendTo("body"); // Clone invades your body
Online Demo: http://jsbin.com/obebov/edit
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