Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #10K
Ranked #3K
~3K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

15 Posted Topics

Member Avatar for sumit_indian

try this link [url]http://www.gamarod.com.ar/en/javascript/example-javascript.asp?code=358[/url] it may help you

Member Avatar for sahayata4u
0
239
Member Avatar for knight fyre

try this [url]https://addons.mozilla.org/en-US/firefox/addon/216?id=216[/url] this may be useful.

Member Avatar for helioptra
0
281
Member Avatar for Begjinner

<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.

Member Avatar for wrivera
0
187
Member Avatar for veledrom

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]

Member Avatar for veledrom
0
86
Member Avatar for nawabsheriff

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]

Member Avatar for aravelli
0
95
Member Avatar for boyetp

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

Member Avatar for kashinathn
0
463
Member Avatar for MDGM

<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 …

Member Avatar for aravelli
0
122
Member Avatar for kavithakesav
Member Avatar for aravelli
0
71
Member Avatar for vijukumar

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.

Member Avatar for knight fyre
0
127
Member Avatar for jhatter

[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; } …

Member Avatar for aravelli
0
82
Member Avatar for brr

take a look at [url]http://www.dhtmlgoodies.com/scripts/ajax-tooltip/ajax-tooltip.html[/url]

Member Avatar for aravelli
0
150
Member Avatar for GR Web FX

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 …

Member Avatar for aravelli
0
169
Member Avatar for brr

[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 …

Member Avatar for MattEvans
0
280
Member Avatar for srinukatkam

<!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; } …

Member Avatar for aravelli
0
219
Member Avatar for rybo

<!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 = ""; } …

Member Avatar for aravelli
0
85

The End.