User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T16:50:48Z http://stackoverflow.com/feeds/user/19707 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1794719/capture-screenshot-of-website-on-the-client-javascript-or-flash/1914118#1914118 0 Answer by svinto for Capture screenshot of website on the client (Javascript or flash) svinto 2009-12-16T11:34:13Z 2009-12-16T11:34:13Z <p>No there is not, though it would come in quite handy at times for bug reporting etcetera.</p> <p>You will probably get the best result by creating a separate version of the page as a PDF have that being generated. It's no quick fix by all means, but you'll get superb print quality and total control over everything. The map part will probably be a bit tricky though as you need to get the map as a bitmap on the server somehow, and if it's not in flash on the client I don't know how you'd do that.</p> http://stackoverflow.com/questions/1886473/is-html-5-doctype-causing-quirksmode/1886479#1886479 2 Answer by svinto for IS HTML 5 Doctype causing quirksmode? svinto 2009-12-11T07:49:33Z 2009-12-11T07:49:33Z <p>No it does not.</p> http://stackoverflow.com/questions/1881716/merging-jquery-objects/1881787#1881787 1 Answer by svinto for Merging jQuery objects svinto 2009-12-10T15:31:46Z 2009-12-10T15:31:46Z <pre><code>$(btn).add(h3).hide(); </code></pre> <p>Not sure if it works though, documentation for add doesn't mention haivng the jQuery object as a parameter but only a list of elements, so it that doesn't work this should:</p> <pre><code>$(btn).add(h3.get()).hide(); </code></pre> http://stackoverflow.com/questions/1873097/innerchannel-replacement-in-soaphttpclientprotocol-when-moving-from-vs2005-to-vs2 0 InnerChannel replacement in SoapHttpClientProtocol when moving from VS2005 to VS2008 svinto 2009-12-09T10:53:20Z 2009-12-10T10:34:23Z <p>In a project I'm working with we're using external services exposed by SOAP. In the proxy classes to access these services generated by Visual Studio 2005, the member <code>InnerChannel</code> was exposed, but this is not the case with the proxy classes generated by Visual Studio 2008.</p> <p>I'm trying to do this, but of course get an error because the member doesn't exist:</p> <pre><code>using (new OperationContextScope(proxy.InnerChannel)) { OperationContext.Current.OutgoingMessageHeaders.Add(GetHeader()); //... } </code></pre> http://stackoverflow.com/questions/1873097/innerchannel-replacement-in-soaphttpclientprotocol-when-moving-from-vs2005-to-vs2/1880107#1880107 0 Answer by svinto for InnerChannel replacement in SoapHttpClientProtocol when moving from VS2005 to VS2008 svinto 2009-12-10T10:34:23Z 2009-12-10T10:34:23Z <p>SOAP seems to have been completely redone in VS2008.</p> <p>To do the same in VS2008 you need to create a class that implements SoapExtension:</p> <pre><code>public class classname : SoapExtension { public override object GetInitializer(LogicalMethodInfo methodInfo, SoapExtensionAttribute attribute) { throw new NotImplementedException(); } public override object GetInitializer(Type serviceType) { return null; } public override void Initialize(object initializer) {} public override void ProcessMessage(SoapMessage message) { switch (message.Stage) { case SoapMessageStage.BeforeSerialize: var header = GetHeader(); // Returns a class implementing SoapHeader message.Headers.Add(header); break; case SoapMessageStage.AfterSerialize: break; case SoapMessageStage.BeforeDeserialize: break; case SoapMessageStage.AfterDeserialize: break; } } } </code></pre> <p>And register that class in your config file:</p> <pre><code>.... &lt;webServices&gt; &lt;soapExtensionTypes&gt; &lt;add type="namespace.classname, namespace" priority="1" group="Low"/&gt; &lt;/soapExtensionTypes&gt; &lt;/webServices&gt; &lt;/system.web&gt; </code></pre> http://stackoverflow.com/questions/1874295/how-do-i-get-the-xmlserializer-to-add-namespaces-to-attributes-in-nested-objects 0 How do I get the XMLSerializer to add namespaces to attributes in nested objects? svinto 2009-12-09T14:32:30Z 2009-12-09T16:43:15Z <p>Hi,</p> <p>This is what I get:</p> <pre><code>&lt;ex:test soap:mustUnderstand="1" xmlns:ex="http://www.example.com/namespace"&gt; &lt;ex:A Type="lorem"&gt;ipsum&lt;/ex:A&gt; &lt;/ex:test&gt; </code></pre> <p>This is what I want: (Note that the Type-attribute is prefixed with ex.)</p> <pre><code>&lt;ex:test soap:mustUnderstand="1" xmlns:ex="http://www.example.com/namespace"&gt; &lt;ex:A ex:Type="lorem"&gt;ipsum&lt;/ex:A&gt; &lt;/ex:test&gt; </code></pre> <p>This is my code:</p> <pre><code> [XmlType(Namespace = "http://www.example.com/namespace")] [XmlRoot("ex", Namespace = "http://www.example.com/namespace")] public class TestSoapHeader : SoapHeader { private TestSoapHeaderTypeValuePair _a; public TestHeader() { MustUnderstand = true; } [XmlNamespaceDeclarations] public XmlSerializerNamespaces xmlsn { get { XmlSerializerNamespaces xsn = new XmlSerializerNamespaces(); xsn.Add("ex", "http://www.example.com/namespace"); return xsn; } set { } } public TestSoapHeaderTypeValuePair A { get { return _a; } set { _a = value; } } } [XmlType(Namespace = "http://www.example.com/namespace")] public class TestSoapHeaderTypeValuePair { private string _type; private string _value; [XmlNamespaceDeclarations] public XmlSerializerNamespaces xmlsn { get { XmlSerializerNamespaces xsn = new XmlSerializerNamespaces(); xsn.Add("ex", "http://www.example.com/namespace"); return xsn; } set { } } public TestSoapHeaderTypeValuePair(string type, string value) { Type = type; Value = value; } public TestSoapHeaderTypeValuePair() {} [System.Xml.Serialization.XmlAttributeAttribute("type", Namespace = "http://www.example.com/namespace")] public string Type { get { return _type; } set { _type = value; } } [System.Xml.Serialization.XmlText()] public string Value { get { return _value; } set { _value = value; } } } </code></pre> http://stackoverflow.com/questions/1872379/is-this-a-ie8-or-jquerys-bug/1872747#1872747 0 Answer by svinto for Is this a IE8 or jQuery's bug? svinto 2009-12-09T09:48:31Z 2009-12-09T09:48:31Z <p>I think you need to bind the events to <strong>select</strong> instead of option:</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-type" content="text/html; charset=utf-8" /&gt; &lt;meta http-equiv="Content-Language" content="en-us" /&gt; &lt;title&gt;International Properties&lt;/title&gt; &lt;script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;script type="text/javascript"&gt; $(function(){ $("select").bind("click contextmenu", function(){ alert(1); }); }); &lt;/script&gt; &lt;select size="2"&gt; &lt;option value="article1"&gt;test1&lt;/option&gt; &lt;option value="article2"&gt;test2&lt;/option&gt; &lt;/select&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1757805/jquery-event-only-every-time-interval/1757847#1757847 2 Answer by svinto for jQuery event only every time interval svinto 2009-11-18T17:52:00Z 2009-11-18T17:52:00Z <pre><code>$(function() { var timer = 0; $("#domain").change(function() { clearTimeout(timer); timer = setTimeout(function(){ // Do stuff here }, 2000); }); }); </code></pre> http://stackoverflow.com/questions/1735133/asp-file-download-of-asp-page-comes-instead-of-executing-it/1742072#1742072 1 Answer by svinto for ASP : File download of ASP page comes instead of executing it svinto 2009-11-16T13:02:25Z 2009-11-16T13:02:25Z <p>Make sure that the Active Server Pages web service extension is marked as Allow in the IIS settings on the server. (These are the terms from Windows 2003, in 2008 they might call it something else...)</p> http://stackoverflow.com/questions/1742010/jquery-select-all-checkboxes-within-current-table-only/1742022#1742022 0 Answer by svinto for JQuery - Select All CheckBoxes within current table only svinto 2009-11-16T12:52:10Z 2009-11-16T12:52:10Z <pre><code>$(this).closest("table").find("input:checkbox") </code></pre> <p>Note: It seems that all the select-all-in-this-table-checkboxes have the same <code>id</code>, the <code>id</code> should be unique within the page, you should use a class instead. (Or just <code>table th input</code>)</p> http://stackoverflow.com/questions/1737740/help-with-java-script-to-validate-the-files-in-a-folder/1737746#1737746 2 Answer by svinto for Help with java script - to validate the files in a folder svinto 2009-11-15T15:01:31Z 2009-11-15T15:01:31Z <p>No, that is not possible. (It would be a security problem if websites could access local files.)</p> http://stackoverflow.com/questions/1707793/how-do-i-schedule-regular-database-clean-up-tasks-in-classic-asp/1708765#1708765 1 Answer by svinto for How do I schedule regular database clean up tasks in Classic ASP? svinto 2009-11-10T15:23:13Z 2009-11-10T15:23:13Z <p>I'd do cleanup for single session in <code>Session_OnEnd</code> and for ALL sessions in <code>Application_OnStart</code>. If your all-sessions-cleanup is slow, you can do a ugly thing and put that cleanup in a separate asp-file that you make a http-request to using the XMLHTTP class, remember to not wait for the request to complete as it won't begin being served before all code in <code>Application_OnStart</code> is run.</p> http://stackoverflow.com/questions/1389144/library-of-interfaces-for-building-decoupled-things 0 Library of interfaces for building decoupled things svinto 2009-09-07T12:19:36Z 2009-10-31T04:34:16Z <p>I want open source assemblies with <strong>interfaces</strong> (but no implementations) of common things, such as logging, IoC/DI, etcetera. If this exists, it would be easier to mix and match bits and pieces of things together without having to write too much glue code.</p> <p>Example: If this existed, I would be able to for example create a asp.net mvc application and add any ORM, logging and IoC framework. I could then drop in references to third party assemblies with controllers and models and they would play nicely together. If I write my own interfaces, I would have to modify each of these. I don't want to modify, I want to 1. drop in, 2. configure and 3. use! Simple as that, shouldn't be harder.</p> <p>Have you heard/used/written of something like this?</p> http://stackoverflow.com/questions/1550150/how-to-limited-click-button-only-once-per-minute-in-javascript/1550156#1550156 2 Answer by svinto for How to limited 'click' button only once per minute in Javascript svinto 2009-10-11T08:08:52Z 2009-10-11T08:08:52Z <p>Use setTimeout.</p> http://stackoverflow.com/questions/1542750/why-does-classic-asp-post-a-multiple-select-list-with-a-space-between-values-wher/1542794#1542794 0 Answer by svinto for Why does Classic ASP Post a Multiple Select List with a space between values where ASP.Net doesn't? svinto 2009-10-09T09:31:01Z 2009-10-09T09:31:01Z <p>It sounds like you might do a replace to create a part of a valid SQL statement. If that is what you're doing, it's a really really bad idea since an evil visitor can use this to run any SQL statements they like. A better idea, for both classic ASP and ASP.net is to do a split on comma and use CLng or Convert.ParseInt32 to convert to number and build the SQL statement using that.</p> http://stackoverflow.com/questions/1536161/iphone-apis-to-access-sms-calendar-emails-call-logs/1536175#1536175 6 Answer by svinto for iPhone APIs to access SMS, calendar, emails, call logs? svinto 2009-10-08T07:32:29Z 2009-10-08T07:32:29Z <p>It's not possible due to the sandboxing on iPhone.</p> http://stackoverflow.com/questions/1507965/what-is-the-best-way-to-manage-array-or-arrays-in-classical-asp/1508778#1508778 0 Answer by svinto for What is the best way to manage array or arrays in classical ASP svinto 2009-10-02T10:30:42Z 2009-10-02T10:30:42Z <p>I would create a class to contain these, something like this:</p> <pre><code>Class Area Public Name Private _children Private Sub Class_Initialize() _children = Array() End Sub Public Property Get Children() Set Children = _children End Property Public Sub AddChild(newChild) ReDim Preserve _children(UBound(_children)+1) Set _children(UBound(_children)) = newChild End Sub End Class </code></pre> http://stackoverflow.com/questions/1503321/can-i-map-caps-lock-to-something-useful-for-the-delphi-ide/1503393#1503393 1 Answer by svinto for Can I map Caps Lock to something useful for the Delphi IDE? svinto 2009-10-01T11:28:02Z 2009-10-01T11:28:02Z <p>Can't you first map it some obscure non-modifier-key in the registry, then map that to the desired function in Delphi using the keyboard preferences thingy?</p> http://stackoverflow.com/questions/1503342/what-is-foobar/1503382#1503382 0 Answer by svinto for what is foobar? svinto 2009-10-01T11:24:54Z 2009-10-01T11:24:54Z <p>Sometimes, foo and bar is also used as dummy names for variables.</p> <p>(BTW, I thought the R was for recognition)</p> http://stackoverflow.com/questions/1491991/how-to-unwrap-tags/1492084#1492084 3 Answer by svinto for How to "unwrap" tags ? svinto 2009-09-29T11:55:40Z 2009-09-29T11:55:40Z <pre><code>var $table = $("center table"); var $center = $table.parent(); $table.insertBefore($center); $center.remove(); </code></pre> http://stackoverflow.com/questions/1487682/javascript-debuging-code-created-by-eval-and-new-function/1488221#1488221 0 Answer by svinto for Javascript: Debuging code created by eval() and new Function() svinto 2009-09-28T17:10:52Z 2009-09-28T17:10:52Z <pre><code>function objectbuilder(a){ return { get:function(s){ return s.toLowerCase() + a; } }; } function temp(){ return objectBuilder("A"); } var bObject=temp(); BObject.get("B"); // "bA" BObject.get(); </code></pre> http://stackoverflow.com/questions/1487738/encode-in-asp-and-decode-in-php/1487782#1487782 0 Answer by svinto for Encode in ASP and decode in PHP svinto 2009-09-28T15:44:36Z 2009-09-28T15:44:36Z <p>You will need more than one line of code per language for that.</p> <p>For ASP you can use a component called CAPICOM that is included with Windows, for PHP the encryption functions is among all other functions. The gotcha I remember from doing this is that the input to capicom is sent as unicode per default. Your best bet is probably to convert the unicode to ascii or something when you get it back from the decryption function in PHP.</p> http://stackoverflow.com/questions/1476943/how-to-implement-permissions-in-a-blogging-system/1476964#1476964 1 Answer by svinto for How to implement permissions in a blogging system? svinto 2009-09-25T12:12:00Z 2009-09-25T12:12:00Z <p>I'd go with a combination of a decoupled authentication component, that you can ask if the current user has the role X, and if so allow them to do the thing. That way you can leave the specifics of groups and expiry etcetera to the authentication component.</p> <p>You could combine this with some specialized authentication for your blogging engine, eg. having a list of posters in the blog object, and always allowing those persons to make posts.</p> http://stackoverflow.com/questions/1445480/where-to-put-data-needed-in-several-partialviews/1445515#1445515 0 Answer by svinto for Where to put Data needed in several PartialViews svinto 2009-09-18T16:08:35Z 2009-09-18T16:08:35Z <p>No, TempData is for sending information to the next requests, in this case, there's only one request.</p> <p>If the boxes are more or less the same size, I'd output them as divs and use css float:left; to position them next to each other. That way when a box doesn't fit, it'll fall down to the next line.</p> <p>If you want to send additional data to your PartialView, you should create a ViewModel class containing two properties; one for the index and one for the article. To output the article grid you probably want to create a html helper method to move logic from the view.</p> http://stackoverflow.com/questions/1441726/asp-search-and-results-in-a-single-page/1443662#1443662 0 Answer by svinto for ASP Search and Results in a single page svinto 2009-09-18T10:17:57Z 2009-09-18T10:17:57Z <p>You probably want to display what the user searched for in the form when you display the result:</p> <pre><code>&lt;label&gt;Street: &lt;input type="text" name="searchStreet" value="&lt;%=Server.HtmlEncode(Request("searchStreet") &amp; "") %&gt;" /&gt;&lt;/label&gt; </code></pre> <p>Adding a empty string is for casting to string to not give an error when the key wasn't found, eg. on first visit.</p> <p>If you want to you can make the loop prettier:</p> <pre><code>do until myRecordSet.EOF %&gt; &lt;div class='result'&gt;") &lt;dl&gt;&lt;%=myRecordSet("ContentTitle")%&gt;&lt;dl&gt; &lt;dt&gt;&lt;%=myRecordSet("ContentStreet")%&gt;&lt;dt&gt; &lt;dt&gt;&lt;%=myRecordSet("ContentTown")%&gt;&lt;dt&gt; &lt;dt&gt;&lt;%=myRecordSet("ContentPostcode")%&gt;&lt;dt&gt; &lt;/div&gt;&lt;% myRecordSet.MoveNext loop </code></pre> <p>You probably want to Server.HtmlEncode there as well...</p> <p>(ps ASP is actually one year younger than PHP... if you want something modern you might want to look at python, ruby or asp.net mvc before PHP, as it's easier to write bad code in PHP than in any of those. ds)</p> http://stackoverflow.com/questions/1443550/iphone-lock-over-web/1443573#1443573 0 Answer by svinto for iPhone Lock over web svinto 2009-09-18T09:59:23Z 2009-09-18T09:59:23Z <p>This is not possible. (Unless you create something that mimics MobileMe and/or Exchange server as those can lock and wipe iPhones, unlocking isn't possible though.)</p> http://stackoverflow.com/questions/1410734/visual-basic-vs-dreamweaver-cs4/1410816#1410816 0 Answer by svinto for Visual Basic Vs Dreamweaver CS4 svinto 2009-09-11T13:18:51Z 2009-09-11T13:18:51Z <p>For what you're doing, I don't see a need for neither Visual Studio nor Dreamweaver. Why don't you check out <a href="http://www.panic.com/coda/" rel="nofollow">Coda</a> or <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a>?</p> <p>Visual Basic 6 = For development of Windows applications or COM-libraries Current version of Visual Studio = For development of anything .net including web apps with html, javascript etcetera. Dreamweaver = More a program for users than for developers, though I haven't used it in ages</p> http://stackoverflow.com/questions/1407162/what-is-yield-return-in-c/1407169#1407169 3 Answer by svinto for What is yield return in C#? svinto 2009-09-10T19:15:51Z 2009-09-10T19:15:51Z <p>The yield keyword is used when implementing enumerators.</p> <p><a href="http://firstclassthoughts.co.uk/csharp/csharp%5Fyield%5Freturn%5Fforeach.html" rel="nofollow">Here's a blog post with an example</a>.</p> http://stackoverflow.com/questions/649510/can-i-register-a-it-domain-name-for-a-company-outside-of-italy/649537#649537 0 Answer by svinto for Can I register a .it domain name for a company outside of Italy? svinto 2009-03-16T07:15:31Z 2009-09-09T21:21:52Z <p>According to their <a href="http://www.nic.it/en/faq/faq-nomi.html#nomi6" rel="nofollow">FAQ</a>, you need to have an office within EU.</p> http://stackoverflow.com/questions/1400820/jquery-to-wrap-elements/1400862#1400862 2 Answer by svinto for jquery to wrap elements svinto 2009-09-09T17:00:37Z 2009-09-09T17:00:37Z <p>Mighty work and might not be the smartest thing to do:</p> <pre><code>var $entries = $("#entries"); var $div = $('&lt;div&gt;&lt;/div&gt;').appendTo($entries); while($div.next().length &gt; 0){ $div.append($div.nextAll().slice(0,3)); $div = $('&lt;div&gt;&lt;/div&gt;').appendTo($entries); } </code></pre> http://stackoverflow.com/questions/1928140/detect-browser-through-javascript Comment by on Detect browser through javascript 2009-12-18T13:17:23Z 2009-12-18T13:17:23Z <a href="http://stackoverflow.com/questions/121280/how-do-i-detect-what-browser-is-used-to-access-my-site" rel="nofollow" title="how do i detect what browser is used to access my site">stackoverflow.com/questions/121280/&hellip;</a> <a href="http://stackoverflow.com/questions/588940/what-is-the-best-way-to-do-browser-detection-in-javascript" rel="nofollow" title="what is the best way to do browser detection in javascript">stackoverflow.com/questions/588940/&hellip;</a> http://stackoverflow.com/questions/1794719/capture-screenshot-of-website-on-the-client-javascript-or-flash/1914033#1914033 Comment by on Capture screenshot of website on the client (Javascript or flash) 2009-12-16T11:30:05Z 2009-12-16T11:30:05Z Please update your question instead since this isn't an answer. http://stackoverflow.com/questions/1794719/capture-screenshot-of-website-on-the-client-javascript-or-flash/1857587#1857587 Comment by on Capture screenshot of website on the client (Javascript or flash) 2009-12-16T11:29:32Z 2009-12-16T11:29:32Z Please update your question instead since this isn't an answer. http://stackoverflow.com/questions/1874295/how-do-i-get-the-xmlserializer-to-add-namespaces-to-attributes-in-nested-objects Comment by on How do I get the XMLSerializer to add namespaces to attributes in nested objects? 2009-12-09T15:00:40Z 2009-12-09T15:00:40Z @Will: Yeah I know, but it's one of those times when you cannot change things at the other end. :( http://stackoverflow.com/questions/1874295/how-do-i-get-the-xmlserializer-to-add-namespaces-to-attributes-in-nested-objects Comment by on How do I get the XMLSerializer to add namespaces to attributes in nested objects? 2009-12-09T14:59:27Z 2009-12-09T14:59:27Z @Paul: Sorry, I didn't want to expose the original names and replaced things and got it wrong. http://stackoverflow.com/questions/1872379/is-this-a-ie8-or-jquerys-bug/1872747#1872747 Comment by on Is this a IE8 or jQuery's bug? 2009-12-09T10:41:58Z 2009-12-09T10:41:58Z Not possible using selects and options. You need to make your own dropdown to make this work. http://stackoverflow.com/questions/1798545/how-to-escape-a-double-quote-in-inline-c-script-within-javascript Comment by on How to escape a double-quote in inline c# script within javascript? 2009-11-25T17:27:32Z 2009-11-25T17:27:32Z Unless the ClientID-property contains a quote, your code is fine. Or at lease the line you posted. http://stackoverflow.com/questions/1757805/jquery-event-only-every-time-interval/1757843#1757843 Comment by on jQuery event only every time interval 2009-11-18T22:44:28Z 2009-11-18T22:44:28Z @thenduks: Not it's not, it's never declared, thus it'll end up in the window object and that's a bad thing. http://stackoverflow.com/questions/1757805/jquery-event-only-every-time-interval/1757843#1757843 Comment by on jQuery event only every time interval 2009-11-18T17:53:09Z 2009-11-18T17:53:09Z Where is ajaxQueue declared? http://stackoverflow.com/questions/1739678/validating-user-input-with-javascript Comment by on Validating user input with JavaScript 2009-11-16T02:08:39Z 2009-11-16T02:08:39Z <a href="http://stackoverflow.com/questions/1344319/how-to-validate-input-using-javascript" rel="nofollow" title="how to validate input using javascript">stackoverflow.com/questions/1344319/&hellip;</a> http://stackoverflow.com/questions/1699632/how-can-i-write-below-programming-in-jquery/1699659#1699659 Comment by on How can I write below programming in jquery 2009-11-09T08:06:31Z 2009-11-09T08:06:31Z That code won't run. Error on first line. http://stackoverflow.com/questions/1613679/how-to-make-an-incremental-update-to-a-pdf Comment by on How to make an incremental update to a PDF 2009-10-23T14:06:02Z 2009-10-23T14:06:02Z Your question is very unclear, can you please elaborate? http://stackoverflow.com/questions/1529604/c-antipatterns/1529669#1529669 Comment by on C# Antipatterns 2009-10-07T20:21:44Z 2009-10-07T20:21:44Z Wouldn't those (Now and ToDay) give date objects with hours and minutes etcetera, where the example just has the date part? http://stackoverflow.com/questions/1509693/ive-learnt-jquery-should-i-go-back-and-learn-proper-js Comment by on I've learnt jQuery, should I go back and learn "proper js"? 2009-10-02T14:01:57Z 2009-10-02T14:01:57Z jQuery is a abstraction layer on top of the DOM, not so much on javascript, I'd say you're using proper javascript now.. http://stackoverflow.com/questions/1503321/can-i-map-caps-lock-to-something-useful-for-the-delphi-ide Comment by on Can I map Caps Lock to something useful for the Delphi IDE? 2009-10-01T11:27:05Z 2009-10-01T11:27:05Z ARE YOU SURE? I FIND IT REALLY USEFUL FOR DISCUSSIONS ON THE INTERWEBS.