/********************************************* * form.js * ------------------------------------------- * @init * @plugin * @requires * - jquery.js *********************************************/ /* ------------------------------------------- * @init ------------------------------------------- */ $(function () { var u = new EPOS_CARD.Util(); $.paramHideContents(); }); /* ------------------------------------------- * @plugin ------------------------------------------- */ (function($){ /* * @plugin paramHideContents */ $.paramHideContents = function(){ /* vars ------------------------------- */ var u = new EPOS_CARD.Util(), $elm = $(".js-paramHideContents"), target = 'smikae_ts_rp'; if($elm.length === 0){ return false; } /* setting ------------------------------- */ if(location.search.match(target)){ $elm.hide(); } }; })(jQuery);