RSS

Tag Archive | "Javascript"

Ajax Image Cropper

Thursday, October 30, 2008

0 Comments

Ajax Image Cropper This is an AJAX image cropper using the YUI (Yahoo User Interface). Demo Download Any questions please leave a comment with your email and I will contact you as soon as possible. please wait...Rating: 7.0/10 (10 votes cast)

Continue reading...

Javascript Drop Down Menu

Tuesday, October 28, 2008

0 Comments

Have you got lots of things you need to cram into your nav bar? The best way to solve this problem without making your web page look messy is to arrange everything into drop down menus. This tutorial will show you how to do this using javascript from the Spry framework. You can view a demo [...]

Continue reading...

Javascript Bookmark/Favourite Link

Tuesday, September 30, 2008

0 Comments

Using this tutorial you can create a link which when clicked the page will be bookmarked. First thing to do is to put this code in between the <head> tags: <script><!– function bookmark(url,title){ if((navigator.appName == “Microsoft Internet Explorer”) && (parseInt(navigator.appVersion) >= 4)){ window.external.AddFavorite(url,title); } else if(navigator.appName == “Netscape”){ window.sidebar.addPanel(title,url,”"); } else{ alert(”Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark”); } } // –></script> Then put this link in your page [...]

Continue reading...