jQuery

[ follow ]
#web-development
#javascript
#jquery
fromjQuery Script
1 month ago

Simple jQuery Sticky Table Header - oyoTableHeader

oyotableheader is a lightweight jQuery plugin that turns static <thead> elements in long HTML tables into fixed headers that stay visible as users scroll.
jQuery
jQuery
fromCreative Bloq
2 months ago

AI makes character animation faster and easier in Cascadeur 2025.1

Cascadeur 2025.1 introduces AI-driven Inbetweening, enhancing animation speed and intuitiveness, solidifying its position as a competitive tool at an accessible price.
fromSitePoint Forums | Web Development & Design Community
3 months ago

How to Get Reference to Original Clicked Element When Using Event Delegation

const prods = document.querySelectorAll(".products"); prods.AddEventlistener("clicked",(e)=> fetch('some url').then(res => { if (!res.ok) { throw new Error("Cannot fetch resource!") } return res.json() }) .then(data => { const arrayObject = JSON.parse(data.data); arrayObject.forEach(prod => { const markup = `<li>${prod.Info}></li>`; document.querySelector('dialog ul').insertAdjacentHTML('beforeend', markup); }); }).catch(error => console.log(error)); });
jQuery
[ Load more ]