You are currently browsing the category archive for the 'Development Tips' category.
Submit Site-map to MSN & Yahoo!
Did you know you can now submit your websites site-map to both MSN Live along with Yahoo? Submitting a valid site-map allows the search engines to easily find and index every page within your website. If your site isn’t dynamic it will be easy to product your site-map with just able any free site-map generators you find when searching the web. If your site is dynamic and contains anymore then 500 pages you will need a special generator that can help.
GSite Crawler: http://gsitecrawler.com/en/download/
Or try AuditMyPC: http://www.auditmypc.com/free-sitemap-generator.asp
Once you generate a site-map for your site visit MSN and Yahoo’s developers section for complete instructions on adding your site-map.
MSN Developers: http://webmaster.live.com/
Yahoo! Site Explorer: http://siteexplorer.search.yahoo.com/
In todays market we all need to be sure our websites are up and running properly, but what if you have multiple websites? Try this service.. its totally free!
Montastic
Website monitoring made cool:
Very cool article explaining how to click a link and get a checkbox checked at the same time.. Very handy at times.
——————————————–
Text fields and textareas are just two types of form elements. Others that we’ll look at in this lesson are checkboxes, radio buttons, and selects. Let’s discuss checkboxes first.
Checkboxes have one main property of interest: checked.
Ever need to display rollover of multiple areas for a single image? Check out this article i found!
Imagemaps
Let’s say we want to have rollovers activated for the shapes in this image. Since this is one image, not three, we need to attach an imagemap. Mouse over the image below, and you can see it in action. As you can see from the HTML, the picture is in file shapes0.png.

<img src="rollover/shapes0.png" name="shapes" usemap="#shapemap"
width="283" height="103" alt="square, circle, and triangle"
border="0" />
Important: It is not possible to replace a part of an image. We have to replace the whole image, so we will need the following image files (named shapes1.png, shapes2.png, and shapes3.png):

The imagemap will look like a normal imagemap, except that we will add onmouseover and onmouseout attributes to invoke JavaScript.
<map name="shapemap">
<area shape="rect" coords="20,17,86,88"
href="#" onmouseover="highlight(1);" onmouseout="highlight(0);" />
<area shape="circle" coords="134,53,30"
href="#" onmouseover="highlight(2);" onmouseout="highlight(0);" />
<area shape="polygon" coords="227,10,180,88,280,88,227,10"
href="#" onmouseover="highlight(3);" onmouseout="highlight(0);" />
</map> http://catcode.com/cit041j/js_images2.html




