<html>
<head>
<script language="JavaScript">
<!--
function hr(w, h) {
document.writeln("<hr align=left width=" + w +"height=" + h +">");
}
//-->
</script>
</head>
<body>
<h3>JavaScript Essentials <script>hr("75%","4")</script> </h3>
</body>
</html>
for colour use
<HTML>
<HEAD>
<TITLE>HR Object Properties</TITLE>
<SCRIPT LANGUAGE="JavaScript">
function setHRAttr(select) {
if (document.all && document.all.myHR) {
var choice = select.options[select.selectedIndex].value
if (choice) {
document.all.myHR.setAttribute(select.name, choice)
}
}
}
</SCRIPT>
</HEAD>
<BODY>
<H1>HR Object Properties</H1>
<BR>
<P>Here is the HR element you will be controlling:</P>
<HR ID="myHR">
<FORM>
Select an alignment:
<SELECT NAME="align" onChange="setHRAttr(this)">
<OPTION></OPTION>
<OPTION VALUE="left">Left</OPTION>
<OPTION VALUE="center">Center</OPTION>
<OPTION VALUE="right">Right</OPTION>
</SELECT>
<BR>
Select a rule color (IE only):
<SELECT NAME="color" onChange="setHRAttr(this)">
<OPTION></OPTION>
<OPTION VALUE="red">Red</OPTION>
<OPTION VALUE="green">Green</OPTION>
<OPTION VALUE="blue">Blue</OPTION>
<OPTION VALUE="#FA8072">Some Hex Triplet Value</OPTION>
</SELECT>
<BR>
Select a rule shading:
<SELECT NAME="noShade" onChange="setHRAttr(this)">
<OPTION></OPTION>
<OPTION VALUE=true>No Shading</OPTION>
<OPTION VALUE=false>Shading</OPTION>
</SELECT>
<BR>
Select a rule height:
<SELECT NAME="size" onChange="setHRAttr(this)">
<OPTION></OPTION>
<OPTION VALUE=2>2 (Default)</OPTION>
<OPTION VALUE=4>4 Pixels</OPTION>
<OPTION VALUE=10>10 Pixels</OPTION>
</SELECT>
<BR>
Select a rule width:
<SELECT NAME="width" onChange="setHRAttr(this)">
<OPTION></OPTION>
<OPTION VALUE="100%">100% (Default)</OPTION>
<OPTION VALUE="80%">80%</OPTION>
<OPTION VALUE=300>300 Pixels </OPTION>
</SELECT>
</BODY>
</HTML>
On 10/18/09, javapgr <[email protected]> wrote:
>
> write a javascript function named "abcdrawstripes" that
> will draw a number of colored stripes by generating an html table in
> which each row has a different colr.your function must accept three
> parameters.
>
> * width,width of each stripe
> *height-height of each stripe
> *color, an array in which each element is the name of the color each
> color name is a valid html color or css color property
>
> How to do this?
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Algorithm Geeks" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at http://groups.google.com/group/algogeeks
-~----------~----~----~----~------~----~------~--~---