Click here to Skip to main content
15,887,746 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Creating a proxy Pin
Pete O'Hanlon25-Apr-07 22:29
mvePete O'Hanlon25-Apr-07 22:29 
AnswerRe: Creating a proxy Pin
Bradml26-Apr-07 2:44
Bradml26-Apr-07 2:44 
GeneralRe: Creating a proxy Pin
Bulky Fellow26-Apr-07 23:31
Bulky Fellow26-Apr-07 23:31 
GeneralRe: Creating a proxy Pin
Bradml27-Apr-07 2:42
Bradml27-Apr-07 2:42 
Questionscreen scraping websites using cookies Pin
swissmiss8625-Apr-07 9:06
swissmiss8625-Apr-07 9:06 
AnswerRe: screen scraping websites using cookies Pin
Pete O'Hanlon25-Apr-07 9:12
mvePete O'Hanlon25-Apr-07 9:12 
GeneralRe: screen scraping websites using cookies Pin
oliverjenks27-Apr-07 2:04
oliverjenks27-Apr-07 2:04 
QuestionFirefox compatibilty question Pin
SeeCwriter25-Apr-07 6:17
SeeCwriter25-Apr-07 6:17 
I'm looking for insite into why IE works and Firefox doesn't
with my very simple test web page.

I have two frames. The onload event in Frame A calls a javascript
function in Frame B. That call works fine in both browsers. The
javascript function in Frame B is supposed to update a text box in
Frame B. This part fails when using Firefox. Which doesn't make
sense to me, because both the js function and the text box are in
the same html file and same frame.

The call from Frame A (which works on both browsers) is:
function myfunc() {
parent.frameB.testText();
}

In frame B, the called function is:
var i = 1;
function testText() {
i += 1;
parent.frameB.testform.textbox.value = i;
}

The error is "parent.frameB.testform has no properties"
Removing the "parent.frameB" prefix and just using
"testform.testbox.value" also works in IE but not in Firefox.
But the error message changes to "ReferenceError: testform
not defined."
I've also tried the following without sucess:
top.frameB.testform.textbox.value = i
document.parent.frameB.testform.textbox.value = i
document.top.frameB.testform.textbox.value = i

Any ideas on what I'm doing wrong?

AnswerRe: Firefox compatibilty question [modified] Pin
Shog925-Apr-07 6:47
sitebuilderShog925-Apr-07 6:47 
GeneralRe: Firefox compatibilty question Pin
SeeCwriter25-Apr-07 7:08
SeeCwriter25-Apr-07 7:08 
GeneralRe: Firefox compatibilty question Pin
Shog925-Apr-07 7:18
sitebuilderShog925-Apr-07 7:18 
GeneralRe: Firefox compatibilty question Pin
SeeCwriter25-Apr-07 7:29
SeeCwriter25-Apr-07 7:29 
AnswerRe: Firefox compatibilty question Pin
Guffa25-Apr-07 7:14
Guffa25-Apr-07 7:14 
GeneralRe: Firefox compatibilty question Pin
SeeCwriter25-Apr-07 7:37
SeeCwriter25-Apr-07 7:37 
GeneralRe: Firefox compatibilty question Pin
SeeCwriter25-Apr-07 7:49
SeeCwriter25-Apr-07 7:49 
AnswerRe: Firefox compatibilty question Pin
Guffa25-Apr-07 8:23
Guffa25-Apr-07 8:23 
Questionbulk mail Pin
jayvaishnav8225-Apr-07 2:19
jayvaishnav8225-Apr-07 2:19 
AnswerRe: bulk mail Pin
Bradml25-Apr-07 4:56
Bradml25-Apr-07 4:56 
GeneralRe: bulk mail Pin
Pete O'Hanlon25-Apr-07 9:20
mvePete O'Hanlon25-Apr-07 9:20 
GeneralRe: bulk mail Pin
jayvaishnav8225-Apr-07 19:41
jayvaishnav8225-Apr-07 19:41 
QuestionRFID Device through Web application Pin
Master toolbox25-Apr-07 0:11
Master toolbox25-Apr-07 0:11 
AnswerRe: RFID Device through Web application Pin
Bradml25-Apr-07 1:43
Bradml25-Apr-07 1:43 
QuestionReturn Object in Web services Pin
Master toolbox25-Apr-07 0:04
Master toolbox25-Apr-07 0:04 
AnswerRe: Return Object in Web services Pin
Pete O'Hanlon25-Apr-07 0:26
mvePete O'Hanlon25-Apr-07 0:26 
QuestionCalling webservice over https connection Pin
mohanrajh24-Apr-07 23:56
mohanrajh24-Apr-07 23:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.