How to Find Your Lost Device?

Losing your smart device can be drastic and painful, specially when you have a collection of sensitive and/or precious data. Financial loss could be tragic, for quite some time. With panic stricken face you may rush here and there in search of it. There’s a strong hope!!!Log in to this page: https://www.google.com/android/find?u=0 from a PC, […]

Continue Reading

Internet of Things

Since its inception the Internet is continuously changing and evolving. The main communication model of present Internet is human-to-human. The Internet of Things (IoT) can be considered as the future dimension of the Internet that realizes machine-to-machine (M2M) communication. This way, IoT provides connectivity for everyone and everything. The IoT embeds some intelligence in Internet-connected […]

Continue Reading

JQuery Tips

Disabling Right Mouse Click: $(document).ready(function(){$(document).bind(“contextmenu”,function(e){return false;});}); ————— Determine User’s Browser: $(document).ready(function() { if( $.browser.safari ){alert(“safari browser.”)} if( $.browser.chrome){alert(“chrome browser.”)} if ($.browser.mozilla ){ alert(“mozilla browser.”)} if ($.browser.msie ){alert(“msie browser.”)} if( $.browser.opera){alert(“opera browser.”)} }); ————— jQuery CloningjQuery supports cloning – you can use the clone() method to create a clone of any DOM element in your web page. […]

Continue Reading