Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 2
1
2
>
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
Using varables
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
weird! ns6 puts my divs in negative space, but ie6 and mozilla 1 render fine ?!?
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
I'm not using a Javascript Object correctly
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
IE vs. NS regarding getElementsByName()
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
null value = correct answer in checkbox javascript quiz ?
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
dynamic title for frameset page
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
IE vs. NS regarding getElementsByName()
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
I'm not using a Javascript Object correctly
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
null value = correct answer in checkbox javascript quiz ?
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
how to have null value if another field is less than a certain number
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
Tags with same ID
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
"permission denied" reading window props
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
debugging - which 'line' is it?
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
Extending Element to Scroll Height
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
Extending Element to Scroll Height
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
Form Focus
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
IE 6.0 Focus Problem
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
drop down box help
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
:: help with strange netscape bug ::
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
Internet explorer not allowing me to add options to a select box in a parent window
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
Can somebody explain this ?
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
Can somebody explain this ?
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
document.formulier.submit() and NS
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
Moving an Element Between Top and Bottom Absolute
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
looping through the properties of objects
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
Page 1 of 2
1
2
>
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
03:55 AM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.