Click here to Skip to main content
16,012,468 members
Home / Discussions / Web Development
   

Web Development

 
Questionweb sphere directory structure Pin
RajeshGonugunta16-Jan-10 3:09
RajeshGonugunta16-Jan-10 3:09 
QuestionCode Project exand collapse code example Pin
MAHorn15-Jan-10 10:47
MAHorn15-Jan-10 10:47 
AnswerRe: Code Project exand collapse code example Pin
dan!sh 16-Jan-10 21:36
professional dan!sh 16-Jan-10 21:36 
QuestionAJAX problem with ie calling aspx pages (works in other browsers) Pin
spaced413013-Jan-10 9:58
spaced413013-Jan-10 9:58 
AnswerRe: AJAX problem with ie calling aspx pages (works in other browsers) Pin
daveyerwin13-Jan-10 11:16
daveyerwin13-Jan-10 11:16 
GeneralRe: AJAX problem with ie calling aspx pages (works in other browsers) Pin
spaced413013-Jan-10 11:31
spaced413013-Jan-10 11:31 
GeneralRe: AJAX problem with ie calling aspx pages (works in other browsers) Pin
daveyerwin14-Jan-10 1:03
daveyerwin14-Jan-10 1:03 
GeneralRe: AJAX problem with ie calling aspx pages (works in other browsers) Pin
spaced413014-Jan-10 2:42
spaced413014-Jan-10 2:42 
I tried it with a very simple .aspx page with no content in it and it still does not work. After searching around for a while it seems sometimes using the 'innerHTML' method causes some problems with IE. I found a solution to this by using 'appendChild' instead but it is not as clean as the innerHTML method as I have to clear the divs content first. If anyone knows of a better way or how I could make this better then please let me know.

heres the modified code:-

function SearchReactions() {<br />
  if (http.readyState == 4) {<br />
      var div = document.getElementById('reactionSearch');<br />
<br />
      var newdiv = document.createElement("div");<br />
      newdiv.innerHTML = http.responseText;<br />
      <br />
      div.innerHTML = '';<br />
<br />
      div.appendChild(newdiv);<br />
      <br />
     // div.innerHTML =  http.responseText;<br />
      <br />
 <br />
      isWorking = false;<br />
  }<br />
}

GeneralRe: AJAX problem with ie calling aspx pages (works in other browsers) Pin
daveyerwin14-Jan-10 3:18
daveyerwin14-Jan-10 3:18 
QuestionContent Management System - CMoSi [modified] Pin
Jon O - CMoSi13-Jan-10 6:54
Jon O - CMoSi13-Jan-10 6:54 
AnswerRe: Content Management System - CMoSi Pin
Eddy Vluggen13-Jan-10 7:48
professionalEddy Vluggen13-Jan-10 7:48 
GeneralRe: Content Management System - CMoSi Pin
Jon O - CMoSi13-Jan-10 8:00
Jon O - CMoSi13-Jan-10 8:00 
AnswerRe: Content Management System - CMoSi Pin
Richard MacCutchan13-Jan-10 9:03
mveRichard MacCutchan13-Jan-10 9:03 
GeneralRe: Content Management System - CMoSi Pin
Jon O - CMoSi13-Jan-10 9:53
Jon O - CMoSi13-Jan-10 9:53 
GeneralRe: Content Management System - CMoSi Pin
Richard MacCutchan14-Jan-10 4:54
mveRichard MacCutchan14-Jan-10 4:54 
QuestionJavascript Textbox Pin
kaban00713-Jan-10 4:30
kaban00713-Jan-10 4:30 
AnswerRe: Javascript Textbox Pin
Ashfield13-Jan-10 5:17
Ashfield13-Jan-10 5:17 
GeneralRe: Javascript Textbox Pin
kaban00713-Jan-10 5:20
kaban00713-Jan-10 5:20 
GeneralRe: Javascript Textbox Pin
Ashfield13-Jan-10 8:35
Ashfield13-Jan-10 8:35 
GeneralRe: Javascript Textbox Pin
kaban00713-Jan-10 6:09
kaban00713-Jan-10 6:09 
QuestionI need an ebay program Pin
totolcm13-Jan-10 2:23
totolcm13-Jan-10 2:23 
AnswerRe: I need an ebay program Pin
Ashfield13-Jan-10 5:18
Ashfield13-Jan-10 5:18 
AnswerRe: I need an ebay program Pin
JHizzle13-Jan-10 22:59
JHizzle13-Jan-10 22:59 
AnswerRe: I need an ebay program Pin
DJ Matthews14-Jan-10 2:24
DJ Matthews14-Jan-10 2:24 
GeneralRe: I need an ebay program Pin
totolcm19-Jan-10 1:33
totolcm19-Jan-10 1:33 

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.