Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 215 Bytes

File metadata and controls

5 lines (5 loc) · 215 Bytes
// set value --> el.val('Hello World');
// get value --> el.val();
Element.prototype.val = function(newValue) { if(newValue === undefined) return this.value; this.value = newValue; return this; }