I'm developing a page that needs a form. For aesthetic reasons, I chose not to put legend and instead I'm using placeholder. In this case, he did not want the information to be filled in automatically. How do I inhibit this automatic loading?
I'm developing a page that needs a form. For aesthetic reasons, I chose not to put legend and instead I'm using placeholder. In this case, he did not want the information to be filled in automatically. How do I inhibit this automatic loading?
maybe autocomplete off will help you
<form action="/action_page.php" autocomplete="on">
First name:<input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
E-mail: <input type="email" name="email" autocomplete="off"><br>
<input type="submit">
</form>
Source: link
The best solutions to your problem are jScroll and LazyLoad , both work similarly and load when the Browser is scrolled down and" passed "by the component.
jScroll Example:
HTML:
<div class="scroll">
<h3>Page 1</h3>
<p>Content here...</p>
<a href="example-page2.html">next page</a>
</div>
JavaScript:
$('.scroll').jscroll();
Simple like this =]