(function ($) {
$( document ).ready(function() {
$('.popup-msg').hide();
$('.user-login-for-popup').hide();
$('.commerce-add-to-cart .form-submit').click(function(event){
var $uid = $('.user-login-for-popup').html();
if(!$uid) {
event.preventDefault();
$('.popup-msg').dialog({
maxWidth:600,
maxHeight: 250,
width: 600,
height: 250,
resizable: false,
modal: true,
title: 'You need to login or register to Leaps.',
});
}
});
});
})(jQuery);
$( document ).ready(function() {
$('.popup-msg').hide();
$('.user-login-for-popup').hide();
$('.commerce-add-to-cart .form-submit').click(function(event){
var $uid = $('.user-login-for-popup').html();
if(!$uid) {
event.preventDefault();
$('.popup-msg').dialog({
maxWidth:600,
maxHeight: 250,
width: 600,
height: 250,
resizable: false,
modal: true,
title: 'You need to login or register to Leaps.',
});
}
});
});
})(jQuery);
Comments
Post a Comment