Postări

Se afișează postări din ianuarie, 2015

Symlink in windows

Complete guide to symlinks in windows here

Am I on mobile or not ?!

How to check if you are on mobile or not : jQuery: function GetMobileOrNot() { var check = false;   (function ... Code from here ) ; return check; } $( document ).ready( function () { if( GetMobileOrNot() == true ){//Do something} else{//Do something else} }); Source: http://detectmobilebrowsers.com/ Ps: And something more here