'Live Server Extension - Not working after adding forms
I'm using Live Server extension in Visual Studio Code and it's working perfectly. But whenever i try to add a form for example with the following structure:
<form action="">
<div class="contact__inputs">
<label for="name">Nombre</label>
<input name="name" type="text" placeholder="Jorge" />
<br />
<label for="email">Email</label>
<input
name="name"
type="email"
placeholder="[email protected]"
/>
<label for="message">Mensaje</label>
<textarea id="message" name="message" rows="10" cols="33">
</div>
</form>
The plugin stop working, and stops the auto-refreshing. Throwing the following error inside the textarea:
</div>
</form>
</div>
</div>
</section>
<footer></footer>
<!-- Code injected by live-server -->
<script type="text/javascript">
// <![CDATA[ <-- For SVG support
if ('WebSocket' in window) {
(function () {
function refreshCSS() {
var sheets = [].slice.call(document.getElementsByTagName("link"));
var head = document.getElementsByTagName("head")[0];
for (var i = 0; i < sheets.length; ++i) {
var elem = sheets[i];
var parent = elem.parentElement || head;
parent.removeChild(elem);
var rel = elem.rel;
if (elem.href && typeof rel != "string" || rel.length == 0 || rel.toLowerCase() == "stylesheet") {
var url = elem.href.replace(/(&|\?)_cacheOverride=\d+/, '');
elem.href = url + (url.indexOf('?') >= 0 ? '&' : '?') + '_cacheOverride=' + (new Date().valueOf());
}
parent.appendChild(elem);
}
}
var protocol = window.location.protocol === 'http:' ? 'ws://' : 'wss://';
var address = protocol + window.location.host + window.location.pathname + '/ws';
var socket = new WebSocket(address);
socket.onmessage = function (msg) {
if (msg.data == 'reload') window.location.reload();
else if (msg.data == 'refreshcss') refreshCSS();
};
if (sessionStorage && !sessionStorage.getItem('IsThisFirstTime_Log_From_LiveServer')) {
console.log('Live reload enabled.');
sessionStorage.setItem('IsThisFirstTime_Log_From_LiveServer', true);
}
})();
}
else {
console.error('Upgrade your browser. This Browser is NOT supported WebSocket for Live-Reloading.');
}
// ]]>
</script></body>
</html>
I tried reinstalling VS and nothing happens. How can i solve this?
Solution 1:[1]
So basically i forgot to close the textarea with:
<textarea id="message" name="message" rows="10" cols="33"> </textarea>
:)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | SWAT |