User Sergey Ilinsky - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:26:05Z http://stackoverflow.com/feeds/user/23815 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1717987/how-do-you-build-a-website-that-uses-soap-requests-and-responses/1718055#1718055 0 Answer by Sergey Ilinsky for How do you build a website that uses SOAP requests and responses? Sergey Ilinsky 2009-11-11T21:05:37Z 2009-11-11T21:05:37Z <p>SOAP can play a good role in the infrastructure of a complex back-end implemented in different technologies. I had experience developing client-side application which communicated to back-end in SOAP through a tiny JSON2SOAP server-side front-end. I doubt this is neccessary in your case though.</p> http://stackoverflow.com/questions/1700870/how-do-i-do-outerhtml-in-firefox/1701117#1701117 1 Answer by Sergey Ilinsky for How do I do OuterHTML in firefox? Sergey Ilinsky 2009-11-09T13:57:51Z 2009-11-09T13:57:51Z <p>The proper approach (for non-IE browsers) is:</p> <pre><code>var sOuterHTML = new XMLSerializer().serializeToString(oElement); </code></pre> http://stackoverflow.com/questions/1664184/converting-htmldocument-to-a-printable-string/1666064#1666064 1 Answer by Sergey Ilinsky for Converting HTMLDocument to a printable string Sergey Ilinsky 2009-11-03T08:54:03Z 2009-11-03T08:54:03Z <p>The DOM way of converting HTMLDocument object to XML is:</p> <pre><code>new XMLSerializer().serializeToString(oDocument); </code></pre> <p>In Internet Explorer there is no way to get proper XML representation of HTML document object by any built-in means. There you would need to implement serialization mechanism yourself - traversing the DOM tree and creating XML string.</p> http://stackoverflow.com/questions/1633406/will-extjs-die/1633967#1633967 3 Answer by Sergey Ilinsky for Will ExtJS die? Sergey Ilinsky 2009-10-27T22:09:42Z 2009-10-27T22:09:42Z <p>IMHO, the need in jQuery, ExtJS etc. will be eliminated as soon as XBL2, entire collection of CSS3 specifications, SVG and HTML5 all get available in an equal extent across all desktop/mobile web-browsers, which is not going to hapen within coming 5 years.</p> <blockquote> <p>I look at ExtJS, and it appears to provide many of the RIA features that more bulky suites such as Flex provide, without the flash requirement. </p> </blockquote> <p>To run Flex application you still need Flash player, which for example is not available on mobile devices</p> <blockquote> <p>However, as Open-source initiatiatives such as jQuery-UI continue, will ExtJS simply die at some point? </p> </blockquote> <p>Comparing ExtJS to jQuery-UI doesn't make good sense, since jQuery is primarily a cross-browser library to simplify operations on HTML documents and make web-pages nicer, while ExtJS is a true aplication framework that brings enhanced data-driven UI components to make applications easier.</p> <blockquote> <p>Furthermore, since flash penetration only continues to increase, why put stock in a javascript library?</p> </blockquote> <p>It doesn't really matter that Flash penetration "only continues to increase", since it is already available on 98% of desktop devices. Putting stock in a Javascript library makes sence, believe Google (who put most of its stock in DHTML)</p> <blockquote> <p>will ExtJS simply die at some point?</p> </blockquote> <p>Indeed it will, as at some point will die .Net, Java etc. It will not die in a foreseen future however and the need for this kind of Flesh-less solutions will only increase.</p> <p><hr /></p> <p>You may also want to take look into an alternative GUI framework <a href="http://www.amplesdk.com" rel="nofollow">Ample SDK</a>, which will go Open-Source on 1st November this year. It enables tehnologies, such as SVG, XUL and more equally cross browser.</p> http://stackoverflow.com/questions/1524676/adobe-air-draw-vector-graphics/1524707#1524707 -1 Answer by Sergey Ilinsky for Adobe Air: draw vector graphics Sergey Ilinsky 2009-10-06T10:14:01Z 2009-10-06T10:14:01Z <p>Adobe Air has an embedded WebKit which partially supports SVG 1.1 As an alternative rendering engine in Adobe Air application you can use Flash, which is much based on vector graphics.</p> http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454291#1454291 1 Answer by Sergey Ilinsky for Should I accept IE 5.0 (!) as a browser requirement for a project? Sergey Ilinsky 2009-09-21T12:32:10Z 2009-09-21T12:32:10Z <p>I think getting a project running in IE5 is possible, it has XHR to enabled your web 2.0 Ajax, it has same accessibility aspects implemented as IE7, it has vector graphics and more.</p> http://stackoverflow.com/questions/1356818/ui-patterns-in-javascript/1357012#1357012 1 Answer by Sergey Ilinsky for UI Patterns in JavaScript Sergey Ilinsky 2009-08-31T11:30:03Z 2009-08-31T11:30:03Z <p>A good approach to building GUI application is that of browser: </p> <ol> <li>using markup for UI layout</li> <li>using javascript UI logic </li> <li>using CSS for UI styling</li> </ol> <p>Most of modern GUI frameworks (ExtJS, Dojo etc) offer APIs that greatly help building GUI in JavaScript solely. But there is another GUI framework <a href="http://www.amplesdk.com" rel="nofollow">Ample SDK</a> that brings the before mentioned separation of concerns. It allows for using XML-based languages (XHTML, XUL, SVG) for layout, CSS for style and DOM APIs for UI logic. </p> <p>To orchestrate a client-side GUI application you can use either MVC or a little bit more advanced pattern PAC, as for the former - there is a <a href="http://www.puremvc.org" rel="nofollow">PureMVC</a> implementation available</p> <p>Take a look at the following snippet (only concerns UI logic, not app logic, to be built with MVC/PAC):</p> <p><em>index.html</em></p> <pre><code>&lt;script type="application/ample+xml"&gt; &lt;xul:tabbox onselect="fOnSelect(event)" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"&gt; &lt;xul:tabs&gt; &lt;xul:tab label="checkbox" /&gt; &lt;xul:tab label="textbox" /&gt; &lt;xul:tab label="datepicker" /&gt; &lt;/xul:tabs&gt; &lt;xul:tabpanels&gt; &lt;xul:tabpanel&gt; &lt;xul:checkbox /&gt; &lt;/xul:tabpanel&gt; &lt;xul:tabpanel&gt; &lt;xul:textbox /&gt; &lt;/xul:tabpanel&gt; &lt;xul:tabpanel&gt; &lt;xul:datepicker /&gt; &lt;/xul:tabpanel&gt; &lt;/xul:tabpanels&gt; &lt;/xul:tabbox&gt; &lt;/script&gt; </code></pre> <p><em>index.css</em></p> <pre><code>@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); xul|tab:focus { color: red; } </code></pre> <p><em>index.js</em></p> <pre><code>function fOnSelect(oEvent) { alert(oEvent.currentTarget.selectedItems.length) } </code></pre> http://stackoverflow.com/questions/1347015/selection-range-in-ie/1347295#1347295 0 Answer by Sergey Ilinsky for selection range in IE Sergey Ilinsky 2009-08-28T14:20:40Z 2009-08-28T14:20:40Z <p>You might find useful <a href="http://code.google.com/p/ierange/" rel="nofollow">http://code.google.com/p/ierange/</a> project. Some details are available also from <a href="http://ajaxian.com/archives/ierange-implementing-w3c-dom-ranges-for-ie" rel="nofollow">http://ajaxian.com/archives/ierange-implementing-w3c-dom-ranges-for-ie</a></p> http://stackoverflow.com/questions/1343532/problem-with-xslt-where-source-xml-document-uses-default-namespace/1343556#1343556 3 Answer by Sergey Ilinsky for Problem with XSLT where source xml document uses default namespace Sergey Ilinsky 2009-08-27T20:22:18Z 2009-08-27T20:22:18Z <p>Specify same default namespace in XSLT document if your selectors do not use prefixes, or use prefixes for all selectors in the XSLT, but don't forget to bind them to the default namespace of your XML document.</p> http://stackoverflow.com/questions/1177017/decompose-complex-matrix-transformation-into-a-series-of-simple-transformations 2 Decompose complex matrix transformation into a series of simple transformations? Sergey Ilinsky 2009-07-24T11:13:59Z 2009-07-24T15:23:06Z <p>I wonder if it is possible (and if it is then how) to re-present an arbitrary M3 matrix transformation as a sequence of simpler transformations (such as translate, scale, skew, rotate)</p> <p>In other words: how to calculate MTranslate, MScale, MRotate, MSkew matrices from the MComplex so that the following equation would be true:</p> <p>MComplex = MTranslate * MScale * MRotate * MSkew (or in an other order)</p> http://stackoverflow.com/questions/1173165/how-to-guess-browser-compatibility-based-upon-dom-level/1173300#1173300 1 Answer by Sergey Ilinsky for How to guess browser compatibility based upon DOM Level? Sergey Ilinsky 2009-07-23T17:32:58Z 2009-07-23T17:32:58Z <p>You may use feature detection:</p> <ul> <li>DOM-Events Level 2: document.implementation.hasFeature("Events", "2.0") </li> <li>DOM-Core Level 2: document.implementation.hasFeature("Core", "2.0")) </li> <li>DOM-XPath Level 3: document.implementation.hasFeature("XPath", "3.0")</li> </ul> <p>Camp 1: Gecko (Firefox, Mozilla), WebKit (Safari, Chrome), Presto-based (Opera) browsers support DOM Core/Events/XPath Level 2, some of them support Level 3.0</p> <p>Camp 2: Presto-based (Intenert Explorer) support DOM Level 0 (which is not a standard)</p> <p>Hope this helps.</p> <p>Worth noticing, there is <a href="http://www.amplesdk.com/" rel="nofollow">Ample SDK</a> Ajax GUI framework that enables DOM Level 2/3 in Internet Explorer as well as in other browsers by re-implementing it.</p> http://stackoverflow.com/questions/1151676/preventing-mouseout-event-for-child-node/1153476#1153476 1 Answer by Sergey Ilinsky for preventing mouseout event for child node Sergey Ilinsky 2009-07-20T13:09:17Z 2009-07-20T13:09:17Z <p>You can emulate behavior of mouseleave event:</p> <pre><code>&lt;div id="pop_div" onmouseout="if ((event.relatedTarget || event.toElement) == this.parentNode) clearinfo()" &gt; &lt;img alt="" src="" /&gt; &lt;p&gt;lines of text&lt;/p&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1142667/prevent-a-default-action-with-ie8/1143365#1143365 1 Answer by Sergey Ilinsky for prevent a default action with IE8 Sergey Ilinsky 2009-07-17T13:43:44Z 2009-07-17T13:43:44Z <p>Although it is not possible to override behavior of "Ctrl+KEY" shortcuts (in IE), you can still override access keys. Use plain simple HTML for that.</p> <pre><code>&lt;a href="javascript:;" accesskey="f"&gt;&lt;/a&gt; </code></pre> <p>Hope this helps. </p> http://stackoverflow.com/questions/1130353/disable-internet-explorer-shortcut-keys/1130405#1130405 2 Answer by Sergey Ilinsky for Disable Internet Explorer shortcut keys Sergey Ilinsky 2009-07-15T09:40:44Z 2009-07-15T09:40:44Z <p>You can try creating an event handler for keydown event, check on the keyCode and prevent its default action if needed. However this will not work in all browsers.</p> <p>An example for Firefox (canceling "Print" short key, verified):</p> <pre><code>document.addEventListener("keydown", function(oEvent) { if (oEvent.keyCode == 80 &amp;&amp; oEvent.ctrlKey) oEvent.preventDefault(); }, false) </code></pre> http://stackoverflow.com/questions/1125263/write-an-ie-xhr-proxy-in-javascript/1125502#1125502 0 Answer by Sergey Ilinsky for write an IE XHR proxy in javascript Sergey Ilinsky 2009-07-14T13:46:45Z 2009-07-14T13:46:45Z <p>I guess <a href="http://code.google.com/p/xmlhttprequest/" rel="nofollow">XMLHttpRequest.js</a> is exactly what you need, no?</p> http://stackoverflow.com/questions/1124654/javascript-xml-parser/1124865#1124865 1 Answer by Sergey Ilinsky for Javascript XML Parser Sergey Ilinsky 2009-07-14T11:42:26Z 2009-07-14T11:42:26Z <p>Check <a href="http://dev.abiss.gr/sarissa/" rel="nofollow">Sarissa</a> library out. It brings many pseudo-standard (implemented in every browser but IE) XML APIs to Internet Explorer, such as DOMParser, XMLSerializer, XSLTProcessor.</p> http://stackoverflow.com/questions/1118493/how-to-decouple-javascript-programming-from-frameworks/1120603#1120603 0 Answer by Sergey Ilinsky for How to decouple javascript programming from frameworks? Sergey Ilinsky 2009-07-13T16:33:56Z 2009-07-13T17:05:21Z <p>Let me try to blow in some fresh air into the discussion.</p> <p>The major problem with many Ajax libraries and frameworks is that every and each of them have different (and proprietary as well) API. Moreover different libraries also enable and promote different programming models. This is all indeed reasonable, since there is no API standard that have all features that frameworks have to offer. However many frameworks forget that there is quite a basic API and programming model that lays in the browsers natively - XML (in simple case HTML) for layout, CSS for styling and DOM for scripting. This bundle is not only available from browsers, but also for example in Gecko XUL technology, Flex and Silverlight too.</p> <p>There is a Javascript GUI Framework that brings that natural programming model back to the hands of developers - <a href="http://www.amplesdk.com" rel="nofollow">Ample SDK</a>. Working with that you can layout your interface in a XML appliance (XHTML, XUL or SVG1.2), style the UI with CSS3-featured rules and still write code against standards-based API DOM (Level 2/3) - all cross-browser. </p> <p>Having choosen for that approach you can make sure that tomorrow, when browsers have all implemented the basic features (mentioned above) equally good you can reuse lots of application javascript code, since it will then run natively!</p> <p>Indeed that was part of the story - interacting with the View (although many javascript frameworks and libraries do not draw any line between M, V and C - that is the pain). Coding Javascript application is often way more than just interacting with DOM, and then MVC and PAC code architectures come in place. They have proven their efficiency, they are implementation-agnostic. Pick one implementation (as suggested by Daff - PureMVC, for example) or create your own.</p> http://stackoverflow.com/questions/1114561/inline-svg-in-html-with-firefox-3-5/1114611#1114611 5 Answer by Sergey Ilinsky for Inline SVG in HTML, with Firefox 3.5 Sergey Ilinsky 2009-07-11T20:47:28Z 2009-07-11T20:47:28Z <p>In order for inline SVG to be shown in browsers, the page must be XHTML valid and must be serverd with <strong>application/xhtml+xml</strong> mime-type server response header.</p> <p>It is also possible to pull inline SVG content from HTML page as well, see an example of an <a href="http://www.amplesdk.com/examples/svg/" rel="nofollow">SVG Tiger</a> image that can also be viewed in Internet Explorer (5.5+) </p> http://stackoverflow.com/questions/1102215/mvp-pattern-with-javascript-framework/1102543#1102543 0 Answer by Sergey Ilinsky for MVP pattern with Javascript framework? Sergey Ilinsky 2009-07-09T08:29:04Z 2009-07-09T08:29:04Z <p>Check <a href="http://www.puremvc.org/" rel="nofollow">PureMVC</a> out. They have also port to JavaScript.</p> http://stackoverflow.com/questions/1066443/ie-innerhtml-error/1066497#1066497 1 Answer by Sergey Ilinsky for IE innerHTML error Sergey Ilinsky 2009-06-30T22:58:19Z 2009-06-30T22:58:19Z <p>It is not possible to create td or tr separately in Internet Explorer. This same problem has existed in other browsers for quite some time too, however latest versions of those do not suffer from that issue any more.</p> <p>You have 2 options to:</p> <ol> <li>Use table specific APIs to add cells/rows. See for example <a href="http://msdn.microsoft.com/en-us/library/dd347123%28VS.85%29.aspx" rel="nofollow">MSDN for insertCell</a> and more </li> <li>Create a utility function, that would help you creating DOM nodes out of strings. In case of a table you would need to wrap up your HTML so that the resulting HTML is always a table and then get required element by tag name. </li> </ol> <p>For example like this:</p> <pre><code>var oHTMLFactory = document.createElement("span"); function createDOMElementFromHTML(sHtml) { switch (sHtml.match(/^&lt;(\w+)/)) { case "td": case "th": sHtml = '&lt;tr&gt;' + sHtml + '&lt;/tr&gt;'; // no break intentionally left here case "tr": sHtml = '&lt;tbody&gt;' + sHtml + '&lt;/tbody&gt;'; // no break intentionally left here case "tbody": case "tfoot": case "thead": sHtml = '&lt;table&gt;' + sHtml + '&lt;/table&gt;'; break; case "option": sHtml = '&lt;select&gt;' + sHtml + '&lt;/select&gt;'; } oHTMLFactory.innerHTML = sHtml; return oAML_oHTMLFactory.getElementsByTagName(cRegExp.$1)[0] || null; } </code></pre> <p>Hope this helps!</p> http://stackoverflow.com/questions/1066451/ie-javascript-compatibility-is-killing-me/1066468#1066468 2 Answer by Sergey Ilinsky for IE javascript compatibility is killing me... Sergey Ilinsky 2009-06-30T22:45:03Z 2009-06-30T22:45:03Z <p>The @height attribute (unlike height style property) accept numeric values only.</p> <pre><code>img.setAttribute("height", "270"); </code></pre> http://stackoverflow.com/questions/1056748/extjs-ie-rendering-issue/1058206#1058206 0 Answer by Sergey Ilinsky for ExtJs IE rendering issue Sergey Ilinsky 2009-06-29T13:13:18Z 2009-06-29T13:13:18Z <p>Maybe <a href="http://www.extjs.com/forum/" rel="nofollow">ExtJS forum</a> can help you?</p> http://stackoverflow.com/questions/1051529/client-side-xslt-with-javascript-in-firefox/1052630#1052630 1 Answer by Sergey Ilinsky for client side xslt with javascript in firefox Sergey Ilinsky 2009-06-27T11:00:45Z 2009-06-27T11:00:45Z <p>1) Fixing your problem</p> <p>Solving your issue is as simple as changing value of the <em>@method</em> attribute from "xml" to "html" on <em>xsl:output</em> element.</p> <p>2) Explaining the difference </p> <p>HTML DOM extends core XML DOM interfaces. So, for example, the collection "forms" is not present in the XMLDocument, but is in HTMLDocument</p> http://stackoverflow.com/questions/1052301/cross-browser-standard-xml-processing-in-java-script/1052603#1052603 0 Answer by Sergey Ilinsky for cross-browser standard Xml processing in Java Script Sergey Ilinsky 2009-06-27T10:47:10Z 2009-06-27T10:47:10Z <p>The "standard" way to process XML in Javascript is to use one or more standard or broadly available APIs. The most widely adopted APIs for that are:</p> <ul> <li>DOMParser object, allows for parsing an XML string into a DOM structure</li> <li>XMLSerializer object, serializes DOM structure to XML string</li> <li>XSLTProcessor object, enables XSLT processing</li> <li>XMLHttpRequest object, to send XML over the wire</li> </ul> <p>All of the mentioned objects are available in all of the modern (that are not IE) web browsers. By a lucky occasion, IE has also had implementations of these functionalities since ever (well, since IE5 or so), they just had different APIs. Since mentioned above objects are not available in IE it would be possible to implement them, so did <a href="http://www.amplesdk.com/" rel="nofollow">Ample SDK</a> and <a href="http://dev.abiss.gr/sarissa/" rel="nofollow">Sarissa</a> projects, probably some others too.</p> <p>For example, look how the code that enables cross-browser DOMParser may look:</p> <pre><code>if (!window.DOMParser) { var cDOMParser = function(){}; cDOMParser.prototype.baseURI = null; cDOMParser.prototype.parseFromString = function(sXml, sMime) { var oDocument = new ActiveXObject("Microsoft.XMLDOM"); oDocument.async = false; oDocument.validateOnParse = false; oDocument.loadXML(sXml); return oDocument; }; window.DOMParser = cDOMParser; }; </code></pre> http://stackoverflow.com/questions/197649/how-to-calculate-center-of-an-ellipse-by-two-points-and-radius-sizes 5 How to calculate center of an ellipse by two points and radius sizes Sergey Ilinsky 2008-10-13T13:57:04Z 2009-06-25T13:36:56Z <p>While working on SVG implementation for Internet Explorer to be based on its own VML format I came to a problem of translation of an SVG elliptical arc to an VML elliptical arc.</p> <p>In VML an arc is given by: two angles for two points on ellipse and lengths of radiuses, In SVG an arc is given by: two pairs of coordinates for two points on ellipse and sizes of ellipse boundary box</p> <p>So, the question is: How to express angles of two points on ellipse to two pairs of their coordinates. An intermediate question could be: How to find the center of an ellipse by coordinates of a pair of points on its curve.</p> <p><b>Update</b>: Let's have a precondition saying that an ellipse is normally placed (its radiuses are parallel to linear coordinate system axis), thus no rotation is applied.</p> <p><b>Update</b>: This question is not related to svg:ellipse element, rather to "a" elliptical arc command in svg:path element</p> http://stackoverflow.com/questions/1031069/variables-as-properties-in-javascript/1031097#1031097 10 Answer by Sergey Ilinsky for Variables as properties in JavaScript Sergey Ilinsky 2009-06-23T07:29:19Z 2009-06-23T07:29:19Z <p>I guess this happens becuase: <strong>the JS code gets first parsed and analyzed</strong>. Variables and functions get instantiated at this time, but only during execution they will be assigned with their values used in declaratins. This is exactly why you get "undefined" in alert.</p> http://stackoverflow.com/questions/958040/what-is-ajax-really/958124#958124 1 Answer by Sergey Ilinsky for What is AJAX, really? Sergey Ilinsky 2009-06-05T21:00:57Z 2009-06-05T21:00:57Z <p>"Ajax" is the successfull marketing term introduced back in 2005 to replace the the older term "DHTML" that did not stick well. "Ajax" today is part of the history too as the new word - "HTML5" emerge. Still "HTML5" is pretty much what original "DHTML" used to be.</p> <p>Ajax is also reffered to as "the new approach to the application development" where a web page is created on the server initially but later on, during its lifetime, the updates are being done on the client as the data or partial content gets communicated to the server in a background.</p> <p>Hope this clarifies.</p> http://stackoverflow.com/questions/949249/painting-shapes-in-javascript/949893#949893 1 Answer by Sergey Ilinsky for Painting shapes in Javascript Sergey Ilinsky 2009-06-04T11:09:19Z 2009-06-04T11:09:19Z <p>You can use SVG implementation found in <a href="http://www.amplesdk.com" rel="nofollow">Ample SDK</a> that works in Internet Explorer too. You will get standard-based API (DOM Level 2/3) and a markup notation (SVG1.2 Tiny).</p> <p>Here is a pair of examples:</p> <ol> <li><a href="http://www.amplesdk.com/examples/svg/" rel="nofollow">SVG Tiger</a></li> <li><a href="http://www.amplesdk.com/examples/svg/dynamic/" rel="nofollow">SVG+SMIL/DOM</a></li> </ol> http://stackoverflow.com/questions/929776/merging-associative-arrays-javascript/929786#929786 1 Answer by Sergey Ilinsky for Merging associative arrays javascript Sergey Ilinsky 2009-05-30T14:13:12Z 2009-05-30T14:13:12Z <ol> <li>In Javascript there is no notion of associative array, there are objects</li> <li>The only way to merge two objects is to loop for their properties and copy pointers to their values that are not primitive types and values for primitive types to another instance</li> </ol> http://stackoverflow.com/questions/928735/how-to-make-a-firefox-addon-listen-to-xmlhttprequests-from-a-page/929195#929195 1 Answer by Sergey Ilinsky for How to make a Firefox addon listen to xmlhttprequests from a page? Sergey Ilinsky 2009-05-30T06:44:30Z 2009-05-30T06:44:30Z <blockquote> <p>but the responseSource that gets dumped is, as far as I can tell, always the contents of the first http request made after the browser opened and, obviously, not what I was expecting.</p> </blockquote> <p>There is a problem with the code above. The "receivedData" member is declared on prototype object and have empty array assigned. This leads to every instantiation of the TracingListener class to be using the same object in memory for receivedData. Changing your code to might solve he problem:</p> <pre><code>function TracingListener() { this.receivedData = []; } TracingListener.prototype = { originalListener: null, receivedData: null, // array for incoming data. /* skipped */ } </code></pre> <p>Not sure though if this will solve your original problem.</p> http://stackoverflow.com/questions/1664184/converting-htmldocument-to-a-printable-string/1666064#1666064 Comment by Sergey Ilinsky on Converting HTMLDocument to a printable string Sergey Ilinsky 2009-11-10T17:55:02Z 2009-11-10T17:55:02Z Joel, It is farely simple to test. To my understanding it should display the rendered HTML since the parameter of the serializeToStringfunction is the live DOM Node (document). http://stackoverflow.com/questions/1664184/converting-htmldocument-to-a-printable-string/1666064#1666064 Comment by Sergey Ilinsky on Converting HTMLDocument to a printable string Sergey Ilinsky 2009-11-10T09:32:34Z 2009-11-10T09:32:34Z Yes, it would work in every browser but IE http://stackoverflow.com/questions/1633406/will-extjs-die/1633967#1633967 Comment by Sergey Ilinsky on Will ExtJS die? Sergey Ilinsky 2009-10-28T18:58:07Z 2009-10-28T18:58:07Z Ample SDK is MIT/GPL as of 1st November http://stackoverflow.com/questions/1124654/javascript-xml-parser/1124865#1124865 Comment by Sergey Ilinsky on Javascript XML Parser Sergey Ilinsky 2009-07-17T13:51:41Z 2009-07-17T13:51:41Z Ramiz, I guess you are considering using jQuery not for XML parsing but for DOM traversing. If so, I am not sure if jQuery works properly with XMLDOM (that is different in IE from HTMLDOM, for example). Try anyway. http://stackoverflow.com/questions/1130353/disable-internet-explorer-shortcut-keys/1130405#1130405 Comment by Sergey Ilinsky on Disable Internet Explorer shortcut keys Sergey Ilinsky 2009-07-17T08:06:23Z 2009-07-17T08:06:23Z Great, then, I guess, your users used to print with ctrl+p, so let them keeping doing that. http://stackoverflow.com/questions/1130353/disable-internet-explorer-shortcut-keys/1130405#1130405 Comment by Sergey Ilinsky on Disable Internet Explorer shortcut keys Sergey Ilinsky 2009-07-15T10:40:50Z 2009-07-15T10:40:50Z No, guess there is not way to prevent shortcut in IE. But does it actually make any sense to try? User can still print or paste text by accessing the menu. http://stackoverflow.com/questions/1125263/write-an-ie-xhr-proxy-in-javascript/1125502#1125502 Comment by Sergey Ilinsky on write an IE XHR proxy in javascript Sergey Ilinsky 2009-07-14T15:54:52Z 2009-07-14T15:54:52Z If you have any further questions regarding the tiny library, do not hesitate contacting me - by an occasion I am the author ;) http://stackoverflow.com/questions/1125427/web-link-in-svg/1125451#1125451 Comment by Sergey Ilinsky on web link in svg Sergey Ilinsky 2009-07-14T13:45:38Z 2009-07-14T13:45:38Z You have to exit SVG content first with foreignObject to get HTML content handled. http://stackoverflow.com/questions/1124654/javascript-xml-parser/1124865#1124865 Comment by Sergey Ilinsky on Javascript XML Parser Sergey Ilinsky 2009-07-14T13:19:41Z 2009-07-14T13:19:41Z So use the recommended library - it normalizes APIs across all browsers. Even if you only target IE, using that API is better than working directly with ActiveX-based objects. http://stackoverflow.com/questions/1124654/javascript-xml-parser/1125211#1125211 Comment by Sergey Ilinsky on Javascript XML Parser Sergey Ilinsky 2009-07-14T13:18:19Z 2009-07-14T13:18:19Z I doubt Ramiz was asking for a true XML parser - why would someone need one? All browsers support XML DOM natively http://stackoverflow.com/questions/1118493/how-to-decouple-javascript-programming-from-frameworks/1120603#1120603 Comment by Sergey Ilinsky on How to decouple javascript programming from frameworks? Sergey Ilinsky 2009-07-13T18:32:34Z 2009-07-13T18:32:34Z UI Languages implementation are already open-source, only the core runtime is not yet, but it is not of much interest - in a way it is just a web browser! 1st November 2009 is the day when the author of the framework is not bound by a contract with its previous employer any more. And as for the JSON - this will be used more in data-binding solution when it comes. Otherwise you can indeed use JSON in your application logic already! http://stackoverflow.com/questions/1114561/inline-svg-in-html-with-firefox-3-5/1114569#1114569 Comment by Sergey Ilinsky on Inline SVG in HTML, with Firefox 3.5 Sergey Ilinsky 2009-07-11T20:49:28Z 2009-07-11T20:49:28Z k montgomery, I guess you can set a mime-type header, see my reply for details. http://stackoverflow.com/questions/1102215/mvp-pattern-with-javascript-framework/1102543#1102543 Comment by Sergey Ilinsky on MVP pattern with Javascript framework? Sergey Ilinsky 2009-07-09T08:29:47Z 2009-07-09T08:29:47Z Although MVC is not useful for client-side applications. I would advice on using PAC pattern instead. http://stackoverflow.com/questions/1032006/will-html5-allow-web-apps-to-make-peer-to-peer-http-connections/1032150#1032150 Comment by Sergey Ilinsky on Will HTML5 allow web apps to make peer-to-peer HTTP connections? Sergey Ilinsky 2009-06-23T12:18:17Z 2009-06-23T12:18:17Z Web Sockets is not part of HTML5 anymore, but a standalone specification. http://stackoverflow.com/questions/1031069/variables-as-properties-in-javascript/1031110#1031110 Comment by Sergey Ilinsky on Variables as properties in JavaScript Sergey Ilinsky 2009-06-23T07:37:03Z 2009-06-23T07:37:03Z Indeed this will produce different result, since the code is now executed in a local scope, and not in a global as it is mutualy suggested in the question.