Using code found here: What is the most convenient way to convert HTML to plain text while preserving line breaks (with JavaScript)?
I need to be able to convert HTML to plaintext using Javascript, via a button that will update the text displayed depending on user input
The code that I'm using:
<div id="content">
<p>
Here is a paragraph with a line break in it
<br>
Second line
</p>
<p>
Operating System:
<select id='OperatingSystem'>
<option value='Windows10'>Windows 10</option>
<option value='Windows8.1'>Windows 8.1</option>
<option value='Windows8'>Windows 8</option>
<option value='Windows7'>Windows 7</option>
<option value='WindowsVista'>Windows Vista</option>
<option value='WindowsXP'>Windows XP</option>
<option value='Mac10.12'>Mac 10.12 Sierra</option>
<option value='Mac10.11'>Mac 10.11 El Capitan</option>
<option value='Mac10.10'>Mac 10.10 Yosemite</option>
<option value='Mac10.9'>Mac 10.9 Mavericks</option>
<option value='Mac10.8'>Mac 10.8 Mountain Lion</option>
<option value='Mac10.7'>Mac 10.7 Lion</option>
<option value='Android'>Android</option>
<option value='iOS'>iOS</option>
<option value='Other'>Other</option>
</select>
<br/>Alternate Phone:
<input value="Boogers" type="text">
</p>
</div>
<!-- Submit -->
<input type="submit" value="submit" onclick="getInnerText();" />
<textarea id="text" rows="6" cols="50"></textarea>
<!-- Function -->
<script>
function getInnerText(el)
{
var sel, range, innerText = "";
if (typeof document.selection != "undefined" && typeof document.body.createTextRange != "undefined") {
range = document.body.createTextRange();
range.moveToElementText(el);
innerText = range.text;
} else if (typeof window.getSelection != "undefined" && typeof document.createRange != "undefined") {
sel = window.getSelection();
sel.selectAllChildren(el);
innerText = "" + sel;
sel.removeAllRanges();
}
return innerText;
}
document.getElementById("text").value = getInnerText(document.getElementById("content"));
</script>
<!-- Tabs Javascript - End -->
jsfiddle sample
Unfortunately, either the button isn't working, or the code will not read the user input (dropdown box and text input).
How can I fix this?
The problem is that your current method of extracting the text wont get the values of inputs. You'll have to fetch and reinsert those manually:
var os = document.getElementById('OperatingSystem').value;
var phone = document.getElementById('phone-input').value;
innerText = innerText.replace('Alternate Phone:', 'Alternate Phone: ' + phone);
innerText = innerText.replace('Operating System:', 'Operating System: ' + os);
I've updated your fiddle with a solution that does that.