Chủ Nhật, 25 tháng 9, 2016

Code jquery target-blank open new window tab

Then use the post body as the schema.org description, for good G+/FB snippeting. -->
<script type="text/javascript">
$(document).ready(function(){
$("a").each(function() {
var a = new RegExp('/' + window.location.host + '/');
if(a.test(this.href)) {
$(this).click(function(event) {
event.preventDefault();
event.stopPropagation();
window.open(this.href, '_blank');
});
}
});
});
</script>

Không có nhận xét nào:

Đăng nhận xét