How to check if AdBlock is enabled

1
Comments

Here is the simplest way to check if AdBlock is enabled on your site: First of all you should create simple javascript file with following content: var isAdsDisplayed = true; Name it adsbygoogle.js and upload to your web server. Then on the page where you want to check if AdBlock is enabled or not just add the following script: <script src="/js/adsbygoogle.js"></script> <script> if(window.isAdsDisplayed === undefined ) { // AdBlock is enabled. Show message or track cu...

Read further...

Advanced Tic Tac Toe final release

0
Comments
Advanced Tic Tac Toe final release

Сегодня состоялся последний плановый релиз замечательной стратегической игры Advanced Tic Tac Toe. В этом релизе добавлена подсветка последнего хода противника, страница описывающая правила игры и немного информации о нашей замечательной комманде ;) Но на этом мы не заканчиваем, у нас еще полно идей и желания для реализации будущих проектов. Advanced Tic Tac Toe был проектом для "разогрева" и он с ним справился. Теперь он переходит в стадию поддержки (громко сказано :-)). Спасибо всем за внимани...

Read further...

Чат в Tic Tac Toe Advanced

0
Comments
Чат в Tic Tac Toe Advanced

Сегодня состоялся 4-й релиз увлекательной стратегической игры в крестики-нолики. В Tic Tac Toe Adnvanced появился компактный чат. Теперь можно обмениваться впечатлениями с соперником во время игры. Вы сможете прокомментировать ход противника не переключаясь на другую вкладку. Но даже если вы покинули игру, например во время ожидания хода противника, Tic Tac Toe напомнит вам о необходимости сделать ход миганием иконки вкладки. В дальнейшем планируем добавить индикацию последних ходов игрока и про...

Read further...

Horizontally scrolling websites

0
Comments

I want to create Windows 8 (Metro UI) theme for Wordpress, first of all I should put all content horizontally, and allow users to scroll this content using mouse wheel. Demo To solve this problem I have used jQuery and scrollTo jQuery plugin. First of all we should subscribe to mouse wheel event: function initScrollCapture() { var body = document.getElementById("body"); var mousewheelevt=(/Firefox/i.test(navigator.userAgent))? "DOMMouseScroll" : "mousewheel" if (bod...

Read further...

Synchronize opera tabs

0
Comments
Synchronize opera tabs

Hello all, If you want to synchronize opened tabs in opera, you can notice that opera can't do this... I would like to introduce you Sync Open Tabs - extension for opera that synchronize opened tabs using Opera Link notes. You just need to install this extension, enter computer name and get opera link verifier code (see detailed instruction). This is first version, so it can contain bugs. If you find any bugs please inform me (drussilla7@gmail.com).

Read further...