one javascript that's worth having on all of your webpages is the stop errors function, this is a two part code, the function should be placed in the head of the html document and it is activated by the onload command in the body tag
<head> <script type="text/javascript"> <-- function stopErrors() { return true; } window.onerror = stopErrors; // --> </script> </head> <body onload="stoperrors()">...
Friday, October 3, 2008
JavaScript : Alert
the 'javascript alert' is probably the easiest (and the most annoying) javascript event to code.heres an example alert exam...
Back Button
this javascript back button code uses a form button that when clicked on sends the user back to the last webpage veiwed*Please note, this javascript back button should not be relied upon alone and a link to your home page should also be included where ever this javascript back button is used, the reason, if a user arrives at one of your pages from a search engine and clicks on the javascript back button they will simply be sent back to the search engine.so be kind and do yourself a favour include a link to your homepage where ever the back button is used <form> <input type="Button" value="Back" onclick="history.go(-1)"> </form>ora text link could also be usedexample... <A HREF="javascript:history.go(-1)">back</A&...
Auto Redirect
this javascript is similar to the one above and redirects users regardless of the browser they are using.Place the javascript in the head of your html document and remember to change 'index.html' to the name of page you wish to redirect to <script language="Javascript"> <!-- if (top.location == self.location) { top.location = 'index.html' } //--> </script>...
Browser Redirect
use this javascript to redirect users according to the browser they are using.If you have you optimized your site for a certain browser use this script in the head of your html document.Many websites are optimized for a certain browser, but they don't tell the visitor.This leads to visitors not being able to view parts of the site (or the whole site)This javascript allows you to make a page for each browser so that all users can view your page.Remember to change 'explorer.html' and 'netscape.html' to the names of the pages you wish to redirect to. <script language="Javascript"> var browser = navigator.appName if (browser == "Microsoft Internet Explorer") url=("explorer.html"); else url=("netscape.html") document.location.href=url; </script>...
JavaScript Break Frames
this javascript will automatically break a frame, place it in the head of your html document and you will never have to worry about someone loading your page into a frame, the javascript will 'smash' out of the frame.<script> <!-- if (window!= top) top.location.href=location.href // --> </script>...
JavaScript Reload Page
this 'javascript reload page' link is useful because it allows users to reload the page, it is especially useful on servers where images frequently fail to load. this javascript link can be placed anywhere in the body of the document<a href="javascript:location.reload()" target="_self">reload page</a>...
This post shows you how to add pictures,clickable images,images(open in new window),etc.

This post shows you how to add pictures,clickable images,images(open in new window),etc.If your site is full of text,then it will spoil the look of your blog.So,if you add some pictures here and there in the sidebars in your blog,then it will give your blog a professional look.Let's see how to do it.Adding a picture(unclickable one):First upload your photo to any free image hosting site like photobucket.com.They will provide an url(link) directly to the photo.Take a note of the url and use the code below replacing the url( from http to jpg) in the code to your original one.(Set your own dimensions to suite your needs)The image looks like this(unclickable)john...
COLOR CHART
COLOR CHARTHTML CODE COLOR#000000#150517#250517#2B1B17#302217#302226#342826#34282C#382D2C#3b3131#3E3535#413839#41383C#463E3F#4A4344#4C4646#4E4848#504A4B#544E4F#565051#595454#5C5858#5F5A59#625D5D#646060#666362#696565#6D6968#6E6A6B#726E6D#747170#736F6E#616D7E#657383#646D7E#6D7B8D#4C787E#4C7D7E#806D7E#5E5A80#4E387E#151B54#2B3856#25383C#463E41#151B8D#15317E#342D7E#2B60DE#306EFF#2B65EC#2554C7#3BB9FF#38ACEC#357EC7#3090C7#25587E#1589FF#157DEC#1569C7#153E7E#2B547E#4863A0#6960EC#8D38C9#7A5DC7#8467D7#9172EC#9E7BFF#728FCE#488AC7#56A5EC#5CB3FF#659EC7#41627E#737CA1#98AFC7#F6358A#E4317F#F52887#E4287C#C12267#7D053F#CA226B#C12869#800517#7D0541#7D0552#810541#C12283#E3319D#F535AA#FF00FF#F433FF#E238EC#C031C7#B048B5#D462FF#C45AEC#A74AC7#6A287E#8E35EF#893BFF#7F38EC#6C2DC7#461B7E#571B7E#7D1B7E#842DCE#8B31C7#A2...
Marquee
scrolling text-marquee-html codes
#fullpost{display:inline;} This post explains you how to add Scrolling text(also called as marquee)to your blog sidebars,blog posts,etc.
Another way to attract the visitors is adding some decoration to the site like scrolling text,etc.But,don't decorate it too much,particularly if your site contains too much text as it irritates and spoils the concentration of the reader.You can add scroll bars to tell your visitors what will be your next updates,popular posts,advertisements,etc.
So,how to add the scrolling text in your blog,let me explain it:
Adding simple scrolling text:
Here is the code to add a simple scrolling text from right to left side
<marquee>code to simple scrolling text</marquee>
You can add this attribute to alternate...
Thursday, October 2, 2008
ASP .NET WITH C# - By Vijaya Mukhi
By Vijay MukhiASP.Net provides the most powerful environment for development of sophisticated, real-life business applications. It was only natural for us to get sucked into the vortex of the exciting opportunity that this language provides, to satiate our technical appetite. This book presents a realistic tableau of the vast repertoire of features of the ASP.Net language. We have scythed through the maze of technological jargon to present to you, in a simple yet comprehensive manner, all the salient features of the language.The book commences with the assumption that you are a programming tyro, with no previous knowledge of ASP.Net or C#. It however, expects you to have a working knowledge of the Hyper Text Markup Language (HTML). The book covers the length and breadth of the ASP.Net framework....
.Net Introduction
What is .Net?Microsoft developed .Net programming language as the latest version of Visual Studio 6 with lot of enhancements. Dot Net framework is developed for the integration of applications written with ASP.Net, Vb.Net, C#.Net, etc. Dot Net Framework consists of class libraries used for programming. Various .Net Framework versions are 1.0 to 3.5. Microsoft Visual Studio include code editor for GUI programming in Vb.Net, ASP.Net, C#.Net and J#.Net, etc. Visual studio 2003 (.Net Programming Languages) onwards are Object Oriented Programming Languages. Latest Version of Visual Studio is 2008.In this site it provides free ebooks on dotnet, ASP.Net, VB.Net, C#.Net, J#.Net, etc and give you knowledge about .Net programming, C# net programming, asp net programming, vb net programming, net framework...
39 Tutorials for making unique buttons on Photoshop

39 Tutorials for making unique buttons on Photoshop You can learn how to make great buttons with these photoshop tutorials tutorials from different designers, 39 great inspirational and educational sources to make unique buttons with Photoshop.Photoshop buttons , photoshop brushes , photoshop gradiets and moreYou can learn how to make great buttons with these photoshop tutorials tutorials from different designers, 39 great inspirational and educational sources to make unique buttons with Photoshop.Photoshop buttons , photoshop brushes , photoshop gradiets and more Veerle: Create smooth...
Wednesday, October 1, 2008
Internet English
Internet English helps students develop the skills to surf the Internet, while providing a structured framework to practise their conversation skills through communicative tasks. It can be used in traditional or computer-equipped classrooms.******Download 15mb pdfCode:http://rapidshare.com/files/93549047/NetEng....
C Programming Language [ Dennis Ritchie]
This is a c language text book for free and the author of this book is Dennis RitchieThis is the link to download the text bookCode:http://www.ziddu.com/download.php?uid=ZKucnZimYrChl5anr6yZlJyiYa%2BWl5...
250 HTML & WEB DESIGN SECRETS

Book Description* This value-priced guide by one of the Top 25 Most Influential Women on the Web delivers 250 solutions, workarounds, tips, and annoyance-busters that Web designers won't find anywhere else* Offers 500 pages of insider techniques to improve workflow and efficiency, save development time and money, and increase search engine rankings and site traffic, whether designers want to enhance an existing Web site or build a state-of-the-art site from scratch* Covers topics such as HTML, XHTML, CSS, graphics and multimedia, cell phone and PDA accessibility, content development, tools, usability, information architecture, globalization,...
BOOKS for KIDS in Telugu
Books for Kids in Telugu .krishnaleelalupanchatantramjayveerahanumaanbhgavatamCode:http://rapidshare.com/files/121788644/panchatantram.by.himanshu.rar http://rapidshare.com/files/121790855/jayveerahanumaan.by.himanshu.rar http://rapidshare.com/files/121793828/bhgavatam.by.himanshu.rar http://rapidshare.com/files/121795015/krishnaleelalu.by.himanshu....
Automotive , Mechanicle , Electrical & Electronic Hand books
http://rapidshare.com/files/120228827/16_-_Electric_Motors.rarhttp://rapidshare.com/files/120229007/Electric_Vehicle_Battery_Systems.rarhttp://rapidshare.com/files/120229256/How_to_read_wiring_Diagram_-_Toyota.rarhttp://rapidshare.com/files/120229498/Automotive_Quality_System_Handbook.rarhttp://rapidshare.com/files/120229814/Physics_of_Atoms_and_Ions.rarhttp://rapidshare.com/files/120230085/Turbomachinery_Design.rarhttp://rapidshare.com/files/120230572/Refrigeration_and_Air-Conditioning_3rd_ed.rarhttp://rapidshare.com/files/120230875/Teach_Yourself_Electricity___Electronics.rarhttp://rapidshare.com/files/120231180/Electrical_and_Electronic_Principles_and_Technology.rarhttp://rapidshare.com/files/120231686/automotive_car_hack___modd.rarhttp://rapidshare.com/files/120232297/Home_Wiring.rarh...
500 Essential Business Letters
*Save Time and Money*Improve and Strengthen Communication Skills*Never Be At Loss For WordsBANKINGAuthorizationsInstructions to BankRequest to BankMiscellaneousCONSUMER RELATIONSAnnouncementsApologiesBilling ErrorsCongratulationsCreditHandling ComplaintsInvitationsMeetings with CustomerOrder ProblemsPost-Sale CorrespondenceReturnsThank YouMiscellaneousGENERAL FORMSCredit ManagementDonationsJob SearchRetaining Professinal AdvisersOtherHUMAN RESOURCESEmployee PerformanceHiringInternal AnnoucementsInternal MeetingsProblems and TerminationsResignationsMiscellaneousPERSONAL RELATIONSHIPSCondolencesCongratulationsFarewellSympathyThank YouLEGALLandlord/TenentPromissory NotesMiscellaneouss*l*s & MARKETINGAdvertising and MediaPress ReleasesPromationPublic RelationsSUPPLIER RELATIONSBids and ProposalsComplaintsCompliments...
JAVA How to Program 6th Edition with source code

Java How to Program, 6/EHarvey M. Deitel, Deitel & Associates, Inc.Paul J. Deitel, Deitel & Associates, Inc.Quote:ISBN-10: 0131483986ISBN-13: 9780131483989Publisher: Prentice HallCopyright: 2005Format: Paper Bound w/CD-ROM; 1568 ppPublished: 08/04/2004Book DescriptionThe Deitels' groundbreaking How to Program series offers unparalleled breadth and depth of programming concepts and intermediate-level topics for further study. The books in this series feature hundreds of complete, working programs with thousands of lines of code. This edition is completely up-to-date with The Java 2 Platform Standard Edition (J2SE) 1.5. Now includes topics...
Martial Arts Video Tutorials
his is a subject I've always loved studying. The trick is to never let anyone know that you are skilled in this area so people will underestimate you. Wink* Parent Directory* Ankle Shoulder Throw.wmv* Ankle Throw.wmv* Arm Bar Takedown.wmv* Arm Bar to Sky.wmv* Cross Arm Break.wmv* Cross Arm Lift.wmv* Double Arm Shoulder Throw.wmv* Double Hip Push.wmv* Double Leg Pull.wmv* Fan Throw.wmv* Figure Four.wmv* Flying Scissors.wmv* Hand Downward.wmv* Hand Throw 180.wmv* Hand Throw Hand Downward.wmv* Hand Throw Upside Down.wmv* Hand Throw with sweep and shoulder assist.wmv* Hand Twist.wmv* Head Twist.wmv* Hip Throw Side Variation.wmv* Hip Throw.wmv* Hip Wheel.wmv* Inside Arm Bar Throw.wmv* Inside sweep.wmv* Jackie Chan.wmv* Kata Garuma.wmv* Knee Lock.wmv* Kneeling Shoulder Throw finger variation.wmv*...
Oxford English Dictionary

This major new edition (2004) of the world famous Concise Oxford English Dictionary provides an authoritative description of the English language. With instant access to over 240,000 words, phrases, and definitions, this program is ideal for anyone needing an up-to-date dictionary of current English on their PC for study, work, or home.Cross-referencing, backtracking, cutting and pasting sections into your word processing document are just a few of the features you will find in this world-renowned best-selling dictionary. Containing meanings from street slang to scientific technology, this electronic dictionary will speed up your access to the...
Tuesday, September 30, 2008
SOME BACKGROUND MUSICS
7/g BRUNDAVAN COLONY Code:http://qshare.com/get/165900/Theme_music.mp3.html--------------------------------------------------------------------------------CHENNAKESAVA REDDY Code:http://rs88.rapidshare.com/files/111273255/Chenna.rarKALIDASUCode:http://rapidshare.com/files/116202782/Kalidasu_BGM.mp3SHIVAJICode:http://rapidshare.com/files/109907446/Shivaji_theme.mp3BASHACode:http://rapidshare.com/files/111272164/Basha.rarBUNNYCode:http://rapidshare.com/files/116694884/Bunny.rarDONCode:http://rapidshare.com/files/103601554/Don6.mp3MUNNACode:http://rapidshare.com/files/116202783/Munna_BGM.mp3CHIRUTHACode:http://www.ziddu.com/download.php?uid=bLKdlZ2paK6ZnOKnZaqhkZSrYqygmZas5STALINCode:http://rapidshare.com/files/99001960/07_Theme_Music.mp3POURUDUCode:http://rapidshare.com/files/116202784/Pourudu_BGM.mp3FOR...
BACKGROUND MUSIC THEMES
SOME BACKGROUND MUSIC THEMEShttp://www.mediafire.com/?sharekey=91795b0152301bc3d5a101cf914073b4a32d808142c6b...