Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 24 of 24
Search took 0.11 seconds.
Search: Posts Made By: botsko.net
Forum: JavaScript programming 12-22-2005, 05:15 PM
Replies: 5
Views: 1,076
Posted By botsko.net
That's calling a form with the name, not an...

That's calling a form with the name, not an element. I tried document.forms[0].["fieldname[]"][0].anything, but that did not work.

document.forms[0].fieldname[][0].anything - doesn't work...
Forum: JavaScript programming 12-22-2005, 12:18 AM
Replies: 5
Views: 1,076
Posted By botsko.net
javascript reference to form elements with [] in name

Javascript throws an error when I try to reference a form field with [] in the name,

like formname.somefield[].options[]

Some forms have form name="somefield[]" but when I try to reference it...
Forum: JavaScript programming 11-23-2005, 06:05 AM
Replies: 3
Views: 734
Posted By botsko.net
Nevermind... I had a multiple tag in the select...

Nevermind... I had a multiple tag in the select when it was only a size=4 single select.
Forum: JavaScript programming 11-23-2005, 06:03 AM
Replies: 3
Views: 734
Posted By botsko.net
IE loosing options value when added dynamically

I have this simple code:


function appendToSelect(select, value, content) {
var opt;
opt = document.createElement(\"option\");
...
Forum: JavaScript programming 11-22-2005, 05:47 PM
Replies: 1
Views: 713
Posted By botsko.net
checking if page loaded through bookmarklet

I have a bookmarklet in Firefox that sets the location.href and then has code to fill data into a form. The problem is that the form fill code is exectuted too fast, and the form doesn't exist yet as...
Forum: Flash & ActionScript 09-12-2004, 04:27 AM
Replies: 0
Views: 2,566
Posted By botsko.net
li html commands in Flash not working

According to the help, if you have the LI tag in a text field it will show as a bullet when using flash player 7. No matter what I try (formaitting as dynamic and static text, trying to preserve rick...
Forum: Flash & ActionScript 09-09-2004, 09:57 PM
Replies: 10
Views: 3,200
Posted By botsko.net
the flash file is locked so I cannot open it to...

the flash file is locked so I cannot open it to view it. I am pretty sure that the flash file looks for the relative directory of ./txt/ which works fine when the file is stored locally. Yet when I...
Forum: Flash & ActionScript 09-09-2004, 06:13 AM
Replies: 10
Views: 3,200
Posted By botsko.net
flash text-load works locally, not on server?

I downloaded a Flash template that loads content from text files in /txt/ folder. It works fine when I am viewing the webpage on my local machine, but not when over a network or when uploaded to my...
Forum: JavaScript programming 08-21-2004, 04:52 AM
Replies: 19
Views: 2,482
Posted By botsko.net
One more question - when this foirm is submitted,...

One more question - when this foirm is submitted, what field names can I use to access the data typed into the fields?
Forum: JavaScript programming 08-20-2004, 11:48 PM
Replies: 19
Views: 2,482
Posted By botsko.net
YAY! That works just fine in both browsers! I...

YAY! That works just fine in both browsers! I appreciate your work!
Forum: JavaScript programming 08-20-2004, 09:57 PM
Replies: 19
Views: 2,482
Posted By botsko.net
I tested this on a completely seperate computer...

I tested this on a completely seperate computer (my home machine with XP and IE 6.0.26. The version of IE at work is 6.0.28.

I type a number into the field: nothing happens.
I hit enter: the...
Forum: JavaScript programming 08-20-2004, 06:05 PM
Replies: 19
Views: 2,482
Posted By botsko.net
I am at work, so there may be some config problem...

I am at work, so there may be some config problem with IE. I will test this with my personal laptop at lunch.
Forum: JavaScript programming 08-20-2004, 05:25 PM
Replies: 19
Views: 2,482
Posted By botsko.net
here...

here...
Forum: JavaScript programming 08-20-2004, 04:41 PM
Replies: 19
Views: 2,482
Posted By botsko.net
No its in my source code - this PHPBB program...

No its in my source code - this PHPBB program must have red that incorrectly and removed it.
Forum: JavaScript programming 08-20-2004, 04:16 PM
Replies: 19
Views: 2,482
Posted By botsko.net
Just copy and pasted, adding in HTML headers. ...

Just copy and pasted, adding in HTML headers.



<html>
<head>
<title>Test</title>

<script type="text/javascript">
<!--//
Forum: JavaScript programming 08-20-2004, 04:07 PM
Replies: 19
Views: 2,482
Posted By botsko.net
I tried using the code at that forumns page, but...

I tried using the code at that forumns page, but that too will not work in IE 6. It works just fine when you enter a value and hit enter in Firefox .9.3! I need something that works in both - but...
Forum: JavaScript programming 08-18-2004, 02:13 PM
Replies: 19
Views: 2,482
Posted By botsko.net
Any idea why this works fine on Mozilla/Netscape...

Any idea why this works fine on Mozilla/Netscape but not IE? It moves everything on the page as if it inserts a new form field, but the field is not visible in IE.
Forum: JavaScript programming 08-12-2004, 05:51 PM
Replies: 19
Views: 2,482
Posted By botsko.net
drop-down box dynamically displays text box?

I have a drop down that has numbers, 1-4. I want the number value chosen to dynamically display the same number of text boxes.

For example - if the customer chooses 3 from the drop-down, I want...
Forum: HTML & CSS 05-08-2004, 12:06 AM
Replies: 2
Views: 724
Posted By botsko.net
How does the DIV affect the table rows?

How does the DIV affect the table rows?
Forum: HTML & CSS 05-07-2004, 11:32 PM
Replies: 2
Views: 724
Posted By botsko.net
table/cell borders in IE

I have a page that should have table borders, rules, frames, cellpadding, and cellspacing all set to 0 or none, and everything works in Mozilla, but not IE.

Look:
...
Forum: JavaScript programming 04-28-2004, 04:55 AM
Replies: 2
Views: 904
Posted By botsko.net
javascript tree open by default issue

I have a javascript tree menu that opens different folders. But, the folders close when the page is reloaded. I want to enable the script to keep the folder open until you click it again to close it....
Forum: JavaScript programming 01-18-2004, 04:00 AM
Replies: 1
Views: 1,038
Posted By botsko.net
Checkbox changiong value of text box

I have a script that when you check a checkbox, it fills in the text box next to it with a value. I have tried OnClick and OnChange but neither work... the Mozilla javascript debugger says AddImage1...
Forum: JavaScript programming 01-17-2004, 11:47 PM
Replies: 4
Views: 1,357
Posted By botsko.net
This only seems to support IE. It works, and I am...

This only seems to support IE. It works, and I am thankful to have a start.

1.) How can I change it to switch back when clicked a second time?

2.) Why doesn't it work in NetScape/Mozilla?
...
Forum: JavaScript programming 01-17-2004, 09:11 PM
Replies: 4
Views: 1,357
Posted By botsko.net
Change table based on check box?

I am not quite sure what to look for on the net - that's why I cannot quite find how to do this.

Basically I have an html table with one input checkbox. If the check box is checked, I need two...
Showing results 1 to 24 of 24

 
Forum Jump

All times are GMT +1. The time now is 09:59 PM.