Tag Archives: javascript

calculate div position

After trying out loads of ways to find out the position of div in web page I found this be the best code function getPosition(obj){ var topValue= 0,leftValue= 0; while(obj){ leftValue+= obj.offsetLeft; topValue+= obj.offsetTop; obj= obj.offsetParent; } finalvalue = {‘left’: … Continue reading

Posted in Computers, HTML/CSS, Web Development | Tagged | Leave a comment

Javascript game engine for jQuery

gameQuery is a jQuery plug-in to help make javascript game development easier by adding some simple game-related classes. It’s still in an early stage of development and may change a lot in future versions. The project has a Google Code … Continue reading

Posted in Computers, Web Development | Tagged , | Leave a comment

jCryption

In short words jCryption is a javascript HTML-Form encryption plugin, which encrypts the POST/GET-Data that will be sent when you submit a form. It uses the Multiple-precision and Barrett modular reduction libraries for the calculations and jQuery for the rest. … Continue reading

Posted in Computers, Web Development | Tagged , | Leave a comment

Create Powerful Mobile Apps with HTML, CSS and jQuery

jQTouch is a jQuery plugin for mobile web development on forward-thinking devices. You can create powerful mobile apps with just HTML, CSS, and jQuery. It supports native animations, automatic navigation, and themes for mobile WebKit browsers like iPhone, G1, and … Continue reading

Posted in Web Development | Tagged , | Leave a comment

How To Create a Realistic Hover Effect with jQuery

Would you like to Create a Realistic Hover Effect With jQuery? It adds a rising hover effect to a set of icon links using jQuery’s animate effect. In a nutshell, the JS appends the reflection/shadow to each <li>, then animates … Continue reading

Posted in Web Development | Tagged , | Leave a comment