Click here to Skip to main content
16,004,944 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Load an image on request Pin
Shog918-May-06 10:15
sitebuilderShog918-May-06 10:15 
GeneralRe: Load an image on request Pin
chaddolan19-May-06 2:55
chaddolan19-May-06 2:55 
QuestionJavascript parent-child relationship! Pin
Krugger40417-May-06 21:39
Krugger40417-May-06 21:39 
QuestionSuitable Div Layout Pin
Brendan Vogt17-May-06 20:54
Brendan Vogt17-May-06 20:54 
QuestionDivs Not Working Pin
Brendan Vogt17-May-06 20:36
Brendan Vogt17-May-06 20:36 
AnswerRe: Divs Not Working Pin
Guffa17-May-06 22:30
Guffa17-May-06 22:30 
QuestionRe: Divs Not Working Pin
Brendan Vogt17-May-06 23:23
Brendan Vogt17-May-06 23:23 
Questiontoggling designMode on iFrame in IE Pin
SimonRigby17-May-06 6:48
SimonRigby17-May-06 6:48 
Hi folks,

I have this function. The nestcape version works fine but in IE it will toggle to on but not back again. Any ideas?

element is the name of the iframe in my testing (id and name attribute both set to 'edit')

function ToggleEditMode(element) {
if (document.all) {
if (frames[element].document.designMode=="on") {
frames[element].document.designMode="off";
} else {
frames[element].document.designMode="on";
}
} else {
if (document.getElementById(element).contentDocument.designMode=="on") {
document.getElementById(element).contentDocument.designMode="off";
} else {
document.getElementById(element).contentDocument.designMode="on";
}
}
return;
}

Thanks
Questionabout the IE version of OSs Pin
vchauhan_me17-May-06 4:17
vchauhan_me17-May-06 4:17 
AnswerRe: about the IE version of OSs Pin
CWIZO17-May-06 9:13
CWIZO17-May-06 9:13 
GeneralRe: about the IE version of OSs Pin
vchauhan_me17-May-06 21:57
vchauhan_me17-May-06 21:57 
GeneralRe: about the IE version of OSs Pin
CWIZO17-May-06 22:06
CWIZO17-May-06 22:06 
GeneralRe: about the IE version of OSs Pin
vchauhan_me18-May-06 10:20
vchauhan_me18-May-06 10:20 
GeneralRe: about the IE version of OSs Pin
KrIstOfK18-May-06 0:39
KrIstOfK18-May-06 0:39 
Questionhow can i use CVS with windows repository Pin
DineshSharma17-May-06 1:38
DineshSharma17-May-06 1:38 
QuestionRemote Command Execution Pin
cberam17-May-06 0:46
cberam17-May-06 0:46 
AnswerRe: Remote Command Execution Pin
Paddy Boyd17-May-06 3:51
Paddy Boyd17-May-06 3:51 
QuestionCalendar popup Pain!!!!!!!! Pin
ryanchopps17-May-06 0:08
ryanchopps17-May-06 0:08 
Questionhow to run PHPMyadmin Pin
roitha16-May-06 17:21
roitha16-May-06 17:21 
AnswerRe: how to run PHPMyadmin Pin
CWIZO17-May-06 22:08
CWIZO17-May-06 22:08 
AnswerRe: how to run PHPMyadmin Pin
hiral_shah9-Mar-07 18:47
hiral_shah9-Mar-07 18:47 
QuestionRe Asp...? Pin
NeverHeardOfMe16-May-06 9:37
NeverHeardOfMe16-May-06 9:37 
GeneralRe: Re Asp...? Pin
George L. Jackson16-May-06 15:05
George L. Jackson16-May-06 15:05 
GeneralRe: Re Asp...? Pin
Steve Echols16-May-06 19:07
Steve Echols16-May-06 19:07 
GeneralRe: Re Asp...? Pin
George L. Jackson17-May-06 11:03
George L. Jackson17-May-06 11:03 

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.