jquery Programming Glossary: activexobject
What is the best practice for parsing remote content with jQuery? http://stackoverflow.com/questions/1034881/what-is-the-best-practice-for-parsing-remote-content-with-jquery creation from w3schools try Internet Explorer xmlDoc new ActiveXObject Microsoft.XMLDOM xmlDoc.async false xmlDoc.loadXML data ..
Cannot properly set the Accept HTTP header with jQuery http://stackoverflow.com/questions/1145588/cannot-properly-set-the-accept-http-header-with-jquery if typeof data string alert Data is string data xml new ActiveXObject Microsoft.XMLDOM xml.async false xml.loadXML data else xml..
Ajax - JSON doesnt get sent in PATCH only http://stackoverflow.com/questions/11461414/ajax-json-doesnt-get-sent-in-patch-only To fix this you may force jQuery to use old proprietary ActiveXObject xhr like .ajax url 'http 127.0.0.1 8001 api v1 pulse 7 ' data.. window.XMLHttpRequest .addEventListener null new window.ActiveXObject Microsoft.XMLHTTP .ajaxSettings.xhr share improve this answer..
Generate excel sheet from html tables using jquery http://stackoverflow.com/questions/15567086/generate-excel-sheet-from-html-tables-using-jquery on the button . I am using Mozilla browser . My code needs ActiveXObject enabled . DO i need to do something extra to get it done . I.. 'mytable' rowCount myTable.rows.length excel new ActiveXObject 'Excel.Application' Activates Excel excel.Workbooks.Add Opens..
How to include a jsp inside another jsp using javascript http://stackoverflow.com/questions/16162450/how-to-include-a-jsp-inside-another-jsp-using-javascript self.xmlHttpReq new XMLHttpRequest IE else if window.ActiveXObject self.xmlHttpReq new ActiveXObject Microsoft.XMLHTTP else alert.. IE else if window.ActiveXObject self.xmlHttpReq new ActiveXObject Microsoft.XMLHTTP else alert no ajax return self.xmlHttpReq.open..
unable to load xml from external file using jQuery http://stackoverflow.com/questions/19865938/unable-to-load-xml-from-external-file-using-jquery xhttp new XMLHttpRequest else xhttp new ActiveXObject Microsoft.XMLHTTP xhttp.open GET dname false xhttp.send return..
Chrome and Safari XSLT using JavaScript http://stackoverflow.com/questions/2042178/chrome-and-safari-xslt-using-javascript function xml xsl try code for IE if window.ActiveXObject ex xml.transformNode xsl return ex code for Mozilla Firefox.. file var xmlDoc null try Internet Explorer xmlDoc new ActiveXObject Microsoft.XMLDOM xmlDoc.async false xmlDoc.load file catch e..
jQuery won't parse xml with nodes called option http://stackoverflow.com/questions/2908899/jquery-wont-parse-xml-with-nodes-called-option doc parser.parseFromString text text xml else if window.ActiveXObject doc new ActiveXObject Microsoft.XMLDOM doc.async false doc.loadXML.. text text xml else if window.ActiveXObject doc new ActiveXObject Microsoft.XMLDOM doc.async false doc.loadXML text else throw..
Load jQuery in a js, then execute a script that depends on it http://stackoverflow.com/questions/3129451/load-jquery-in-a-js-then-execute-a-script-that-depends-on-it xmlhttp new XMLHttpRequest catch e Other IE xmlhttp new ActiveXObject Msxml2.XMLHTTP xmlhttp.open 'GET' url false x.send '' eval xmlhttp.responseText..
Parse content like XML, with jQuery http://stackoverflow.com/questions/3152062/parse-content-like-xml-with-jquery doc parser.parseFromString text text xml else if window.ActiveXObject doc new ActiveXObject Microsoft.XMLDOM doc.async false doc.loadXML.. text text xml else if window.ActiveXObject doc new ActiveXObject Microsoft.XMLDOM doc.async false doc.loadXML text else throw..
Generate XML document in-memory with JavaScript http://stackoverflow.com/questions/3191179/generate-xml-document-in-memory-with-javascript string application xml else Internet Explorer doc new ActiveXObject Microsoft.XMLDOM doc.async false doc.loadXML string return doc..
How to implement a chat room using Jquery/PHP? http://stackoverflow.com/questions/4174521/how-to-implement-a-chat-room-using-jquery-php MSIE 1 For IE browsers comet.connection new ActiveXObject htmlfile comet.connection.open comet.connection.write html comet.connection.write..
Local html file AJAX Call and jQuery Woes http://stackoverflow.com/questions/436670/local-html-file-ajax-call-and-jquery-woes function data var xml if typeof data string xml new ActiveXObject Microsoft.XMLDOM xml.async false xml.loadXML data else xml data..
Access denied to jQuery script on IE http://stackoverflow.com/questions/5087549/access-denied-to-jquery-script-on-ie doesn't provide responseXml so if you need it var dom new ActiveXObject Microsoft.XMLDOM dom.async false dom.loadXML xdr.responseText..
Cascade Dropdown List using jQuery/PHP http://stackoverflow.com/questions/7137357/cascade-dropdown-list-using-jquery-php false @cc_on @ @if @_jscript_version 5 try request new ActiveXObject Msxml2.XMLHTTP catch e try request new ActiveXObject Microsoft.XMLHTTP.. new ActiveXObject Msxml2.XMLHTTP catch e try request new ActiveXObject Microsoft.XMLHTTP catch e2 request false @end @ function fillSelect..
How to make an ajax call without jquery? http://stackoverflow.com/questions/8567114/how-to-make-an-ajax-call-without-jquery new XMLHttpRequest else code for IE6 IE5 xmlhttp new ActiveXObject Microsoft.XMLHTTP xmlhttp.onreadystatechange function if xmlhttp.readyState..
IE9 refuses to process XML response http://stackoverflow.com/questions/9746515/ie9-refuses-to-process-xml-response xhr.responseText text xml else Internet Explorer xml new ActiveXObject Microsoft.XMLDOM xml.async false xml.loadXML xhr.responseText.. xhr.responseText text xml else Internet Explorer xml new ActiveXObject Microsoft.XMLDOM xml.async false xml.loadXML xhr.responseText..
What is the best practice for parsing remote content with jQuery? http://stackoverflow.com/questions/1034881/what-is-the-best-practice-for-parsing-remote-content-with-jquery 'html' success function data cross platform xml object creation from w3schools try Internet Explorer xmlDoc new ActiveXObject Microsoft.XMLDOM xmlDoc.async false xmlDoc.loadXML data catch e try Firefox Mozilla Opera etc. parser new DOMParser..
Cannot properly set the Accept HTTP header with jQuery http://stackoverflow.com/questions/1145588/cannot-properly-set-the-accept-http-header-with-jquery xml username ' ' password ' ' success function data var xml if typeof data string alert Data is string data xml new ActiveXObject Microsoft.XMLDOM xml.async false xml.loadXML data else xml data alert Data is not string xml .text Returned data available..
Ajax - JSON doesnt get sent in PATCH only http://stackoverflow.com/questions/11461414/ajax-json-doesnt-get-sent-in-patch-only on PATCH new XMLHttpRequest .open 'PATCH' ' ' Illegal argument To fix this you may force jQuery to use old proprietary ActiveXObject xhr like .ajax url 'http 127.0.0.1 8001 api v1 pulse 7 ' data data type 'PATCH' contentType 'application json' xhr function..
Generate excel sheet from html tables using jquery http://stackoverflow.com/questions/15567086/generate-excel-sheet-from-html-tables-using-jquery tables to Excel But somehow nothing happens when i click on the button . I am using Mozilla browser . My code needs ActiveXObject enabled . DO i need to do something extra to get it done . I created this fiddle for testing . If this works i will try.. CreateExcelSheet var i j str myTable document.getElementById 'mytable' rowCount myTable.rows.length excel new ActiveXObject 'Excel.Application' Activates Excel excel.Workbooks.Add Opens a new Workbook excel.Application.Visible true Shows Excel..
How to include a jsp inside another jsp using javascript http://stackoverflow.com/questions/16162450/how-to-include-a-jsp-inside-another-jsp-using-javascript var self this Mozilla Safari opera etc if window.XMLHttpRequest self.xmlHttpReq new XMLHttpRequest IE else if window.ActiveXObject self.xmlHttpReq new ActiveXObject Microsoft.XMLHTTP else alert no ajax return self.xmlHttpReq.open 'POST' strURL true self.xmlHttpReq.setRequestHeader.. etc if window.XMLHttpRequest self.xmlHttpReq new XMLHttpRequest IE else if window.ActiveXObject self.xmlHttpReq new ActiveXObject Microsoft.XMLHTTP else alert no ajax return self.xmlHttpReq.open 'POST' strURL true self.xmlHttpReq.setRequestHeader 'Content..
unable to load xml from external file using jQuery http://stackoverflow.com/questions/19865938/unable-to-load-xml-from-external-file-using-jquery using pure js like below function loadXMLDoc dname if window.XMLHttpRequest xhttp new XMLHttpRequest else xhttp new ActiveXObject Microsoft.XMLHTTP xhttp.open GET dname false xhttp.send return xhttp.responseXML xmlDoc loadXMLDoc data.xml console.log..
Chrome and Safari XSLT using JavaScript http://stackoverflow.com/questions/2042178/chrome-and-safari-xslt-using-javascript I have the following code that applies a XSLT style Test.Xml.xslTransform function xml xsl try code for IE if window.ActiveXObject ex xml.transformNode xsl return ex code for Mozilla Firefox Opera etc. else if document.implementation document.implementation.createDocument.. script script type text javascript function loadXML file var xmlDoc null try Internet Explorer xmlDoc new ActiveXObject Microsoft.XMLDOM xmlDoc.async false xmlDoc.load file catch e try Firefox Mozilla Opera etc. xmlDoc document.implementation.createDocument..
jQuery won't parse xml with nodes called option http://stackoverflow.com/questions/2908899/jquery-wont-parse-xml-with-nodes-called-option text var doc if window.DOMParser var parser new DOMParser doc parser.parseFromString text text xml else if window.ActiveXObject doc new ActiveXObject Microsoft.XMLDOM doc.async false doc.loadXML text else throw new Error Cannot parse XML return doc.. var parser new DOMParser doc parser.parseFromString text text xml else if window.ActiveXObject doc new ActiveXObject Microsoft.XMLDOM doc.async false doc.loadXML text else throw new Error Cannot parse XML return doc Once the XML DOM is constructed..
Load jQuery in a js, then execute a script that depends on it http://stackoverflow.com/questions/3129451/load-jquery-in-a-js-then-execute-a-script-that-depends-on-it function load_script url var xmlhttp try Mozilla Safari IE7 xmlhttp new XMLHttpRequest catch e Other IE xmlhttp new ActiveXObject Msxml2.XMLHTTP xmlhttp.open 'GET' url false x.send '' eval xmlhttp.responseText var s xmlhttp.responseText.split n var r..
Parse content like XML, with jQuery http://stackoverflow.com/questions/3152062/parse-content-like-xml-with-jquery text var doc if window.DOMParser var parser new DOMParser doc parser.parseFromString text text xml else if window.ActiveXObject doc new ActiveXObject Microsoft.XMLDOM doc.async false doc.loadXML text else throw new Error Cannot parse XML return doc.. var parser new DOMParser doc parser.parseFromString text text xml else if window.ActiveXObject doc new ActiveXObject Microsoft.XMLDOM doc.async false doc.loadXML text else throw new Error Cannot parse XML return doc Use as Parse and construct..
Generate XML document in-memory with JavaScript http://stackoverflow.com/questions/3191179/generate-xml-document-in-memory-with-javascript parser new DOMParser doc parser.parseFromString string application xml else Internet Explorer doc new ActiveXObject Microsoft.XMLDOM doc.async false doc.loadXML string return doc function generateDocument3 var report createXmlDocument '..
How to implement a chat room using Jquery/PHP? http://stackoverflow.com/questions/4174521/how-to-implement-a-chat-room-using-jquery-php false iframediv false initialize function if navigator.appVersion.indexOf MSIE 1 For IE browsers comet.connection new ActiveXObject htmlfile comet.connection.open comet.connection.write html comet.connection.write script document.domain ' document.domain..
Local html file AJAX Call and jQuery Woes http://stackoverflow.com/questions/436670/local-html-file-ajax-call-and-jquery-woes .ajax url data.xml dataType .browser.msie text xml success function data var xml if typeof data string xml new ActiveXObject Microsoft.XMLDOM xml.async false xml.loadXML data else xml data Returned data available in object xml This worked for..
Access denied to jQuery script on IE http://stackoverflow.com/questions/5087549/access-denied-to-jquery-script-on-ie xdr.open get url xdr.onload function XDomainRequest doesn't provide responseXml so if you need it var dom new ActiveXObject Microsoft.XMLDOM dom.async false dom.loadXML xdr.responseText xdr.send else your ajax request here .ajax url thisURL..
Cascade Dropdown List using jQuery/PHP http://stackoverflow.com/questions/7137357/cascade-dropdown-list-using-jquery-php javascript src crlist.js script code for crlist.js var request false @cc_on @ @if @_jscript_version 5 try request new ActiveXObject Msxml2.XMLHTTP catch e try request new ActiveXObject Microsoft.XMLHTTP catch e2 request false @end @ function fillSelect.. request false @cc_on @ @if @_jscript_version 5 try request new ActiveXObject Msxml2.XMLHTTP catch e try request new ActiveXObject Microsoft.XMLHTTP catch e2 request false @end @ function fillSelect country path var url path crlist.php country country..
How to make an ajax call without jquery? http://stackoverflow.com/questions/8567114/how-to-make-an-ajax-call-without-jquery code for IE7 Firefox Chrome Opera Safari xmlhttp new XMLHttpRequest else code for IE6 IE5 xmlhttp new ActiveXObject Microsoft.XMLHTTP xmlhttp.onreadystatechange function if xmlhttp.readyState 4 xmlhttp.status 200 document.getElementById..
IE9 refuses to process XML response http://stackoverflow.com/questions/9746515/ie9-refuses-to-process-xml-response parser new DOMParser xml parser.parseFromString xhr.responseText text xml else Internet Explorer xml new ActiveXObject Microsoft.XMLDOM xml.async false xml.loadXML xhr.responseText console.log 'complete ' process_xml xhr.responseText '#uploadForm'.. parser new DOMParser xml parser.parseFromString xhr.responseText text xml else Internet Explorer xml new ActiveXObject Microsoft.XMLDOM xml.async false xml.loadXML xhr.responseText process_xml xml error function xhr status error alert 'ERROR..
|