묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
모바일 웹에서 a:active 가 안되는 현상
2015.04.03 17:03
a:hover는 되는데 a:active가 안되네요 ㅜㅜ..
모바일에서는 원래 a:active가 안되는건가요?
크롬 개발 툴에서는 이부분이 오류라고 나옵니다.
jQuery(function() {
jQuery('.xe_content img', this).each(function() {
var $img = $(this);
var imgSrc = $img.attr('src');
if(!$img.parent('a').length && !$img.attr('onclick')) {
var aWrap = document.createElement('a');
aWrap.href = $img.attr('src');
aWrap.setAttribute('onclick', 'window.open(this.href);return false;');
aWrap.setAttribute('style', 'width:100%; height:100%;');
$img.wrap(aWrap);
}
});
});