Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 48
Search took 0.08 seconds.
Search: Posts Made By: TrueLies
Forum: JavaScript programming 08-17-2002, 05:33 AM
Replies: 7
Views: 1,125
Posted By TrueLies
I'd suggest 3 things: 1] do not use...

I'd suggest 3 things:

1] do not use <button>: use <input type="button" value="HALLO"> , that's the standard (without the hallo...)

2] You cannot pass a name that way: the best way would be to...
Forum: JavaScript programming 07-06-2002, 10:34 AM
Replies: 7
Views: 1,415
Posted By TrueLies
ciao rabid it's is not clear what you can't...

ciao rabid

it's is not clear what you can't fix. I cannot understand what you mean by:
"making an object of a div that contains all content within the main body"

A div is a "layer" and it's...
Forum: JavaScript programming 07-06-2002, 10:24 AM
Replies: 11
Views: 1,423
Posted By TrueLies
Adios hey how comes you felt called in by *me*? I...

Adios hey how comes you felt called in by *me*? I mean, what's your problem that you take the initiative to quote me directly for matters of no importance?

I was replying to whammy *obviously*. I...
Forum: JavaScript programming 07-05-2002, 09:36 PM
Replies: 8
Views: 1,732
Posted By TrueLies
Hi like mordred said, it is that way:...

Hi

like mordred said, it is that way: Microsoft accepts to scan names by getElementsByName only if the tag was since javaScript inceptions, so to say, a tag that allowed for a name property,...
Forum: JavaScript programming 07-05-2002, 09:26 PM
Replies: 3
Views: 2,144
Posted By TrueLies
I noticed that, at least apparently, he might...

I noticed that, at least apparently, he might have trailing white spaces around:
correctAnswers = new Array('1','1','1','null ','null ', ...

null or
'null' or
'null ' ?

So maybe if that...
Forum: JavaScript programming 07-05-2002, 09:18 PM
Replies: 4
Views: 1,214
Posted By TrueLies
after the body tag <script> ...

after the body tag
<script>
top.document.title=self.document.title;
</script>

doesn't work on NS4 (four) though.

ciao
Forum: JavaScript programming 07-05-2002, 01:27 AM
Replies: 8
Views: 1,732
Posted By TrueLies
good question, easy answer: apparently, doesn't...

good question, easy answer: apparently, doesn't work (at least with that syntax) on IE.

Anyway remove the whole expression:
<script>
Item1.style.display = "none";
</script>

for that's...
Forum: JavaScript programming 07-05-2002, 12:50 AM
Replies: 11
Views: 1,423
Posted By TrueLies
Hi uhm, this loop: for ( var i=0; i>=...

Hi

uhm, this loop:

for ( var i=0; i>= (x.length-1); i++) {
}

should never start... you shouldn't even get the error.

i=0
Forum: JavaScript programming 07-05-2002, 12:37 AM
Replies: 3
Views: 2,144
Posted By TrueLies
ciao couldn't you elaborate a bit more or...

ciao

couldn't you elaborate a bit more or post some snippets of code? It is not clear which the problem might be (nor what the array is for): with a few more infos we can be of some help probably....
Forum: JavaScript programming 07-05-2002, 12:28 AM
Replies: 1
Views: 1,209
Posted By TrueLies
Hi well it also depends on how many...

Hi

well it also depends on how many calculations you have to do.
If you're concerned with only one field, you may just return the function that makes the calculcatiions earlier:

function...
Forum: JavaScript programming 07-05-2002, 12:24 AM
Replies: 5
Views: 1,331
Posted By TrueLies
On IE 6 (and therefore I assume also on IE5):...

On IE 6 (and therefore I assume also on IE5): typeofs:

window.document.getElementsByName [typeof is-->object]
window.document.getElementsByTagName [typeof is-->object]

So it should work.
...
Forum: JavaScript programming 07-01-2002, 02:36 AM
Replies: 6
Views: 1,896
Posted By TrueLies
I stumbled into your very same problems with .......

I stumbled into your very same problems with .... Netscape 7 (yeah, seven! the pre release: we have NN4.79, arguably leading to NN5, then NN6, NN6.2.3 and NN 7.0 No, comments not necessary LOL): it...
Forum: JavaScript programming 07-01-2002, 02:33 AM
Replies: 3
Views: 1,402
Posted By TrueLies
post a few lines of the code around the pointed...

post a few lines of the code around the pointed 66th line. If it tells you at that line there is an error, odds are there is indeed, maybe even a silly one that one may easily overlook you know!
...
Forum: JavaScript programming 07-01-2002, 02:28 AM
Replies: 5
Views: 1,446
Posted By TrueLies
Oh for the height of the whole document you mean;...

Oh for the height of the whole document you mean; well, yes document.body.scrollHeight gives the height of the whole document.
But you probably can't get an effective resizing of your table to that....
Forum: JavaScript programming 06-30-2002, 09:04 PM
Replies: 5
Views: 1,446
Posted By TrueLies
Hi could you elaborate a bit more? What do...

Hi

could you elaborate a bit more? What do you precisely mean by:
-----
100% of the scroll height and not the window height
-----

apparently, that is the same thing as I understood it: the...
Forum: JavaScript programming 06-28-2002, 05:46 AM
Replies: 1
Views: 1,624
Posted By TrueLies
well if your form has a name <form...

well if your form has a name
<form name="form1">

pick a field which has a name
<input type="text" name="field1">

and then
<body onLoad="document.form1.field1.focus()">

giving the focus to...
Forum: JavaScript programming 06-28-2002, 05:42 AM
Replies: 4
Views: 1,043
Posted By TrueLies
Hi the question is not clear, focus to what,...

Hi

the question is not clear, focus to what, and what do you mean by losing focus? Anyway if you swotch (click) from one frame to another, the whole window doesn't lose focus at all.
Also, maybe...
Forum: JavaScript programming 06-28-2002, 05:35 AM
Replies: 5
Views: 1,119
Posted By TrueLies
Hi say the set is like this or so: ...

Hi

say the set is like this or so:

<select>
<option value="http://www.foo.com"> site 1 </option>
<option value="http://www.foo2.com"> site 2 </option>
</select>

all you have to do is this:
Forum: JavaScript programming 06-28-2002, 05:24 AM
Replies: 4
Views: 1,174
Posted By TrueLies
Hi Aside from the fact i would not rely on...

Hi

Aside from the fact i would not rely on NN4 to handle properly layers which are dinamically written, anyway you can do 2 things to accomodate it:

1) layers must be soon after the body tag:...
Forum: JavaScript programming 06-25-2002, 07:44 PM
Replies: 6
Views: 2,815
Posted By TrueLies
I'm not aware of such issue; it is more likely...

I'm not aware of such issue; it is more likely there might be a mistake or so in the script, you'd post the code, especially considering it's not clear what you may mean by "parent window": a pop up...
Forum: JavaScript programming 06-25-2002, 05:20 AM
Replies: 1
Views: 1,395
Posted By TrueLies
What I'm finding after an input by John who was...

What I'm finding after an input by John who was attempting to loop object properties is really unexpected.
For it really seems that one thing is looping "objects", a completely different one is......
Forum: JavaScript programming 06-25-2002, 03:03 AM
Replies: 1
Views: 1,395
Posted By TrueLies
Can somebody explain this ?

Hi

I have the following code, if you just run it on a browser (IE6 to be precise) it is self explicative of the problem:

//---------------------------

var out=new Array(0)
var count=0;...
Forum: JavaScript programming 06-25-2002, 12:51 AM
Replies: 4
Views: 1,688
Posted By TrueLies
Hi oh yup, if you have 30 divs and the...

Hi

oh yup, if you have 30 divs and the browser is, as I understtod it NN4, definitely yes, the problem are the layers: one thing you always have to do with NS4 is, for instance, to define all your...
Forum: JavaScript programming 06-25-2002, 12:44 AM
Replies: 9
Views: 2,758
Posted By TrueLies
Hi I wasn't aware a "bottom" property would...

Hi

I wasn't aware a "bottom" property would exist in positioning an aboslute positioned element: if it exists, it must be a propetary implementation of some browser, but I am not aware of any W3C...
Forum: JavaScript programming 06-24-2002, 10:48 PM
Replies: 11
Views: 3,169
Posted By TrueLies
Another one: "plugins" is resulting as a...

Another one:

"plugins" is resulting as a property Object data type of the window Object:

so, also "location" is such a Object property of the window Object, therefore:

for(i in...
Showing results 1 to 25 of 48

 
Forum Jump

All times are GMT +1. The time now is 03:55 AM.