|
|
Ok!
|
|
|
Ok!
|
|---|---|---|---|---|
| 289 | (function() {
// Load the script
const script = document.createElement("script");
script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js';
script.type = 'text/javascript';
script.addEventListener('load', () => {
console.log(`jQuery ${$.fn.jquery} has been loaded successfully!`);
// use jQuery below
});
document.head.appendChild(script);
})(); | jquery | 200 | загрузить скриптом jQuery |
| 64 | function ProductsFilter(a) {
var products = $('.catalog-item');
$.each(products, function () {
if($(this).find('.catalog-item-name').text().indexOf(a) > -1){
$(this).prependTo($(".catalog-items-container"));
}
else{
$(this).remove()
}
});
} | товары, фильтр, jquery | 100 | jQuery фильтр по товарам |
| 8 | onclick="$('html, body').animate({scrollTop:6500}, 'slow'); | jquery, scrollTop, скролл, плавный | 190 | Плавный скролл до точки, jQuery |