Learn how to Make Money Online doing freelancing, Affiliate Marketing, Blogging and many more ...
Go4Expert
Go4Expert RSS Feed

Go Back   Programming and SEO Forum >  Go4Expert > Articles / Source Code > Web Development

Post New Thread  Submit New Article  Copy HTML to Clipboard  Copy BBCode to Clipboard  | More
Tutorials and Source Code in : HTML/DHTML - JavaScript/VBScript Bookmarks Forum Tools Search this Forum
Announcement
Views: 17,886 View Announcement Announcement: Rules for Duplicate Article Submission
10-08-2008 shabbir (Go4Expert Founder)
  Rating Article / Author Last Post Reverse Sort Order Replies Views
Thumbs down
shabbir
After AWeber, GetResponse and Feedburner SlideUp there has been so many requests for Slideup especially for Blogger and other Autoresponders and so here I come up with a general SlideUp HTML code that you can use for any any autoresponder with any CMS of your choice including static pages. As this...
07-26-2010 03:54 PM
by shabbir Go to last post
0 248
Talking
shabbir
Working for one of my client where he had design for dual color border and the easiest way to get it done was to use 2 elements having border of different color.. <div style="border:2px solid blue;"> <div style="border:2px solid Orange;"> Some Content You want Goes Here </div> </div>...
07-06-2010 11:10 PM
by shabbir Go to last post
9 967
 
pradeep
I needed to trim a string and also replace more than one spaces with a single space. The solution was simple with String.replace in JavaScript. Here's the code: var m = " My name is Pradeep "; m = m.replace(/^+/,'').replace(/+$/,'').replace(/{2,}/,' '); Making a function out of it. ...
07-02-2010 03:23 PM
by dubeyparam Go to last post
6 49,221
Wink
shabbir
Web-pages can take take time to load for variety of reasons and if your page takes lot of time to load you have to identify areas where most of the time is taken. I have seen that in most cases it is always the Advertisements. At least that was the case for Go4Expert. My next step was to load...
07-02-2010 12:46 AM
by shabbir Go to last post
3 599
 
Thread Rating: 1 votes, 5.00 average. pradeep
The Javascript Code : function autoCompleteDB() { this.aNames=new Array(); } autoCompleteDB.prototype.assignArray=function(aList) { this.aNames=aList;
05-12-2010 10:16 AM
by Arthanarisamy Go to last post
35 34,972
 
pradeep
Sometimes we need the user to enter only numbers in a text field, so I have some up with a small piece of JavaScript to do exactly that. It works for both IE and Firefox. function onlyNumbers(evt) { var e = event || evt; // for trans-browser compatibility var charCode = e.which ||...
04-07-2010 03:44 PM
by Manojbijnori Go to last post
12 61,103
 
coderzone
Question Number 1 1.<FORM action=http://www.x.com/p/sv method=post> 2. Name: <INPUT type="text" name="name"> 3. Address: <INPUT type="text" name="addr"> 4. Email: <INPUT type="text" name="email"> 5. Sex: <INPUT type=radio name=sex value=M>Male 6. <INPUT type=radio name=sex1...
04-07-2010 04:36 AM
by WebspoonUK Go to last post
8 7,960
Wink
pradeep
Sometimes, we need to rotate images on ours web pages, it may be ads or some simple images.Below you'll find the code for implementing the same. You can create as many image rotations you want, you just need to specify the urls of the images in an Array, and the object where the image will be...
03-31-2010 10:04 PM
by shiqinzhang Go to last post
11 116,263
Cool
Thread Rating: 8 votes, 5.00 average. pradeep
Introduction One Javascript function that gets used such frequently than it should to be is "eval". "eval" evaluates the content of a text string passed to it and then executes it as if it were normal Javascript code.. Actually, we should never use eval for any purpose in our code, be it...
02-09-2010 04:08 PM
by elizas Go to last post
9 16,216
 
Thread Rating: 1 votes, 5.00 average. naimish
Introduction Any Excel Comparator does the comparison for single Tab at a time but this Entire script compares the number of tabs present in both the excel sheets provided. Background The VBScript needs to be provided with Source Files (to be compared) and a path for the Result File to...
08-20-2009 03:58 PM
by naimish Go to last post
6 7,796
Thumbs up
Thread Rating: 2 votes, 3.00 average. sun_kangane
Background Many time we found the file worm.vbs in our computer in each dir. worm.vbs may or may not be malicious. but when they execute's they consume CPU. So, Better option is to remove them. but it is tough job as they exist in each dir. I written a vbScript to...
07-07-2009 10:00 AM
by naimish Go to last post
4 2,454
 
Magena
Taken from Wikipedia. Common errors Some of the most common errors in the usage of XHTML are: Failing to realize that documents won’t be treated as XHTML unless they are served with an appropriate XML MIME type Not closing empty elements (elements without closing tags in HTML4) ...
07-06-2009 07:18 PM
by David Michael Go to last post
3 1,901
 
Shree Limbkar
// The functions have been adapted from various sources // and re-written to provide maximum flexibility // and compatability with various browsers. //Global Declarations var ie = (document.all) ? true : false; function toggleClass(objClass){ // This function will toggle obj...
07-06-2009 07:17 PM
by David Michael Go to last post
9 10,439
Cool
pradeep
Introduction Some characters are reserved in HTML. For example, you cannot use the greater than or less than signs within your text because the browser could mistake them for markup. If we want the browser to actually display these characters we must insert character entities in the HTML...
06-24-2009 10:22 AM
by pradeep Go to last post
4 1,945
 
Sanskruti
Arrays are one way of keeping a program more organized. They allow you to do some things that are difficult without them. Arrays are usually a group of the same variable type that use an index number to distinguish them from each other. Suppose you wanted to write out 5 names, and use variables for...
06-20-2009 06:23 PM
by gkumar Go to last post
3 7,579
Cool
pradeep
Sometimes we need a sorted UL (un-ordered list) in a static page, like a blog, we can use JavaScript to the sort the list. I faced a similar problem with my blog, so I implement a simple bubble sort on the list, the list will be sorted if the browser supports JavaScript, else it will still...
06-19-2009 03:58 PM
by gkumar Go to last post
3 22,428
 
pradeep
Well all would have at some point of time needed to make a timer in JavaScript. I have made a timer in Javascript. The script shows the timer in the status bar,you can modify it to display the timer anywhere you want. Check out the code below: var mins,secs,TimerRunning,TimerID; ...
06-18-2009 04:06 PM
by gkumar Go to last post
4 47,439
 
Sanskruti
Creating an HTML document is easy. To begin coding HTML you need a simple-text editor. Notepad is the most basic of simple-text editors and you will probably code a fair amount of HTML with it. HTML has not been around for many years. November 1990 marks the day of the first web page and back then...
06-18-2009 03:44 PM
by gkumar Go to last post
7 5,694
Talking
pradeep
There are hundreds of DHTML trees available online, most of them and written from scratch, some easy to understand and implement, while others are real pain to customize. Some of them need a JavaScript array to be populated or read an XML file to generate the tree. I've tried to develop one...
06-17-2009 04:26 PM
by gkumar Go to last post
9 13,320
 
Thread Rating: 1 votes, 5.00 average. Rexy93
Basics of HTML G’day mates during this tutorial I will teach you the basics of HTML. Frequently Asked Questions What does HTML actually stand for? HTML stands for Hyper Text Markup Language. Where can I learn HTML?
06-16-2009 04:00 PM
by gkumar Go to last post
12 4,671
Post New Thread  Submit New Article  Copy HTML to Clipboard  Copy BBCode to Clipboard  | More

Display Options Currently Active Users
Showing articles 1 to 20 of 49 6 (0 members & 6 guests)
 
Forum Tools Search this Forum
Search this Forum :

Advanced Search
Bookmarks

New comments New comments More than 15 replies or 150 views Hot articles with new comments
No new comments No new comments More than 15 replies or 150 views Hot article with no new comments
Closed Thread Article is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
 

All times are GMT +5.5. The time now is 05:27 AM.