🌱
Growing every day
Pinned Loading
-
scrollbar-width.js
scrollbar-width.js 1// Get the browser scrollbar width.
23function getScrollBarWidth() {
4var $outer = $('<div>').css({ visibility: 'hidden', width: 100, overflow: 'scroll' }).appendTo('body'),
5widthWithScroll = $('<div>').css({ width: '100%' }).appendTo($outer).outerWidth();
-
jQuery Text Toggle
jQuery Text Toggle 1// Simple function for text toggling in jQuery
2$.fn.extend({
3toggleText: function (a, b) {
4return this.text(this.text() == b ? a : b);
5}
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.