Business Magazine

How To View Groupon, Mydeal Promotion Without Newsletter Subcription

Posted on the 09 April 2014 by Altcom @altcomms
Apr 9, 2014

How To View Groupon, Mydeal Promotion Without Newsletter Subcription

Each users visited a coupon site such as Groupon and MyDeal, it will pop up a newsletter subscription form to block the promotion detail. This can be very annoying, because not all users willing to disclose their personal info.

bypass-groupon-sign-up

bypass-mydeal-sign-up

The step to bypass the subscription form is simple, users just have to refresh their browser. Usually the web cookies is only applicable for new visit, return visitors will not see the message.

The cookie found at http://www.groupon.my/

<script type=”text/javascript”>

//Hide the hint if is already used
$(‘#jBuyAsGift’).on(‘click’,function(event) {
var cookie = $.cookie(“featureHintSeen”);
if(true & !cookie) {
$.cookie(“featureHintSeen”, true, {expires: 14, domain: CookieDomain, path: ‘/’});
}
loadPopup(‘#multideal_popup’); placeMultiPopup(true); return false;
});

</script>

We guess the cookie will expire in 14 days, so any return visit after 14 days, the cookie will treat it as new visit.


Back to Featured Articles on Logo Paperblog