Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 491 Bytes

README.md

File metadata and controls

32 lines (25 loc) · 491 Bytes

jQuery.pad

jQuery plugin for string padding

// time = 01:05 $.lpad((new Date()).getHours(), 2, '0'); // 01 $.lpad((new Date()).getMinutes(), 2, '0'); // 05 $.rpad('Hello world!', 14, '!'); // Hello world!!! $.pad('337', 4, '1', 'left'); // 1337 console.log("This: will,\nBe: nicely formatted!");
This:          will,
Be:            nicely formatted!