I want to prevent LastPass from filling out an input field on my site. I'm using AngularJS and HTML5, and the extension is autofilling the following input field. This field is a search field inside my page; it's not a login page.
<input id="search-publishers-box" type="text" placeholder="Search Publishers" data-ng-model="publishersSearchQuery.name" class="search-field-text" autocomplete="off"/>
What can I do to prevent LastPass from doing its autofill? I've tried to change the placeholder
, the model
, adding autocomplete="off"
, and changed the id
of the input field.
None have worked at all for me.