You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Richard Venneman edited this page Feb 14, 2018
·
1 revision
Make sure you've added the required markup first. After that it's easy to initialize all of the Floatl inputs on your page:
varelements=document.getElementsByClassName("floatl");// In modern browsersfor(varelementofelements){newFloatl(element);}// In old browsersArray.from(document.getElementsByClassName("floatl")).forEach(function(element){newfloatl.Floatl(element);});