{"id":6063,"date":"2024-12-19T09:33:31","date_gmt":"2024-12-19T09:33:31","guid":{"rendered":"https:\/\/ubiq.co\/tech-blog\/?p=6063"},"modified":"2025-09-03T05:52:11","modified_gmt":"2025-09-03T05:52:11","slug":"how-to-disable-browser-autocomplete-and-autofill","status":"publish","type":"post","link":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/","title":{"rendered":"How to Disable Browser Autocomplete and AutoFill"},"content":{"rendered":"\n<p>Most web browsers automatically remember and save the information entered by users during form submission on various websites. They even offer to autocomplete, that is, offer suggestions based on partial user input. They also offer autofill, that is, pre-populate form fields based on previous values users have entered. But sometimes web developers and organizations may want to disable browser autocomplete and autofill. In this article, we will learn how to do this.<\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_82_2 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><a href=\"#\" class=\"ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle\" aria-label=\"Toggle Table of Content\"><span class=\"ez-toc-js-icon-con\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/span><\/a><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#Why_Disable_Browser_AutoComplete_and_AutoFill\" >Why Disable Browser AutoComplete and AutoFill<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#How_to_Disable_Browser_Autocomplete_and_AutoFill\" >How to Disable Browser Autocomplete and AutoFill<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#Disable_Autocomplete\" >Disable Autocomplete<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#Disable_Autofill\" >Disable Autofill<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#Conclusion\" >Conclusion<\/a><\/li><\/ul><\/nav><\/div>\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Why_Disable_Browser_AutoComplete_and_AutoFill\"><\/span>Why Disable Browser AutoComplete and AutoFill<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>AutoComplete and AutoFill are very convenient to those who do not want to manually type all input values on website forms. They are also helpful if you have long email address and password that you do not want to enter every time. Web browsers will automatically fill out these values and you do not have to remember them or manually enter them in front of anyone else. But if you are worried about data privacy or your form requires one time inputs such as one-time password then these features may not be of much use to you. In such cases, it is better to disable browser autocomplete and autofill.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"How_to_Disable_Browser_Autocomplete_and_AutoFill\"><\/span>How to Disable Browser Autocomplete and AutoFill<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Let us look at how to turn off autocomplete and autofill.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Disable_Autocomplete\"><\/span>Disable Autocomplete<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>You can disable autocomplete feature for your website by setting autocomplete attribute to off. You can mention it for form tag, to disable autocomplete for all HTML inputs in that form. Alternatively, you can do it for a specific inputs, if you want to disable autocomplete only for specific inputs. Here is its syntax.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">autocomplete = 'off'<\/pre>\n\n\n\n<p>Here is an example to disable autocomplete for a form.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;form method=\"post\" action=\"\/form\" autocomplete=\"off\"&gt;<br>  \u2026<br>&lt;\/form&gt;<\/pre>\n\n\n\n<p>Here is an example to turn off autocomplete only for one input field, in a form.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;form method=\"post\" action=\"\/form\"&gt;<br>  \u2026<br>  &lt;div&gt;<br>    &lt;label for=\"password\"&gt;Password:&lt;\/label&gt;<br>    &lt;input type=\"password\" id=\"password\" name=\"password\" autocomplete=\"off\" \/&gt;<br>  &lt;\/div&gt;<br>&lt;\/form&gt;<\/pre>\n\n\n\n<p>This will do 2 things:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>It will tell web browser not to save the user input data for autocompletion later. However, some browsers may still offer suggestions.<\/li>\n\n\n\n<li>It also prevents browser from saving form data in session history. This will prevent suggestions in case the user submits the form and then clicks back button to go back to the form page.<\/li>\n<\/ol>\n\n\n\n<p>Please note, some of the modern web browsers such as Chrome, Edge, Firefox may ignore autocomplete attribute, and still offer autocompletion.<\/p>\n\n\n\n<p>In such cases, you may have to try one of the following methods to see which one works for you.<\/p>\n\n\n\n<p>You can try changing the name attribute of the input element.<\/p>\n\n\n\n<p>For password input elements, you can simply set autocomplete to &#8216;new-password&#8217;.<\/p>\n\n\n\n<p>If you want to disable autocomplete for multiple input fields in a single form, then set autocomplete attribute for form element as &#8216;off&#8217;. Next, assign a unique text to autocomplete attribute of each input in the form. Here is an example to demonstrate it.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;form id='my_form' autocomplete='off'&gt;<br>...<br>&lt;input type=\"text\" id=\"username\" autocomplete=\"input1\" \/&gt;<br>&lt;input type=\"text\" id=\"email\" autocomplete=\"input2\" \/&gt;<br>&lt;input type=\"text\" id=\"phone\" autocomplete=\"input3\" \/&gt;<br>...<br>&lt;\/form&gt;<\/pre>\n\n\n\n<p>In the above code, we have assigned unique texts input1, input2, input3 for each of the inputs where we want to turn off autocomplete. You can use any text such as skjfd, dljdl, ddjfldf. It doesn&#8217;t have to mean anything. It just needs to be unique that&#8217;s all.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Disable_Autofill\"><\/span>Disable Autofill<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Most web browsers offer to remember username and password entered by users the first time. When the user visits the same site again, browser will autofill the form inputs. They even ask user to enter another master password used to encrypt all this saved user data. This is convenient for most users since they do not have to remember passwords and so they can use really long and complicated ones.<\/p>\n\n\n\n<p>So, many browsers may not support disabling autocomplete attribute in HTML. If the website form contains username and password fields, and the user has previously agreed to autofill the form, then browser will do so, even if autocomplete attribute is turned off on the input element.<\/p>\n\n\n\n<p>The same holds true for username and password input elements. Even if you set autocomplete attribute of these fields to off, still the browser will offer to remember them. If the user agrees, then browser will autofill these fields on the next visit. <\/p>\n\n\n\n<p>In such cases, you may want to try setting autocomplete attribute to a unique string, as mentioned above.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Conclusion\"><\/span>Conclusion<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>In this article, we have learnt several simple ways to easily turn off autocomplete and autofill in web browser. You an use any of these methods, depending on your requirements. Please note, web browser are regularly updated, especially to prevent such work arounds and some of these solutions may not be supported in future. Nevertheless, you can use them as long as they work.<\/p>\n\n\n\n<p>Also read:<\/p>\n\n\n\n<p><a href=\"https:\/\/ubiq.co\/tech-blog\/difference-between-let-and-var-in-javascript\/\">Difference Between Var and Let in JavaScript<\/a><br><a href=\"https:\/\/ubiq.co\/tech-blog\/how-to-disable-enable-input-in-jquery\/\">How to Disable\/Enable Input in jQuery<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Web developers may need to disable browser autocomplete and autofill. Here are the steps to do this.<\/p>\n","protected":false},"author":1,"featured_media":6079,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[346],"tags":[357,358],"class_list":["post-6063","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html","tag-disable-autocomplete","tag-disable-autofill"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Disable Browser Autocomplete and AutoFill - Ubiq BI<\/title>\n<meta name=\"description\" content=\"Web developers may need to disable browser autocomplete and autofill. Here are the steps to turn off autocomplete and autofill.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Disable Browser Autocomplete and AutoFill - Ubiq BI\" \/>\n<meta property=\"og:description\" content=\"Web developers may need to disable browser autocomplete and autofill. Here are the steps to turn off autocomplete and autofill.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/\" \/>\n<meta property=\"og:site_name\" content=\"Ubiq BI\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ubiqbi\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-19T09:33:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-03T05:52:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ubiq.co\/tech-blog\/wp-content\/uploads\/2024\/12\/disable-autocomplete-autofill.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"315\" \/>\n\t<meta property=\"og:image:height\" content=\"210\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Sreeram Sreenivasan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@UbiqBI\" \/>\n<meta name=\"twitter:site\" content=\"@UbiqBI\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sreeram Sreenivasan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/\"},\"author\":{\"name\":\"Sreeram Sreenivasan\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/#\\\/schema\\\/person\\\/db98d49a766a3a111d8510935ab90abc\"},\"headline\":\"How to Disable Browser Autocomplete and AutoFill\",\"datePublished\":\"2024-12-19T09:33:31+00:00\",\"dateModified\":\"2025-09-03T05:52:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/\"},\"wordCount\":769,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/ubiq.co\\\/tech-blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/disable-autocomplete-autofill.jpg?fit=315%2C210&ssl=1\",\"keywords\":[\"disable autocomplete\",\"disable autofill\"],\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/\",\"url\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/\",\"name\":\"How to Disable Browser Autocomplete and AutoFill - Ubiq BI\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/ubiq.co\\\/tech-blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/disable-autocomplete-autofill.jpg?fit=315%2C210&ssl=1\",\"datePublished\":\"2024-12-19T09:33:31+00:00\",\"dateModified\":\"2025-09-03T05:52:11+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/#\\\/schema\\\/person\\\/db98d49a766a3a111d8510935ab90abc\"},\"description\":\"Web developers may need to disable browser autocomplete and autofill. Here are the steps to turn off autocomplete and autofill.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/ubiq.co\\\/tech-blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/disable-autocomplete-autofill.jpg?fit=315%2C210&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/ubiq.co\\\/tech-blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/disable-autocomplete-autofill.jpg?fit=315%2C210&ssl=1\",\"width\":315,\"height\":210,\"caption\":\"disable autocomplete and autofill in web browser\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-disable-browser-autocomplete-and-autofill\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Disable Browser Autocomplete and AutoFill\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/#website\",\"url\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/\",\"name\":\"Ubiq BI\",\"description\":\"Build dashboards &amp; reports in minutes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/#\\\/schema\\\/person\\\/db98d49a766a3a111d8510935ab90abc\",\"name\":\"Sreeram Sreenivasan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g\",\"caption\":\"Sreeram Sreenivasan\"},\"description\":\"Sreeram Sreenivasan is the Founder of Ubiq. He has helped many Fortune 500 companies in the areas of BI &amp; software development.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/sreeram-sreenivasan\\\/\"],\"url\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/author\\\/wordpress\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Disable Browser Autocomplete and AutoFill - Ubiq BI","description":"Web developers may need to disable browser autocomplete and autofill. Here are the steps to turn off autocomplete and autofill.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/","og_locale":"en_US","og_type":"article","og_title":"How to Disable Browser Autocomplete and AutoFill - Ubiq BI","og_description":"Web developers may need to disable browser autocomplete and autofill. Here are the steps to turn off autocomplete and autofill.","og_url":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/","og_site_name":"Ubiq BI","article_publisher":"https:\/\/www.facebook.com\/ubiqbi","article_published_time":"2024-12-19T09:33:31+00:00","article_modified_time":"2025-09-03T05:52:11+00:00","og_image":[{"width":315,"height":210,"url":"https:\/\/ubiq.co\/tech-blog\/wp-content\/uploads\/2024\/12\/disable-autocomplete-autofill.jpg","type":"image\/jpeg"}],"author":"Sreeram Sreenivasan","twitter_card":"summary_large_image","twitter_creator":"@UbiqBI","twitter_site":"@UbiqBI","twitter_misc":{"Written by":"Sreeram Sreenivasan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#article","isPartOf":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/"},"author":{"name":"Sreeram Sreenivasan","@id":"https:\/\/ubiq.co\/tech-blog\/#\/schema\/person\/db98d49a766a3a111d8510935ab90abc"},"headline":"How to Disable Browser Autocomplete and AutoFill","datePublished":"2024-12-19T09:33:31+00:00","dateModified":"2025-09-03T05:52:11+00:00","mainEntityOfPage":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/"},"wordCount":769,"commentCount":0,"image":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/ubiq.co\/tech-blog\/wp-content\/uploads\/2024\/12\/disable-autocomplete-autofill.jpg?fit=315%2C210&ssl=1","keywords":["disable autocomplete","disable autofill"],"articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/","url":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/","name":"How to Disable Browser Autocomplete and AutoFill - Ubiq BI","isPartOf":{"@id":"https:\/\/ubiq.co\/tech-blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#primaryimage"},"image":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/ubiq.co\/tech-blog\/wp-content\/uploads\/2024\/12\/disable-autocomplete-autofill.jpg?fit=315%2C210&ssl=1","datePublished":"2024-12-19T09:33:31+00:00","dateModified":"2025-09-03T05:52:11+00:00","author":{"@id":"https:\/\/ubiq.co\/tech-blog\/#\/schema\/person\/db98d49a766a3a111d8510935ab90abc"},"description":"Web developers may need to disable browser autocomplete and autofill. Here are the steps to turn off autocomplete and autofill.","breadcrumb":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#primaryimage","url":"https:\/\/i0.wp.com\/ubiq.co\/tech-blog\/wp-content\/uploads\/2024\/12\/disable-autocomplete-autofill.jpg?fit=315%2C210&ssl=1","contentUrl":"https:\/\/i0.wp.com\/ubiq.co\/tech-blog\/wp-content\/uploads\/2024\/12\/disable-autocomplete-autofill.jpg?fit=315%2C210&ssl=1","width":315,"height":210,"caption":"disable autocomplete and autofill in web browser"},{"@type":"BreadcrumbList","@id":"https:\/\/ubiq.co\/tech-blog\/how-to-disable-browser-autocomplete-and-autofill\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ubiq.co\/tech-blog\/"},{"@type":"ListItem","position":2,"name":"How to Disable Browser Autocomplete and AutoFill"}]},{"@type":"WebSite","@id":"https:\/\/ubiq.co\/tech-blog\/#website","url":"https:\/\/ubiq.co\/tech-blog\/","name":"Ubiq BI","description":"Build dashboards &amp; reports in minutes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ubiq.co\/tech-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/ubiq.co\/tech-blog\/#\/schema\/person\/db98d49a766a3a111d8510935ab90abc","name":"Sreeram Sreenivasan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g","caption":"Sreeram Sreenivasan"},"description":"Sreeram Sreenivasan is the Founder of Ubiq. He has helped many Fortune 500 companies in the areas of BI &amp; software development.","sameAs":["https:\/\/www.linkedin.com\/in\/sreeram-sreenivasan\/"],"url":"https:\/\/ubiq.co\/tech-blog\/author\/wordpress\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/ubiq.co\/tech-blog\/wp-content\/uploads\/2024\/12\/disable-autocomplete-autofill.jpg?fit=315%2C210&ssl=1","jetpack_shortlink":"https:\/\/wp.me\/pbGGTT-1zN","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/posts\/6063","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/comments?post=6063"}],"version-history":[{"count":18,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/posts\/6063\/revisions"}],"predecessor-version":[{"id":9453,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/posts\/6063\/revisions\/9453"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/media\/6079"}],"wp:attachment":[{"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/media?parent=6063"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/categories?post=6063"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/tags?post=6063"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}