12345678910111213141516171819202122 |
- $(document).ready(function(){
-
- $("body").on("click","a.advertsub",function(){
- var adId = this.getAttribute('data-id');
- console.log(adId)
- wlog("ad", adId ,"3");
- return true;
- })
- })
- function bombox(textt) {
- $(".bomb-box").fadeIn("slow");
- $(".bomb-box").text(textt);
- var bombwidth = $(".bomb-box").width();
- $(".bomb-box").css({
- "marginLeft": -(bombwidth + 25) / 2 + "px"
- });
- setTimeout(function() {
- $(".bomb-box").fadeOut("slow");
- }, 4000);
- }
|