How to not preload page with auto-fill

0

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?

    
asked by anonymous 23.06.2017 / 22:14

2 answers

1

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

    
23.06.2017 / 22:41
-1

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 =]

    
23.06.2017 / 22:20