Click here to Skip to main content
15,949,686 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: hotel reservation Pin
Ariel Kazeed27-Jun-08 2:38
Ariel Kazeed27-Jun-08 2:38 
AnswerRe: hotel reservation Pin
Christian Graus27-Jun-08 13:13
protectorChristian Graus27-Jun-08 13:13 
GeneralRe: hotel reservation Pin
Paul Conrad28-Jun-08 8:39
professionalPaul Conrad28-Jun-08 8:39 
AnswerRe: hotel reservation Pin
leckey27-Jun-08 16:17
leckey27-Jun-08 16:17 
GeneralRe: hotel reservation Pin
Paul Conrad28-Jun-08 8:40
professionalPaul Conrad28-Jun-08 8:40 
QuestionIIS madness Pin
AlterD26-Jun-08 4:42
AlterD26-Jun-08 4:42 
QuestionRe: IIS madness Pin
AlterD26-Jun-08 20:19
AlterD26-Jun-08 20:19 
QuestionLoading Xml using Javascript -Safari Browser Pin
Vijayitsb26-Jun-08 1:17
Vijayitsb26-Jun-08 1:17 
I am Loading Xml file using javascript. Its working fine in IE and Firefox but Its not working safari.
This is My code.

if( window.ActiveXObject && /Win/.test(navigator.userAgent) )
{
LoadXml = new ActiveXObject("Msxml.DOMDocument");
LoadXml.async = false;
LoadXml.onreadystatechange = function ()
{
if (LoadXml.readyState == 4) ManipulateXML(Id);
}
LoadXml.load("../../Common_Inc/link.xml");

}
else if( document.implementation && document.implementation.createDocument )
{

LoadXml = document.implementation.createDocument("","",null);
//LoadXml = new ActiveXObject("Microsoft.XMLHTTP");
LoadXml.async = false;
var loaded = LoadXml.load("../../Common_Inc/link.xml");

moz=1;
if (loaded)
{
ManipulateXML(Id);
}
//alert("Test13");
}

else
{
alert("Your browser can\'t handle this script");
return;
}
Im getting Error in safari Browser while loading the Xml file.
Do u know any Alternate methods which is working in all browser ?

Cheers..!
Vijay s



AnswerRe: Loading Xml using Javascript -Safari Browser Pin
Shog926-Jun-08 5:31
sitebuilderShog926-Jun-08 5:31 
QuestionWebbrowser Control Pin
rotsey25-Jun-08 21:50
rotsey25-Jun-08 21:50 
Questionjavascript codes Pin
ginji2025-Jun-08 21:27
ginji2025-Jun-08 21:27 
AnswerRe: javascript codes Pin
Christian Graus25-Jun-08 23:37
protectorChristian Graus25-Jun-08 23:37 
GeneralRe: javascript codes Pin
SomeGuyThatIsMe26-Jun-08 8:47
SomeGuyThatIsMe26-Jun-08 8:47 
Questioni want to work on webpart but i don't want to use aspnetdb database provided by sqlserver by default Pin
shames(Sam)25-Jun-08 20:18
shames(Sam)25-Jun-08 20:18 
AnswerRe: i want to work on webpart but i don't want to use aspnetdb database provided by sqlserver by default Pin
Christian Graus25-Jun-08 20:27
protectorChristian Graus25-Jun-08 20:27 
Questioniexplore.exe.config not working Pin
Member 450727925-Jun-08 13:33
professionalMember 450727925-Jun-08 13:33 
AnswerRe: iexplore.exe.config not working Pin
Christian Graus25-Jun-08 14:26
protectorChristian Graus25-Jun-08 14:26 
AnswerRe: iexplore.exe.config not working Pin
Christian Graus25-Jun-08 19:12
protectorChristian Graus25-Jun-08 19:12 
AnswerRe: iexplore.exe.config not working Pin
Paul Conrad28-Jun-08 8:41
professionalPaul Conrad28-Jun-08 8:41 
QuestionApplication Server Inclusion Pin
sankar.K24-Jun-08 23:32
sankar.K24-Jun-08 23:32 
QuestionRequest Tracker email Pin
Hemanth_k24-Jun-08 21:56
Hemanth_k24-Jun-08 21:56 
QuestionHow to open XL file in iframe with out open/save prompt Pin
Member 274558124-Jun-08 14:53
Member 274558124-Jun-08 14:53 
AnswerRe: How to open XL file in iframe with out open/save prompt Pin
Shog924-Jun-08 16:05
sitebuilderShog924-Jun-08 16:05 
QuestionWhat is the best open-source javascript calendar control? Pin
Chris Maunder24-Jun-08 4:06
cofounderChris Maunder24-Jun-08 4:06 
AnswerRe: What is the best open-source javascript calendar control? Pin
Shog924-Jun-08 6:51
sitebuilderShog924-Jun-08 6:51 

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.