Skip to content

Instantly share code, notes, and snippets.

View kadimi's full-sized avatar
I love programming...

Nabil Kadimi kadimi

I love programming...
View GitHub Profile
@kadimi
kadimi / toggle-attr.js
Last active August 7, 2023 14:33 — forked from mathiasbynens/toggleAttr() jQuery plugin
Toggle checked, selected, disabled, checked, readonly, multiple, etc…
/**
* toggleAttr() jQuery Plugin
*
* Toggle checked, selected, disabled, checked, readonly, multiple, etc…
*/
jQuery.fn.toggleAttr = function (attr) {
return this.each(function () {
var $this = $(this);
if ($this.attr(attr)) {
$this.removeAttr(attr);