Skip to content

Instantly share code, notes, and snippets.

@niksumeiko
niksumeiko / disable-html-form-input-autocomplete-autofill.md
Last active November 26, 2025 15:46
Disable HTML form input autocomplete and autofill

Disable HTML Form Input Autocomplete and Autofill

  1. Add autocomplete="off" onto <form> element;
  2. Add hidden <input> with autocomplete="false" as a first children element of the form.
<form autocomplete="off" method="post" action="">
    <input autocomplete="false" name="hidden" type="text" style="display:none;">
    ...
@umidjons
umidjons / drop-down-page-size-cgrid-view.php
Created November 22, 2013 05:25
Yii: drop down to choose page size for CGridView
// in config/main.php
'params' => array(
'defaultPageSize' => 20,
),
// in controller action
public function actionIndex()
{
if ( isset( $_GET[ 'pageSize' ] ) )
{