hover 시 image src 교체 $('a').on('mouseenter', function(e){ var img_src = $(this).find('img').attr('src'); img_src = img_src.replace('_off','_on'); $(this).find('img').attr('src',img_src); }); $('a').on('mouseleave', function(e){ var img_src = $(this).find('img').attr('src'); img_src = img_src.replace('_on','_off'); $(this).find('img').attr('src',img_src); });
스와이퍼 슬라이드 페이지네이션 커스텀 var pagingText = ['1', '2', '3']; var seasonSlide = new Swiper('.js_season_slide', { slidesPerView: '1', loop: true, loopAdditionalSlides: 1, centeredSlides: true, speed: 1000, autoplay: { delay: 4000, disableOnInteraction: true, pauseOnMouseEnter: true, }, navigation: { prevEl : '.js_btn_prev', nextEl : '.js_btn_next', }, pagination: { el: '.js_season_slide_tab', clickable:..
$(function(){ $('.close').click(function(){ $('iframe').attr('src', $('iframe').attr('src')); }); }); *참고 https://stackoverflow.com/questions/13598423/stop-all-playing-iframe-videos-on-click-a-link-javascript Stop all playing iframe videos on click a link javascript I have a list of iframe videos in my webpage.
$('.js_pop_close, #modal_popup').on('click', function(){ $("#modal_popup").fadeOut(); }); if (getCookie("notToday") != "Y") { $("#modal_popup").fadeIn(); } function closePopupNotToday1() { setCookie('notToday', 'Y', 1); $("#modal_popup").fadeOut(); } function closePopupNotSevenDay1() { setCookie('notToday', 'Y', 7); $("#modal_popup").fadeOut(); } function setCookie(name, value, expiredays) { var..
$(document).ready(function(){ const pop = document.querySelector('#modal_popup'); const close = document.querySelector('#modal_close'); const shortcode_date = '2020-03-15T24:00:00' // 끝나는 날짜를 설정 // 쿠키 가져오기 const getCookie = function (cname) { const name = cname + "="; const ca = document.cookie.split(';'); for(let i = 0; i
$(document).ready(function(){ var today = new Date(), todayM = today.getMonth() + 1, todayD = today.getDate(), thisM = $('#thisMonth').text(); if(thisM == todayM){ $('.calendar-table td').each(function(){ var thisD = $(this).find('em'), thisDcnt = thisD.text(); if(thisDcnt == todayD){ thisD.parents('td').addClass('today'); } }) } })