Category Archives: Web Development

Colortip

Very nice tooltip based on jQuery Colortip

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

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

Pixlr

found this very nice online image editor. Give it a try

Posted in Web Development | Leave a comment

Handy RegExp tool

http://gskinner.com/RegExr/

Posted in Computers, Web Development | Leave a comment