Community Library

Welcome to the Community Library, home to Webflow-specific JavaScript solutions. Explore the ever-growing collection of real-world examples, utilities, and plugins created by Slater users. Whether you're looking for inspiration, facing a coding challenge, or want to learn from others, the Community Library is a collaborative resource to help you unlock the full power of JavaScript.

Join Cory Moen, Digidop, Jeff McAvoy, and Jared Malan, and contribute your own solutions. To contribute, add your scripts to your personal library and then reach out to us on Twitter or Slack.

Text Highlight Color
CSS code for high-contrast text selection: black background and white text.
css
::selection
text selection
By Jared Malan
Handle Resize
Optimizes window resize handling by debouncing rerendering of elements.
debouncing
performance optimization
event handling
By Jared Malan
Copy to Clipboard
Copy text to clipboard on button click with visual feedback and console log.
clipboard api
event handling
By Jared Malan
Improved Font Rendering
CSS for font smoothing, text rendering, and scroll behavior on the body element.
css
font smoothing
text rendering
scroll behavior
web development
By Jared Malan
Set Hidden Input Value From URL Parameters
Retrieve URL parameter and set it to a hidden input field.
url parameters
regular expressions
By Corey Moen
Copy to Clipboard
Copy text to clipboard on button click with visual feedback and console log.
clipboard api
event handling
By Jared Malan
Validation - Phone
Validates phone number format and handles errors on input field blur.
validation
regular expression
event handling
By Jared Malan
Rive - Set Text Run Value
Update the string of text used in a Rive text run at runtime
text processing
string manipulation
document editing
dynamic content update
By Jeff McAvoy
Fetch - Put
Update server resource via PUT request using Fetch API.
fetch api
put request
error handling
By Jared Malan
Click Something Based on ID in URL
Automatically triggers a click on an element if URL hash matches "#example".
url hash
click event
web development
By Corey Moen
Select Radio on Load
Trigger parent element click based on radio button value.
jquery
event handling
By Jared Malan
Click Something When Pressing ESC Key
Triggers a click on a specified element when the 'Escape' key is pressed.
event listener
keydown
By Corey Moen
Progress Bar Timer
JavaScript code to dynamically update a progress bar based on time between two dates.
javascript
progress bar
date manipulation
real-time updates
By Digipop
GSAP card staggered animation
Animate elements on viewport entry with GSAP and ScrollTrigger.
gsap
scrolltrigger
animation
By Digipop
Tabs switch on hover
JavaScript code for a hover-based tab interface with dynamic content display.
tabs
hover events
dynamic content display
By Andrea Morgan
Auto update copyright year
Dynamically updates an HTML element to display the current year using JavaScript.
date object
dynamic content update
By Digipop
Pointer events
CSS classes to control pointer events: .pointer-events-off disables interactions, .pointer-events-on enables interactions.
css
pointer-events
interactivity
user interaction
By Jared Malan
Get localStorage
Retrieve and parse surfers data from localStorage.
localstorage
json
data retrieval
web storage
By Jared Malan
Number to Currency
Formats a string input as US dollar currency without decimal places.
currency formatting
error handling
validation
By Jared Malan
Fetch - Delete
Delete a resource via API using JavaScript's fetch with DELETE method.
api
fetch
delete
By Jared Malan
Print Page Button
Trigger browser print dialog on clicking element with ID 'print'.
printing
By Digipop
Rive Input - Create Variable by Name
Create a variable for your state machine inputs by input name.
rive
input
By Jeff McAvoy
Track User Localstorage
Tracks user navigation and populates a form field with the history.
user journey
localstorage
form population
url tracking
By Jared Malan
Basic scrollTrigger setup
Animate elements based on scroll position using GSAP and ScrollTrigger.
gsap
scrolltrigger
web animation
scroll-based animation
By Digipop
Animated American Flag
Render and animate an American flag on a canvas with dynamic waving effects.
html5 canvas
animation
american flag
By Jared Malan
Filter Out Selection
Filter array elements matching button text on button click.
dom manipulation
event handling
array filtering
By Jared Malan
Currency to Number
Convert currency string to number by removing non-digit characters and parsing to float. Throws error for invalid input.
currency conversion
string manipulation
error handling
By Jared Malan
Refresh after form submit
Automatically refreshes the page 7 seconds after any form submission.
form submission
page reload
By Corey Moen
Set localStorage
Store an array of surfer names in localStorage as a JSON string.
localstorage
json
data storage
By Jared Malan
Page Change Click Delay
Delay anchor navigation by 500ms for specific classes to allow processes like animations.
jquery
event handling
navigation delay
By Corey Moen
Remove https:// From Text Link
Remove protocols from anchor texts using jQuery.
url cleaning
By Miodrag Jovanovic
Navbar color change depending on hovered section
Dynamically update element colors on scroll based on visible section attributes.
dom manipulation
event handling
scroll events
dynamic styling
By Digipop
Rive Instance
This code creates a new Rive animation, sets its properties, and starts playing it when it's loaded.
javascript
rive
animation
interactive
canvas
autoplay
state machine
resize
onload
By Jeff McAvoy
Fix Paragraph Runts With Nonbreaking Space
Prevent single-word runts in HTML elements with the class `.no-runt`.
jquery
typography
By Corey Moen
Validation - LinkedIn URL
Validate LinkedIn URLs and handle input validation on blur event.
regular expressions
input validation
linkedin
jquery
By Jared Malan
Validation - Email
Validates email format and handles invalid input on blur event.
email validation
regular expression
jquery
event handling
By Jared Malan
Rive Input - Update Number
This code lets you update the value of a Rive number input variable.
rive
javascript
input
By Jeff McAvoy
Load All CMS Items
This JavaScript code parses and displays CMS items from a webpage, storing them in an array and rendering them in a specified div.
jquery
cms
web scraping
dom manipulation
By Jared Malan
Ellipsis text
CSS class to truncate text with ellipsis when it overflows the container width.
css
text overflow
ellipsis
single line text
By Jared Malan
Expand text on click
Toggle visibility of text sections with "Read More" buttons using JavaScript.
read more button
expandable text
class manipulation
By Andrea Morgan