Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

jQuery – Auto Complete Off

Posted on March 14, 2014October 26, 2015 By David Kittell
$(document).ready(function(){
    $('form').attr('autocomplete', 'off');
});
Originally Posted on March 14, 2014
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code JavaScript jQuery

Post navigation

Previous post
Next post

Related Posts

File Exists

Posted on December 14, 2013October 26, 2015

Public Function FileExists(ByVal FileFullPath As String) _ As Boolean Dim f As New IO.FileInfo(FileFullPath) Return f.Exists End Function Originally Posted on December 14, 2013Last Updated on October 26, 2015 All information on this site is shared with the intention to help. Before any source code or program is ran on…

Read More

UNIX – List USB Devices With lsusb

Posted on February 12, 2018February 12, 2018

On the Mac “lsusb -v” is rather clean in comparison to other systems. # If not already installed… # brew update && brew tap jlhonora/lsusb && brew install lsusb lsusb -v lsusb -v # or lsusb -v | grep -E ‘\<(Bus|iProduct|bDeviceClass|bDeviceProtocol|idVendor|idProduct|iManufacturer)’ 2>/dev/null All information on this site is shared with…

Read More

Android Contacts – Remove Non Numbers From Phone

Posted on February 21, 2014October 26, 2015

UPDATE data SET data1 = REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(data1, ‘.’, ”), ‘+’, ”), ‘ ‘, ”), ‘)’, ”), ‘-‘, ”), ‘(‘, ”) WHERE mimetype_id IN ( SELECT _id FROM mimetypes WHERE mimetype LIKE "%phone%" ) AND ( data1 LIKE ‘%+%’ OR data1 LIKE ‘%.%’ OR data1 LIKE ‘%-%’ OR data1 LIKE ‘% %’…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes