No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
15 Posted Topics
try this link [url]http://www.gamarod.com.ar/en/javascript/example-javascript.asp?code=358[/url] it may help you
try this [url]https://addons.mozilla.org/en-US/firefox/addon/216?id=216[/url] this may be useful.
<style content="text/css"> #contentbox a{ font-weight: bold; color: #c8a468; cursor: pointer; } </style> <script content="text/javascript"> function text_over(){ document.getElementById('contentbox a').style.color= "#d05048"; } function text_out(){ document.getElementById('contentbox a').style.color= "#c8a468"; } </script> </HEAD> <BODY> <div id="contentbox"> <a href="......" id="contentbox a" onMouseover="text_over()" onMouseout="text_out()">infinite</a> </div> </BODY> i think this may help you.
try this function ..... [code=JavaScript]function changeBgImage(whichCell) { if (whichCell=="small_1") { document.getElementById('large').style.background='url(1l.gif)'; } else if (whichCell=="small_2") { document.getElementById('large').style.background='url(1l.gif)'; } }[/code]
change the function like this ... it will work [code=JavaScript]function validate_form(thisform) { with (thisform) { if (validate_required(email,"Email must be filled out!")==false) { email.focus(); return false; } else if (validate_required(city,"city fill it")==false) { city.focus(); return false; } } }[/code]
don't use height:100% <td style="width:100%;[COLOR="Red"]height:100%[/COLOR]"> row 2 col 1</td> use height:100px <td style="width:100%;[COLOR="Green"]height:100px"[/COLOR]> row 2 col 1</td> and find the difference
<div style="width:300px;height:250px;overflow:auto;"> content goes here content goes here content goes here content goes here content goes here content goes here content goes here content goes here content goes here content goes here content goes here content goes here content goes here content goes here content goes here content goes here …
<a href="youraudio.mp3"><img border="0" src="yourimage.jpg" class="yourcss"/></a>
try this link [url]http://www.dev-archive.net/articles/table-in-css.html[/url] i have used the code given by this site and is working fine. i hope this will work for you.
[code=html]<script language="JavaScript"> function MM_swapImgRestore() { var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc; } function MM_swapImage() { var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3) if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];} } function MM_findObj(n, d) { var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n]; for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); if(!x && d.getElementById) x=d.getElementById(n); return x; } …
take a look at [url]http://www.dhtmlgoodies.com/scripts/ajax-tooltip/ajax-tooltip.html[/url]
create an HTML page as your choice. Open it in Internet Explorer/your browswer. Click Edit > Select All, then Copy. Paste it into a blank email in Outlook. Please note that most email clients strip coding that contains links to style sheets and some inline CSS. i think this works …
[QUOTE=brr;545776]In the below 3 programs In getcustomer.jsp iam getting details from database according to the selected item in listbox in customer.html now i want to put those result values in second listbox in customer.html how is it possible tell me if possible provide related code to the below example customer.html …
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> New Document </TITLE> <META NAME="Generator" CONTENT=""> <META NAME="Author" CONTENT=""> <META NAME="Keywords" CONTENT=""> <META NAME="Description" CONTENT=""> <script type="text/javascript"> function checkAll(theElement) { var theForm = theElement.form, z = 0; for(z=0; z<theForm.length;z++){ if(theForm[z].type == 'checkbox' && theForm[z].name != 'checkall'){ theForm[z].checked = theElement.checked; } …
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> New Document </TITLE> <META NAME="Generator" CONTENT=""> <META NAME="Author" CONTENT=""> <META NAME="Keywords" CONTENT=""> <META NAME="Description" CONTENT=""> <script type="text/javascript"> function ValidateEmail(){ document.getElementById('Email Address').innerText = ""; } function ValidateMessage(){ document.getElementById('Message').innerText = ""; } function Validate(){ document.getElementById('Email Address').innerText = ""; document.getElementById('Message').innerText = ""; } …
The End.
aravelli