Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 12 of 12
Search took 0.09 seconds.
Search: Posts Made By: gumape
Forum: JavaScript programming 08-18-2010, 06:37 PM
Replies: 5
Views: 2,270
Posted By gumape
Hi, If you want to display the value of the...

Hi,

If you want to display the value of the selected option:

<head>
<script type="text/javascript">
function OnSelectionChanged (listBox){
var textInput =...
Forum: JavaScript programming 08-18-2010, 01:10 AM
Replies: 9
Views: 2,199
Posted By gumape
The document.write method writes a string into...

The document.write method writes a string into the document stream, the innerHTML property sets or retrieves the HTML content of an element.
Since the displayMessage method is called 24 times from...
Forum: JavaScript programming 08-15-2010, 07:15 PM
Replies: 1
Views: 1,058
Posted By gumape
function change2(picName,imgName) { switch...

function change2(picName,imgName)
{
switch (document[picName].src) {
case "images/leaf_shapes/leaf_auriculate.gif":
document[picName].src =...
Forum: JavaScript programming 08-14-2010, 12:16 AM
Replies: 4
Views: 1,755
Posted By gumape
<input value="Initial value"...

<input value="Initial value" onfocus="this.value=''" />

Related links:
onfocus event (http://help.dottoro.com/ljlmvqok.php),
onblur event (http://help.dottoro.com/ljjhfrjd.php).
Forum: JavaScript programming 08-13-2010, 10:41 PM
Replies: 4
Views: 2,574
Posted By gumape
Hi, the problem is that the innerHTML...

Hi,

the problem is that the innerHTML attribute of a select element cannot be set in IE. It does not cause an error, but it does not work.

The following example does not work in IE, but it...
Forum: JavaScript programming 08-13-2010, 03:24 PM
Replies: 4
Views: 1,190
Posted By gumape
If you want to make separate site versions based...

If you want to make separate site versions based on the detected resolution in JavaScript, then you need to resize, move elements after the page has been loaded (onload). Sometimes it's not easy ......
Forum: JavaScript programming 08-13-2010, 01:04 PM
Replies: 2
Views: 6,282
Posted By gumape
Hi, If I understand well, you want to update...

Hi,

If I understand well, you want to update the contents of each cell in the table.
The following example replaces the contents of each cell in the first row when the user clicks on the anchor...
Forum: JavaScript programming 08-12-2010, 11:36 PM
Replies: 4
Views: 4,101
Posted By gumape
The 'table-row' value is supported in Internet...

The 'table-row' value is supported in Internet Explorer from version 8.
Before version 8, the default value of the display style property is 'block' for tr elements.

A possible solution:

if...
Forum: JavaScript programming 08-10-2010, 07:43 PM
Replies: 2
Views: 2,263
Posted By gumape
Hi Ceyhun, I think the following example...

Hi Ceyhun,

I think the following example will help you:

<head>
<script language="JavaScript">

function OnFrameLoad () {
var frame = document.getElementById("myFrame");
var...
Forum: JavaScript programming 09-10-2009, 05:37 PM
Replies: 5
Views: 520
Posted By gumape
At the time when the countredirect method is...

At the time when the countredirect method is called, the document structure does not exist.
Invoke the countredirect method when the onload event is fired.
For detailed information, visit this...
Forum: JavaScript programming 09-02-2009, 11:25 PM
Replies: 3
Views: 43,594
Posted By gumape
Code: <script> function CloneAndSplit ()...

Code:

<script>
function CloneAndSplit () {
var tableToClone = document.getElementById ("tableToClone");

var firstTable = tableToClone.cloneNode (true);
RemoveRows (firstTable, 3, 4);...
Forum: JavaScript programming 09-02-2009, 09:17 PM
Replies: 4
Views: 594
Posted By gumape
I think the following code helps you. You can...

I think the following code helps you. You can place the ShowContent method in an external js file.

<head>
<style>
#contentContainer div {
background-color: red;
display:none;...
Showing results 1 to 12 of 12

 
Forum Jump

All times are GMT +1. The time now is 07:34 PM.