User Zach - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T22:28:10Zhttp://stackoverflow.com/feeds/user/9128http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/489150/context-agnostic-javascript-testing-framework4Context agnostic JavaScript Testing FrameworkZach2009-01-28T20:21:43Z2009-09-22T12:41:32Z
<p>I'm looking for a JavaScript Testing Framework that I can easily use in whatever context, be it browser, console, XUL, etc.</p>
<p>Is there such a framework, or a way to easily retrofit an existing framework so its context agnostic?</p>
<p>Edit: The testing framework should <strong>not</strong> be tied to any other framework such as jQuery or Prototype.js and shouldn't depend on a DOM (or document object) being present. I'm looking for something to test <strong>pure JavaScript</strong>. </p>
http://stackoverflow.com/questions/1122690/jquery-and-questions/1122735#11227353Answer by Zach for jQuery and $ questionsZach2009-07-13T23:47:53Z2009-07-13T23:55:49Z<h1>1</h1>
<p>Are you missing some code at the end of that snippet? Usually the convention is to do this:</p>
<pre><code>jQuery.noConflict();
(function($){
$(document).ready(function() {
jQuery.fn.fixEmail = function() {
{
return $(this).each(function() {
var $s = $(this);
...code...
}
}
})(jQuery);
</code></pre>
<p>Notice at the bottom, jQuery is passed as a parameter to the function expression, so the $ is equal to jQuery, but only within that function expression.</p>
<h1>2</h1>
<p>They could have used jQuery, but they are probably relying on copy/pasted code that uses $.</p>
<h1>3</h1>
<p>I would probably refactor these to use a convention similar to the one I mention in #1. I'm not sure why they set $ equal to an object, but it has a bad smell to it.</p>
http://stackoverflow.com/questions/1117041/how-to-package-a-command-line-python-script4How to package a command line Python scriptZach2009-07-12T21:55:09Z2009-07-13T23:23:40Z
<p>I've created a python script that's intended to be used from the command line. How do I go about packaging it? This is my first python package and I've read a bit about setuptools, but I'm still not sure the best way to do this.</p>
<p><hr /></p>
<h1>Solution</h1>
<p>I ended up using <a href="http://peak.telecommunity.com/DevCenter/setuptools" rel="nofollow">setup.py</a> with the key configurations noted below:</p>
<pre><code>setup(
....
entry_points="""
[console_scripts]
mycommand = mypackage.mymodule:main
""",
....
)
</code></pre>
<p>Here's a good <a href="http://github.com/jsmits/github-cli/blob/c5b4166976bbf94fc3f929cc369ce094bc02b88e/setup.py" rel="nofollow">example</a> in context.</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954368#95436818Answer by Zach for Hidden Features of HTMLZach2009-06-05T05:19:15Z2009-06-05T05:19:15Z<p>You can use the <a href="http://joliclic.free.fr/html/object-tag/en/" rel="nofollow"><code>object</code></a> tag instead of an <code>iframe</code> to include another document in the page:</p>
<pre><code><object data="data/test.html" type="text/html" width="300" height="200">
alt : <a href="data/test.html">test.html</a>
</object>
</code></pre>
http://stackoverflow.com/questions/914076/posting-password-via-ajax-get-or-ajax-post/914128#9141280Answer by Zach for posting password via ajax.get or ajax.postZach2009-05-27T05:38:01Z2009-05-27T05:38:01Z<p>It is highly recommended to use SSL if at all possible. But, you could encrypt the password before sending it using <a href="http://pajhome.org.uk/crypt/md5/index.html" rel="nofollow">JavaScript crypto libraries</a>.</p>
http://stackoverflow.com/questions/119349/rails-performance-analyzers4Rails performance analyzersZach2008-09-23T06:13:35Z2009-05-13T20:13:11Z
<p>What are the preffered plugins for monitoring and analyzing the performance of a Rails app? I'm looking for both database/query analyzers and the rest of the stack if possible, though not necessarily all in one plugin. Which ones do you recommend?
( Bonus points for free ones :)</p>
<p>For example, <a href="http://railstips.org/2008/9/17/rails-app-monitoring" rel="nofollow">this one</a> looks spify.</p>
http://stackoverflow.com/questions/805340/how-do-i-use-javascript-for-number-formatting/805362#8053621Answer by Zach for How do I use JavaScript for number formatting?Zach2009-04-30T04:43:21Z2009-04-30T04:47:30Z<p><a href="https://developer.mozilla.org/En/Core%5FJavaScript%5F1.5%5FReference/Global%5FFunctions/ParseFloat" rel="nofollow">parseFloat</a> can convert a string to a float and <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/Number/toFixed" rel="nofollow">toFixed</a> can set how many decimal places to keep.</p>
<pre><code>function numToCurrency(num){
return parseFloat(num).toFixed(2);
}
numToCurrency("4.2334546") // returns 4.23
</code></pre>
http://stackoverflow.com/questions/690337/ie8-no-longer-allows-access-to-individual-characters-without-using-substr-functio/690377#6903775Answer by Zach for IE8 no longer allows access to individual characters without using substr function?Zach2009-03-27T16:09:19Z2009-03-27T16:09:19Z<p>That form of character access is not part of the ECMAScript standard, but is implemented by some VMs. I would go with charAt as RoBorg suggested and avoid unstandardized features.</p>
http://stackoverflow.com/questions/675161/is-it-possible-to-implement-properties-in-languages-other-than-c/675281#6752815Answer by Zach for Is it possible to implement properties in languages other than C#?Zach2009-03-23T21:21:40Z2009-03-23T21:21:40Z<p>In <a href="https://developer.mozilla.org/En/Core%5FJavaScript%5F1.5%5FGuide:Creating%5FNew%5FObjects:Defining%5FGetters%5Fand%5FSetters" rel="nofollow">JavaScript</a>:</p>
<pre><code>var object = {
// .. other property definitions ...
get length_inches(){ return this.length_metres * 39.0; },
set length_inches(value){ this.length_metres = value/39.0; }
};
</code></pre>
http://stackoverflow.com/questions/641713/yet-another-cross-frame-scripting-question-getting-selected-text/641765#6417650Answer by Zach for yet another cross frame scripting question - getting selected textZach2009-03-13T07:38:31Z2009-03-13T07:38:31Z<p>You could try the proxy method but insert a <a href="http://www.w3schools.com/TAGS/tag%5Fbase.asp" rel="nofollow">base</a> tag that points to the original domain. The paths should be taken care of then.</p>
<p>I wouldn't rely on any XSS hacks even if you could find them -- they'd likely be corrected and most likely not crossbrowser.</p>
http://stackoverflow.com/questions/596150/jquery-how-can-i-tell-if-an-element-matches-a-selector/596213#5962134Answer by Zach for JQuery: how can I tell if an element matches a selector?Zach2009-02-27T19:18:23Z2009-02-27T19:18:23Z<p>You can use the <a href="http://docs.jquery.com/Is" rel="nofollow"><code>is()</code></a> method:</p>
<pre><code>if($(this).is("p")){
// ...
}
</code></pre>
http://stackoverflow.com/questions/584907/javascript-better-way-to-add-dynamic-methods/584939#5849390Answer by Zach for Javascript: better way to add dynamic methods?Zach2009-02-25T06:24:58Z2009-02-25T06:24:58Z<p>Your example could be accomplished without strings:</p>
<pre><code>builder = function(fn, methods){
//method builder
for(p in methods){
fn[p] = methods[p];
}
return fn;
}
test = {}
test = builder(test, {'one': function(){ alert("one"); },'two':function(){ alert("two"); }} );
test.one();
test.two();
</code></pre>
<p>I'm not sure how you are assembling these methods, but avoid using strings if you can. There is probably a better way.</p>
http://stackoverflow.com/questions/513698/has-anyone-written-a-plugin-to-add-the-final-polish-to-activeresource/513776#5137762Answer by Zach for Has anyone written a plugin to add the final polish to ActiveResource?Zach2009-02-04T22:55:09Z2009-02-04T22:55:09Z<p>Ryan Daigle <a href="http://ryandaigle.com/articles/2008/11/10/implement-ruby-proxy-objects-with-roxy" rel="nofollow">proposed</a> to do something similar with his Roxy gem. From his teaser section:</p>
<blockquote>
<p>I hope to have an extension library up
soon that utilizes Roxy to provide
ActiveRecord-like association
definitions in ActiveResource.</p>
</blockquote>
<p>The example he gives shows how it wouldn't be too difficult to implement with <a href="http://github.com/yfactorial/roxy/tree/master" rel="nofollow">Roxy</a>.</p>
http://stackoverflow.com/questions/408582/setting-cross-domain-cookies-in-safari/486591#4865910Answer by Zach for Setting cross-domain cookies in SafariZach2009-01-28T05:50:09Z2009-02-04T04:22:37Z<p>Perhaps pragmatically create and click a link with an <code>href="A.com/setCookie?cache=1231213123"</code> and a target attribute pointing to a hidden iframe. That <em>may</em> bypass Safari's policy of user navigation for setting cookies (I don't have Safari handy to test.)</p>
http://stackoverflow.com/questions/507754/issues-with-dynamically-setting-style-overflow-in-firefox/508977#5089771Answer by Zach for Issues with dynamically setting style.overflow in FirefoxZach2009-02-03T21:31:05Z2009-02-03T21:31:05Z<p>Try it with document.body instead of document.documentElement. Setting CSS properties on the HTML element can give unexpected quirks.</p>
http://stackoverflow.com/questions/507944/suppress-keyboard-events-for-input-fields/508145#5081452Answer by Zach for suppress keyboard events for input fieldsZach2009-02-03T17:42:50Z2009-02-03T17:42:50Z<p>Create an onfocus handler for all input and textareas that sets some global variable indicating that keyboard events should be ignored. Create another handler for the blur event to reset the global variable.</p>
<pre><code>var DISABLE_KEY_HANDLERS = false;
$('input[type=text], input[type=password], textarea').focus(function(){
DISABLE_KEY_HANDLERS = true
})
$('input[type=text], input[type=password], textarea').blur(function(){
DISABLE_KEY_HANDLERS = false
})
</code></pre>
<p>In your key handlers you would just have to check if the value is true or not, and return if it is true.</p>
http://stackoverflow.com/questions/480335/javascript-question/497219#4972191Answer by Zach for JavaScript Question Zach2009-01-30T20:59:14Z2009-01-30T20:59:14Z<p>If you replace all references to <code>buttons/</code> with <code>/buttons/</code> (add a slash at the front) it should work for pages in subdirectories.</p>
<p>so</p>
<pre><code>CSInit[CSInit.length] = new Array (CSILoad,/*CMP*/'button',/*URL*/'buttons/hp2.gif',/*URL*/'buttons/hp2.gif',/*URL*/'','Home Page');
</code></pre>
<p>would become</p>
<pre><code>CSInit[CSInit.length] = new Array (CSILoad,/*CMP*/'button',/*URL*/'/buttons/hp2.gif',/*URL*/'/buttons/hp2.gif',/*URL*/'','Home Page');
</code></pre>
<p>and</p>
<pre><code><img src="buttons/hmc1.gif" width="96" height="18" name="button3" border="0" alt="Button3AltText"></a>
</code></pre>
<p>would become</p>
<pre><code><img src="/buttons/hmc1.gif" width="96" height="18" name="button3" border="0" alt="Button3AltText"></a>
</code></pre>
<p>and so on. You would only need one <code>buttons</code> directory at the root of the host.</p>
<p>Your editor should have a way to "Replace All" to make applying these changes less painful.</p>
http://stackoverflow.com/questions/494644/javascript-force-open-a-link-in-a-browser/494652#4946525Answer by Zach for Javascript force open a link in a browserZach2009-01-30T06:25:42Z2009-01-30T06:25:42Z<p>No. Definitely not without some browser plugin. This would be a huge security risk if it were possible.</p>
http://stackoverflow.com/questions/493045/rails-how-can-i-have-several-applications-use-the-same-authentication-system/493362#4933620Answer by Zach for [Rails] How can I have several applications use the same authentication system?Zach2009-01-29T20:52:05Z2009-01-29T20:52:05Z<p>OpenID was built to be decentralized, so you <em>could</em> in fact <a href="http://wiki.openid.net/Run_your_own_identity_server" rel="nofollow">host your own</a> OpenID provider for internal use. I see no need to reinvent the wheel if you are going a similar route.</p>
http://stackoverflow.com/questions/491792/semantic-stuff-rdf-owl-on-mobile-phones-is-it-possible/492862#4928620Answer by Zach for Semantic stuff (RDF, OWL) on mobile phones - is it possible?Zach2009-01-29T18:38:30Z2009-01-29T18:38:30Z<p>A more general answer to your question title is <a href="http://lexandera.com/mosembro/" rel="nofollow">Mosembro</a>, a browser for Android that utilizes Microformats for semantic data. It doesn't do any non-trivial computations with the data, however.</p>
http://stackoverflow.com/questions/492580/jquery-and-closure/492718#4927184Answer by Zach for jQuery and closure.Zach2009-01-29T18:05:42Z2009-01-29T18:05:42Z<p>JavaScript doesn't have block scope, so those variables you declare in the for loop have their values changed each iteration and all those functions reference the same variables. The trick is to create a new function scope within the for loop so that the variables you declare are bound during that iteration.</p>
<p>You can accomplish this by executing an anonymous function inside the loop:</p>
<pre><code>menuMouseOver = function() {
for(i=0, u=arguments.length; i<u; i++){
(function(){ // anonymous function to create new scope
var parent = arguments[i].parent;
var active = arguments[i].active;
var childSelect = arguments[i].childSelect;
console.log(active); //logs the correct active
$(parent).children(childSelect)
.not('.'+active).each( function(i, e) {console.log(active);})
//The above console.log logs the correct active
.hover( function() {
console.log(active); //this one always logs menu2_active
$(this).addClass(active);
}, function() {
$(this).removeClass(active);
});
})(); // execute the anonymous function
}
}
</code></pre>
<p>The way you had it before, all of you functions closed over the same variable references, and so used what ever the last value was, not the value of when the function was created. Using the function scope will have it behave as you intended.</p>
http://stackoverflow.com/questions/134655/differences-between-ruby-vms1Differences between Ruby VMsZach2008-09-25T17:18:29Z2009-01-29T17:48:09Z
<p>What are the advantages/disadvantages of the major Ruby VMs (things like features, compatibility, performance, and quirks?) I know there are also some bonus features like being able to use Java interfaces through JRuby, too. Those would also be helpful to note. Does any VM have a clear advantage at this point, and in what contexts?</p>
http://stackoverflow.com/questions/486349/dividing-long-list-of-li-tags-into-columns/486386#4863862Answer by Zach for Dividing long list of <li> tags into columns?Zach2009-01-28T03:28:17Z2009-01-28T03:28:17Z<p>In CSS3 this is <a href="http://www.quirksmode.org/css/multicolumn.html" rel="nofollow">possible</a>.</p>
<pre><code>#columns {
-moz-column-count: 3;
-moz-column-gap: 20px;
-webkit-column-count: 3;
-webkit-column-gap: 20px;
column-count: 3;
column-gap: 20px;
}
</code></pre>
<p>HTML:</p>
<pre><code><div id="columns">
<ul>
... lots of lis ...
</ul>
</div>
</code></pre>
<p>The list items will spill over into the next column as they exceed the height of the container.</p>
<p>Perhaps for older browser you could use JavaScript, as this seems to be more aesthetic than a critical feature.</p>
http://stackoverflow.com/questions/486028/what-exactly-is-programming/486332#4863321Answer by Zach for What exactly is programming?Zach2009-01-28T02:58:10Z2009-01-28T02:58:10Z<p>A program is just a long equation. Therefore, programming is the process of deriving that equation.</p>
<p>(concept from <a href="http://www.cs.utexas.edu/users/EWD/ewd10xx/EWD1036.PDF" rel="nofollow">Dijkstra</a>.)</p>
http://stackoverflow.com/questions/486271/dragover-mouse-event-contain-file-info-in-xul-application-using-javascript/486303#4863031Answer by Zach for dragover mouse event contain file info in XUL application using javascriptZach2009-01-28T02:46:29Z2009-01-28T02:46:29Z<p>These <a href="https://developer.mozilla.org/En/DragDrop/Drag_and_Drop" rel="nofollow">features</a> were added in <a href="http://www.mozilla.com/en-US/firefox/all-beta.html" rel="nofollow">Firefox 3.1</a>, and <a href="http://starkravingfinkle.org/blog/2009/01/unofficial-xulrunner-191-builds/" rel="nofollow">XULRunner 1.9.1</a>, so make sure you are using the correct version. Be aware these builds are still in beta.</p>
<p>The old API for drag and drop is <a href="https://developer.mozilla.org/en/Drag_and_Drop" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/476276/using-javascript-in-css/482088#4820883Answer by Zach for Using Javascript in CSSZach2009-01-27T01:51:46Z2009-01-27T01:51:46Z<p>IE and Firefox both contain ways to execute JavaScript from CSS. As Paolo mentions, one way in IE is the <code>expression</code> technique, but there's also the more obscure <strong>HTC behavior</strong>, in which a seperate XML that contains your script is loaded via CSS. A similar technique for Firefox exists, using <strong>XBL</strong>. These techniques don't exectue JavaScript from CSS <em>directly</em>, but the effect is the same. </p>
<h2>HTC with IE</h2>
<p>Use a CSS rule like so:</p>
<pre><code>body {
behavior:url(script.htc);
}
</code></pre>
<p>and within that script.htc file have something like:</p>
<pre><code><PUBLIC:COMPONENT TAGNAME="xss">
<PUBLIC:ATTACH EVENT="ondocumentready" ONEVENT="main()" LITERALCONTENT="false"/>
</PUBLIC:COMPONENT>
<SCRIPT>
function main()
{
alert("HTC script executed.");
}
</SCRIPT>
</code></pre>
<p>The HTC file executes the <code>main()</code> function on the event <code>ondocumentready</code> (referring to the HTC document's readiness.)</p>
<h2>XBL with Firefox</h2>
<p>Firefox supports a similar XML-script-executing hack, using XBL.</p>
<p>Use a CSS rule like so:</p>
<pre><code>body {
-moz-binding: url(script.xml#mycode);
}
</code></pre>
<p>and within your script.xml:</p>
<pre><code><?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl" xmlns:html="http://www.w3.org/1999/xhtml">
<binding id="mycode">
<implementation>
<constructor>
alert("XBL script executed.");
</constructor>
</implementation>
</binding>
</bindings>
</code></pre>
<p>All of the code within the constructor tag will be executed (a good idea to wrap code in a CDATA section.)</p>
<p>In both techniques, <strong>the code doesn't execute unless the CSS selector matches an element within the document</strong>. By using something like <code>body</code>, it will execute immediately on page load.</p>
http://stackoverflow.com/questions/481252/mute-audio-from-javascript/481577#4815771Answer by Zach for Mute Audio from Javascript?Zach2009-01-26T22:06:06Z2009-01-26T22:06:06Z<p>You could try removing the autostart attribute on the <code>embed</code> element or setting it to false.</p>
http://stackoverflow.com/questions/480735/select-all-contents-of-textbox-when-it-receives-focus-javascript-or-jquery/480756#4807563Answer by Zach for select all contents of textbox when it receives focus (Javascript or jQuery)Zach2009-01-26T18:06:17Z2009-01-26T18:06:17Z<pre><code><input type="text" onfocus="this.select()" />
</code></pre>
http://stackoverflow.com/questions/478815/prototype-js-and-associative-arrays/478868#4788680Answer by Zach for Prototype.js and associative arraysZach2009-01-26T04:50:50Z2009-01-26T06:01:41Z<p>Use the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Object/hasOwnProperty" rel="nofollow">hasOwnProperty</a> method, which will only return true for properties you have defined on the object instance:</p>
<pre><code> for (var option in menu[subMenu]){
if(menu[subMenu].hasOwnProperty(option)){
html+=menu[subMenu][option]+'html'+subMenu+option;
}
}
</code></pre>
http://stackoverflow.com/questions/478855/when-would-you-use-xml-over-json-for-ajax/478877#4788771Answer by Zach for When would you use XML over JSON for Ajax?Zach2009-01-26T04:56:54Z2009-01-26T04:56:54Z<p>If you were going to do XSLT conversions on the client side.</p>
http://stackoverflow.com/questions/1586601/why-are-ruby-projects-so-dominant-at-github/1669828#1669828Comment by Zach on Why are ruby projects so dominant at Github?Zach2009-11-06T03:02:05Z2009-11-06T03:02:05ZSave typcasting for the code...http://stackoverflow.com/questions/1144423/jquery-selectors-for-plain-javascript-objects-instead-of-dom-elements/1144617#1144617Comment by Zach on jquery selectors for plain javascript objects instead of DOM elementsZach2009-07-18T01:46:33Z2009-07-18T01:46:33ZModifying Object.prototype is very dubious. I'd recommended against it 99.999% of the time.http://stackoverflow.com/questions/134845/href-for-javascript-links-or-javascriptvoid0/134865#134865Comment by Zach on Href for Javascript links: "#" or "javascript:void(0)"?Zach2009-07-13T23:08:02Z2009-07-13T23:08:02ZMy web apps are designed to degrade gracefully, so the link will still be a useful page. Unless your web app is a chat client or something that interactive, this should work if you put in the time to design with degradation in mind.http://stackoverflow.com/questions/1117041/how-to-package-a-command-line-python-scriptComment by Zach on How to package a command line Python scriptZach2009-07-12T23:15:28Z2009-07-12T23:15:28ZIdeally, *nix or windows.http://stackoverflow.com/questions/1117041/how-to-package-a-command-line-python-script/1117081#1117081Comment by Zach on How to package a command line Python scriptZach2009-07-12T22:35:59Z2009-07-12T22:35:59ZIt consists of two python files. I want to package it to be distributed on PiPy, for example, and installed with easy_install.http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/347124#347124Comment by Zach on What are five things you hate about your favorite language?Zach2009-07-11T22:38:03Z2009-07-11T22:38:03ZFor <code>null</code> and <code>undefined</code>: sometimes you really want to know if the variable has been assigned a value or not. Since null is a value, undefined is the only way to tell. Granted, the only time I've found this useful was for creating getter/setter functions.http://stackoverflow.com/questions/954327/hidden-features-of-html/954368#954368Comment by Zach on Hidden Features of HTMLZach2009-06-29T01:59:53Z2009-06-29T01:59:53ZI believe it uses SOP, same as with iframes.http://stackoverflow.com/questions/954327/hidden-features-of-html/960139#960139Comment by Zach on Hidden Features of HTMLZach2009-06-29T01:57:47Z2009-06-29T01:57:47ZYes, error codes like 404 would trigger the event.http://stackoverflow.com/questions/954327/hidden-features-of-html/954368#954368Comment by Zach on Hidden Features of HTMLZach2009-06-10T04:27:51Z2009-06-10T04:27:51Ziframe is not deprecated in HTML 5.http://stackoverflow.com/questions/958908/how-do-you-reverse-a-string-in-place-in-javascript/958915#958915Comment by Zach on How do you reverse a string in place in JavaScript?Zach2009-06-06T03:33:45Z2009-06-06T03:33:45ZI made an edit to convert str to an array first because str[i] on a string is non standard and doesn't work in some js engines.http://stackoverflow.com/questions/805340/how-do-i-use-javascript-for-number-formatting/805362#805362Comment by Zach on How do I use JavaScript for number formatting?Zach2009-04-30T04:57:07Z2009-04-30T04:57:07ZThis actually doesn't do what your question originally intended... but could be merged into a more complete answer. I'll leave it up if it's useful.http://stackoverflow.com/questions/674700/regarding-javascript-for-loop-voodoo/674808#674808Comment by Zach on Regarding JavaScript for() loop voodoo...Zach2009-03-23T21:49:29Z2009-03-23T21:49:29ZYou switched to C mid answer?!http://stackoverflow.com/questions/597630/understanding-javascript-resource/597640#597640Comment by Zach on Understanding JavaScript - ResourceZach2009-02-28T09:03:41Z2009-02-28T09:03:41ZThere are plenty of class implementations in JS, if you're into that sort of thing. I like prototypal inheritance myself.http://stackoverflow.com/questions/512466/how-to-implement-an-abstract-class-in-rubyComment by Zach on How to implement an abstract class in ruby?Zach2009-02-04T17:41:44Z2009-02-04T17:41:44ZModules can be mixed in, but I supposed you need classical inheritance for some other reason?http://stackoverflow.com/questions/507944/suppress-keyboard-events-for-input-fields/508145#508145Comment by Zach on suppress keyboard events for input fieldsZach2009-02-04T17:13:29Z2009-02-04T17:13:29Zlive() doesn't support focus yet.