<script type="text/javascript" src="/forhtml/js/jquery-hover-effect.js"></script>
$(".color_delete").click(
function () {
$('input.filter_color').val("");
var str = $("#formfilter").find('input').not('[value=""]').serialize();
$("#loadImg").show();
$.get(
"?"+str,
{
sorting:1
},
onAjaxSuccess
);
});
function onAjaxSuccess(data)
{
$("#loadImg").hide();
var content = $(data).find( '#all_products' );
$("#sectionproducts").empty().append(content);
}
$("#sectionproducts").empty().append(content);
$("#sectionproducts").empty().html(content);
$("div").on("click", function(){
/** что то делается **/
})
$('ближайший_родительский_и_статический_элемент').on('событие', 'динамически_подгруженный_елемент', function(){
// действия, которые надо выполнить
});
$("div").click(function(){
//что-то делает
});
//переделать на:
function function_name(){
//что-то делает
}
function function_name(i){
$(i).вешаем обработчики
//$(i) это тоже, что и $(this) у обработчика $("div").click()
}
$(document).on('click', 'element', function () {
// .. //
});
$(document).find('element').on('click', function () {
// .. //
});
jQuery(function() {
jQuery("p.load a").click(function(){
jQuery("p.load a").hide();
jQuery("#img_load").show();
jQuery.ajax({
url: "wp-content/themes/scopic/ajaxloadpost.php",
type: "GET",
data: {"page": page},
cache: false,
success: function(response){
if(response == 0){
alert("Больше нет записей");
jQuery("p.load").hide();
}else{
jQuery("#timeline").append(response);
page++;
jQuery("#img_load").hide();
if(next!=0){
jQuery("p.load a").show();
}
}
}
});
});
});
$('.entry-gallery').magnificPopup({
delegate: 'a', // child items selector, by clicking on it popup will open
type: 'image',
image: { titleSrc: 'title' },
gallery: {
enabled: true ,
navigateByImgClick: true,
},
// Animation
removalDelay: 300,
mainClass: 'mfp-fade'
});
jQuery(document).ready(function($) {
var $container = $('#masonry');
$container.infinitescroll({
navSelector : '#navigation',
nextSelector : '#navigation #navigation-next a',
itemSelector : '.item',
maxPage :10,
loading: {
msgText: 'Заружаем',
finishedMsg: 'Все статьи загружены',
img: '<?php echo get_template_directory_uri(); ?>/img/loading.gif',
}
},
// trigger Masonry as a callback
function(newElements) {
// hide new items while they are loading
var $newElems = $(newElements).css({
opacity: 0});
// ensure that images load before adding to masonry layout
$newElems.imagesLoaded(function() {
// show elems now they're ready
$newElems.animate({
opacity: 1});
$container.masonry('appended', $newElems, true);
});
onAfterLoaded($newElems);
}
);
});
<div id='video' ></div>
<script type='text/javascript'>
jwplayer('video').setup({
file: 'https://youtu.be/dcDlhYPq3jk',
width: "100%",
height: "100%"
});
</script>
<script>
jQuery(function($){
function numberWithCommas(number) {
var parts = number.toString().split(".");
parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ",");
return parts.join(".");
}
$(document).ready(function() {
$("#thousand-separator p").each(function() {
var num = $(this).text();
var commaNum = numberWithCommas(num);
$(this).text(commaNum);
});
});
});
</script>