1
I need to take html from input as text, like this:
var exemplo = 'input type="text" name="input" id="input"';
However, I need to get the input filled, would be like this:
var exemplo = 'input type="text" name="input" id="input" value="VALOR QUE ESCREVI"';
It is possible to do?
$('#input').val()
?– Ricardo Pontual