User Sergey Ilinsky - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T20:26:05Zhttp://stackoverflow.com/feeds/user/23815http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1717987/how-do-you-build-a-website-that-uses-soap-requests-and-responses/1718055#17180550Answer by Sergey Ilinsky for How do you build a website that uses SOAP requests and responses?Sergey Ilinsky2009-11-11T21:05:37Z2009-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#17011171Answer by Sergey Ilinsky for How do I do OuterHTML in firefox?Sergey Ilinsky2009-11-09T13:57:51Z2009-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#16660641Answer by Sergey Ilinsky for Converting HTMLDocument to a printable stringSergey Ilinsky2009-11-03T08:54:03Z2009-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#16339673Answer by Sergey Ilinsky for Will ExtJS die?Sergey Ilinsky2009-10-27T22:09:42Z2009-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-1Answer by Sergey Ilinsky for Adobe Air: draw vector graphicsSergey Ilinsky2009-10-06T10:14:01Z2009-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#14542911Answer by Sergey Ilinsky for Should I accept IE 5.0 (!) as a browser requirement for a project?Sergey Ilinsky2009-09-21T12:32:10Z2009-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#13570121Answer by Sergey Ilinsky for UI Patterns in JavaScriptSergey Ilinsky2009-08-31T11:30:03Z2009-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><script type="application/ample+xml">
<xul:tabbox onselect="fOnSelect(event)"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<xul:tabs>
<xul:tab label="checkbox" />
<xul:tab label="textbox" />
<xul:tab label="datepicker" />
</xul:tabs>
<xul:tabpanels>
<xul:tabpanel>
<xul:checkbox />
</xul:tabpanel>
<xul:tabpanel>
<xul:textbox />
</xul:tabpanel>
<xul:tabpanel>
<xul:datepicker />
</xul:tabpanel>
</xul:tabpanels>
</xul:tabbox>
</script>
</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#13472950Answer by Sergey Ilinsky for selection range in IESergey Ilinsky2009-08-28T14:20:40Z2009-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#13435563Answer by Sergey Ilinsky for Problem with XSLT where source xml document uses default namespaceSergey Ilinsky2009-08-27T20:22:18Z2009-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-transformations2Decompose complex matrix transformation into a series of simple transformations?Sergey Ilinsky2009-07-24T11:13:59Z2009-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#11733001Answer by Sergey Ilinsky for How to guess browser compatibility based upon DOM Level?Sergey Ilinsky2009-07-23T17:32:58Z2009-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#11534761Answer by Sergey Ilinsky for preventing mouseout event for child nodeSergey Ilinsky2009-07-20T13:09:17Z2009-07-20T13:09:17Z<p>You can emulate behavior of mouseleave event:</p>
<pre><code><div id="pop_div" onmouseout="if ((event.relatedTarget || event.toElement) == this.parentNode) clearinfo()" >
<img alt="" src="" />
<p>lines of text</p>
</div>
</code></pre>
http://stackoverflow.com/questions/1142667/prevent-a-default-action-with-ie8/1143365#11433651Answer by Sergey Ilinsky for prevent a default action with IE8Sergey Ilinsky2009-07-17T13:43:44Z2009-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><a href="javascript:;" accesskey="f"></a>
</code></pre>
<p>Hope this helps. </p>
http://stackoverflow.com/questions/1130353/disable-internet-explorer-shortcut-keys/1130405#11304052Answer by Sergey Ilinsky for Disable Internet Explorer shortcut keysSergey Ilinsky2009-07-15T09:40:44Z2009-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 && oEvent.ctrlKey)
oEvent.preventDefault();
}, false)
</code></pre>
http://stackoverflow.com/questions/1125263/write-an-ie-xhr-proxy-in-javascript/1125502#11255020Answer by Sergey Ilinsky for write an IE XHR proxy in javascriptSergey Ilinsky2009-07-14T13:46:45Z2009-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#11248651Answer by Sergey Ilinsky for Javascript XML ParserSergey Ilinsky2009-07-14T11:42:26Z2009-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#11206030Answer by Sergey Ilinsky for How to decouple javascript programming from frameworks?Sergey Ilinsky2009-07-13T16:33:56Z2009-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#11146115Answer by Sergey Ilinsky for Inline SVG in HTML, with Firefox 3.5Sergey Ilinsky2009-07-11T20:47:28Z2009-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#11025430Answer by Sergey Ilinsky for MVP pattern with Javascript framework?Sergey Ilinsky2009-07-09T08:29:04Z2009-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#10664971Answer by Sergey Ilinsky for IE innerHTML errorSergey Ilinsky2009-06-30T22:58:19Z2009-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(/^<(\w+)/)) {
case "td":
case "th":
sHtml = '<tr>' + sHtml + '</tr>';
// no break intentionally left here
case "tr":
sHtml = '<tbody>' + sHtml + '</tbody>';
// no break intentionally left here
case "tbody":
case "tfoot":
case "thead":
sHtml = '<table>' + sHtml + '</table>';
break;
case "option":
sHtml = '<select>' + sHtml + '</select>';
}
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#10664682Answer by Sergey Ilinsky for IE javascript compatibility is killing me...Sergey Ilinsky2009-06-30T22:45:03Z2009-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#10582060Answer by Sergey Ilinsky for ExtJs IE rendering issueSergey Ilinsky2009-06-29T13:13:18Z2009-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#10526301Answer by Sergey Ilinsky for client side xslt with javascript in firefoxSergey Ilinsky2009-06-27T11:00:45Z2009-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#10526030Answer by Sergey Ilinsky for cross-browser standard Xml processing in Java ScriptSergey Ilinsky2009-06-27T10:47:10Z2009-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-sizes5How to calculate center of an ellipse by two points and radius sizesSergey Ilinsky2008-10-13T13:57:04Z2009-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#103109710Answer by Sergey Ilinsky for Variables as properties in JavaScriptSergey Ilinsky2009-06-23T07:29:19Z2009-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#9581241Answer by Sergey Ilinsky for What is AJAX, really?Sergey Ilinsky2009-06-05T21:00:57Z2009-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#9498931Answer by Sergey Ilinsky for Painting shapes in JavascriptSergey Ilinsky2009-06-04T11:09:19Z2009-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#9297861Answer by Sergey Ilinsky for Merging associative arrays javascriptSergey Ilinsky2009-05-30T14:13:12Z2009-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#9291951Answer by Sergey Ilinsky for How to make a Firefox addon listen to xmlhttprequests from a page?Sergey Ilinsky2009-05-30T06:44:30Z2009-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#1666064Comment by Sergey Ilinsky on Converting HTMLDocument to a printable stringSergey Ilinsky2009-11-10T17:55:02Z2009-11-10T17:55:02ZJoel, 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#1666064Comment by Sergey Ilinsky on Converting HTMLDocument to a printable stringSergey Ilinsky2009-11-10T09:32:34Z2009-11-10T09:32:34ZYes, it would work in every browser but IEhttp://stackoverflow.com/questions/1633406/will-extjs-die/1633967#1633967Comment by Sergey Ilinsky on Will ExtJS die?Sergey Ilinsky2009-10-28T18:58:07Z2009-10-28T18:58:07ZAmple SDK is MIT/GPL as of 1st Novemberhttp://stackoverflow.com/questions/1124654/javascript-xml-parser/1124865#1124865Comment by Sergey Ilinsky on Javascript XML ParserSergey Ilinsky2009-07-17T13:51:41Z2009-07-17T13:51:41ZRamiz, 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#1130405Comment by Sergey Ilinsky on Disable Internet Explorer shortcut keysSergey Ilinsky2009-07-17T08:06:23Z2009-07-17T08:06:23ZGreat, 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#1130405Comment by Sergey Ilinsky on Disable Internet Explorer shortcut keysSergey Ilinsky2009-07-15T10:40:50Z2009-07-15T10:40:50ZNo, 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#1125502Comment by Sergey Ilinsky on write an IE XHR proxy in javascriptSergey Ilinsky2009-07-14T15:54:52Z2009-07-14T15:54:52ZIf 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#1125451Comment by Sergey Ilinsky on web link in svgSergey Ilinsky2009-07-14T13:45:38Z2009-07-14T13:45:38ZYou have to exit SVG content first with foreignObject to get HTML content handled.http://stackoverflow.com/questions/1124654/javascript-xml-parser/1124865#1124865Comment by Sergey Ilinsky on Javascript XML ParserSergey Ilinsky2009-07-14T13:19:41Z2009-07-14T13:19:41ZSo 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#1125211Comment by Sergey Ilinsky on Javascript XML ParserSergey Ilinsky2009-07-14T13:18:19Z2009-07-14T13:18:19ZI doubt Ramiz was asking for a true XML parser - why would someone need one? All browsers support XML DOM nativelyhttp://stackoverflow.com/questions/1118493/how-to-decouple-javascript-programming-from-frameworks/1120603#1120603Comment by Sergey Ilinsky on How to decouple javascript programming from frameworks?Sergey Ilinsky2009-07-13T18:32:34Z2009-07-13T18:32:34ZUI 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#1114569Comment by Sergey Ilinsky on Inline SVG in HTML, with Firefox 3.5Sergey Ilinsky2009-07-11T20:49:28Z2009-07-11T20:49:28Zk 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#1102543Comment by Sergey Ilinsky on MVP pattern with Javascript framework?Sergey Ilinsky2009-07-09T08:29:47Z2009-07-09T08:29:47ZAlthough 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#1032150Comment by Sergey Ilinsky on Will HTML5 allow web apps to make peer-to-peer HTTP connections?Sergey Ilinsky2009-06-23T12:18:17Z2009-06-23T12:18:17ZWeb Sockets is not part of HTML5 anymore, but a standalone specification.http://stackoverflow.com/questions/1031069/variables-as-properties-in-javascript/1031110#1031110Comment by Sergey Ilinsky on Variables as properties in JavaScriptSergey Ilinsky2009-06-23T07:37:03Z2009-06-23T07:37:03ZIndeed 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.