User Borgar - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T20:46:05Z http://stackoverflow.com/feeds/user/27388 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1978098/how-can-i-position-fixed-a-div-properly/1978302#1978302 0 Answer by Borgar for How can I "position: fixed" a div properly? Borgar http://stackoverflow.com/users/27388 2009-12-30T03:45:13Z 2009-12-30T03:45:13Z <p>The simplest way is to position it like the main content and then use margin to shift it to the side:</p> <pre><code>.floating_price_box { position:fixed; width: 200px; border: solid 1px black; height: 400px; top: 50px; /*left: 1000px;*/ margin-left : 700px; /* main column width */ } </code></pre> http://stackoverflow.com/questions/1603617/sorting-divs-in-jquery-by-custom-sort-order/1604077#1604077 0 Answer by Borgar for Sorting Divs in jQuery by Custom Sort Order Borgar http://stackoverflow.com/users/27388 2009-10-21T22:43:33Z 2009-10-21T22:53:10Z <p>It's seems fairly direct to use the <code>sort</code> method for this one:</p> <pre><code>var category_sort_order = ['any', 'product', 'download']; // select your categories $('#input &gt; div') // filter the selection down to wanted items .filter(function(){ // get the categories index in the sort order list ("weight") var w = $.inArray( $(this).attr('category'), category_sort_order ); // in the sort order list? if ( w &gt; -1 ) { // this item should be sorted, we'll store it's sorting index, and keep it $( this ).data( 'sortindex', w ); return true; } else { // remove the item from the DOM and the selection $( this ).remove(); return false; } }) // sort the remainder of the items .sort(function(a, b){ // use the previously defined values to compare who goes first return $( a ).data( 'sortindex' ) - $( b ).data( 'sortindex' ); }) // reappend the selection into it's parent node to "apply" it .appendTo( '#input' ); </code></pre> <p>If you happen to be using an old version of jQuery (1.2) that doesn't have the <code>sort</code> method, you can add it with this:</p> <pre><code>jQuery.fn.sort = Array.prototype.sort; </code></pre> http://stackoverflow.com/questions/1576182/getting-elements-that-exceed-the-maxium-value-javascript-jquery/1578941#1578941 0 Answer by Borgar for Getting elements that exceed the maxium value. JAVASCRIPT/JQUERY Borgar http://stackoverflow.com/users/27388 2009-10-16T15:57:51Z 2009-10-16T15:57:51Z <p>Here is how I would deal with it:</p> <pre><code>// given these values: var ul = $("ul"); var maxWidth = 200; // the total width counter var acc = 0; // find the li's and use the map (or filter) function to filter away unwanted elements var overflow = ul.find('li').map(function(){ // add current elm's width to our total acc += $(this).outerWidth(); // within bounds - return nothing if ( acc &lt; maxWidth ) { return null; } // limit reached - return element else { return this; } }); // we are left with only the "overflow" elements... overflow.hide(); </code></pre> http://stackoverflow.com/questions/1575642/placing-a-small-arrow-over-a-letter-with-css/1575808#1575808 3 Answer by Borgar for Placing a small arrow over a letter with css Borgar http://stackoverflow.com/users/27388 2009-10-16T00:16:25Z 2009-10-16T10:25:26Z <p>The arrow is a part of the content and belongs in the HTML. You should be able to remove the JavaScript and CSS and the text should still make sense (let's say you decide to print out the page).</p> <p>You should use the <a href="http://www.fileformat.info/info/unicode/char/20d7/index.htm" rel="nofollow">COMBINING RIGHT ARROW ABOVE</a> with the vector letter to represent the full vector glyph.</p> <p>I propose the following markup:</p> <pre><code>&lt;var class="vector"&gt;v&lt;span&gt;&amp;#8407;&lt;/span&gt;&lt;/var&gt; </code></pre> <p>For extra nice representation you can then shift the symbol back over the letter with a touch of CSS:</p> <pre><code>var.vector { font-style : normal; } var.vector span { margin-left: -.55em; /* shift the arrow back over the letter */ vertical-align : .2em; /* tune the arrow vertical position */ } </code></pre> <p>Here is <a href="http://jsbin.com/uqiye3" rel="nofollow">a jsbin example</a>.</p> http://stackoverflow.com/questions/1533829/how-to-have-member-variables-and-public-methods-in-a-jquery-plugin/1534676#1534676 0 Answer by Borgar for How to have member variables and public methods in a jQuery plugin? Borgar http://stackoverflow.com/users/27388 2009-10-07T22:57:05Z 2009-10-07T22:57:05Z <p>Here is a template that I am experimenting with when building more complex widget plugins: </p> <pre><code>(function($){ // configuration, private helper functions and variables var _defaultConfig = { /* ... config ... */ }, _version = 1; // the main controller constructor $.myplugin = function ( elm, config ) { // if this contructor wasn't newed, then new it... if ( this === window ) { return new $.myplugin( elm, config || {} ); } // store the basics this.item = $( elm ); this.config = new $.myplugin.config( config ); // don't rerun the plugin if it is already present if ( this.item.data( 'myplugin' ) ) { return; } // register this controlset with the element this.item.data( 'myplugin', this ); // ... more init ... }; $.myplugin.version = _version; $.myplugin.config = function ( c ) { $.extend( this, $.myplugin.config, c ); }; $.myplugin.config.prototype = _defaultConfig; $.myplugin.prototype = { /* ... "public" methods ... */ }; // expose as a selector plugin $.fn.myplugin = function ( config ) { return this.each(function(){ new $.myplugin( this, config ); }); }; })(jQuery); </code></pre> <p>I put the default config and version at the top simply because it the most likely thing anyone reading the code is seeking. Most of the time you just want to examine the settings block. </p> <p>This will expose "myplugin" in two places, as a constructor for the widget's "controller" on <code>$</code> and as a collection method on <code>$.fn</code>. As you can see <code>$.fn</code> method doesn't really do anything except instanciate new controllers.</p> <p>The config is a prototypally inherited object where the default is the prototype. This give extended flexibility with asigining values as you may assign the "next" defaults into <code>$.myplugin.config</code>, or alter every running plugin's default with <code>$.myplugin.config.prototype</code>. This does require you to allways assign into these with $.extend or you will break the system. More code could counter that, but I prefer to know what I'm doing. :-)</p> <p>The instance of the controller is binds itself to the element through jQuery's <code>data()</code> method, and in fact uses it to test that it isn't run twice on the same element (although you might want to allow reconfiguring it).</p> <p>This gives you the following interface to the controller:</p> <pre><code>// init: $( 'div#myid' ).myplugin(); // call extraMethod on the controller: $( 'div#myid' ).data('myplugin').extraMethod(); </code></pre> <p>The biggest flaw on this approach is that it is a bit of a pain to maintain the "this" context with every event assignment. Until context for events arrives in jQuery this needs to be done with a liberal amount of closures.</p> <p>Here is a rough example of how an (incomplete and useless) plugin might look:</p> <pre><code>(function($){ // configuration, private helper functions and variables var _defaultConfig = { openOnHover: true, closeButton: '&lt;a href="#"&gt;Close&lt;/a&gt;', popup: '&lt;div class="wrapper"&gt;&lt;/div&gt;' }, _version = 1; // the main controller constructor $.myplugin = function ( elm, config ) { // if this contructor wasn't newed, then new it... if ( this === window ) { return new $.myplugin( elm, config || {} ); } this.item = $( elm ); this.config = new $.myplugin.config( config ); if ( this.item.data( 'myplugin' ) ) { return; } this.item.data( 'myplugin', this ); // register some events var ev = 'click' + ( this.config.openOnHover ) ? ' hover' : ''; this.item.bind(ev, function (e) { $( this ).data( 'myplugin' ).openPopup(); }); }; $.myplugin.version = _version; $.myplugin.config = function ( c ) { $.extend( this, $.myplugin.config, c ); }; $.myplugin.config.prototype = _defaultConfig; $.myplugin.prototype = { openPopup: function () { var C = this.config; this.pop = $( C.popup ).insertAfter( this.item ); this.pop.text( 'This says nothing' ); var self = this; $( C.closeButton ) .appendTo( pop ) .bind('click', function () { self.closePopup(); // closure keeps context return false; }); return this; // chaining }, closePopup: function () { this.pop.remove(); this.pop = null; return this; // chaining } }; // expose as a selector plugin $.fn.myplugin = function ( config ) { return this.each(function(){ new $.myplugin( this, config ); }); }; })(jQuery); </code></pre> http://stackoverflow.com/questions/1532739/addeventlistener-in-canvas-tag/1532961#1532961 1 Answer by Borgar for addEventListener in Canvas tag Borgar http://stackoverflow.com/users/27388 2009-10-07T17:11:00Z 2009-10-07T17:11:00Z <p>You cannot attach DOM events to things other than DOM objects (elements). The <code>canvas</code> is a DOM element, the things you are drawing to the canvas are not. They become a part of the canvas as pixels of an img.</p> <p>In order to detect a click on a specific point on your canvas you must attach the click event on the canvas element, and then compare the x/y coordinates of the click event with the coordinates of your canvas.</p> <p>This was answered in: "<a href="http://stackoverflow.com/questions/55677/how-do-i-get-the-coordinates-of-a-mouse-click-on-a-canvas-element">How do I get the coordinates of a mouse click on a canvas element?</a>"</p> http://stackoverflow.com/questions/222581/python-script-for-minifying-css/223689#223689 16 Answer by Borgar for Python script for minifying CSS? Borgar http://stackoverflow.com/users/27388 2008-10-21T22:05:06Z 2009-09-29T12:47:04Z <p>This seemed like a good task for me to get into python, which has been pending for a while. I hereby present my first ever python script:</p> <pre><code>import sys, re css = open( sys.argv[1] , 'r' ).read() # remove comments - this will break a lot of hacks :-P css = re.sub( r'\s*/\*\s*\*/', "$$HACK1$$", css ) # preserve IE&lt;6 comment hack css = re.sub( r'/\*[\s\S]*?\*/', "", css ) css = css.replace( "$$HACK1$$", '/**/' ) # preserve IE&lt;6 comment hack # url() doesn't need quotes css = re.sub( r'url\((["\'])([^)]*)\1\)', r'url(\2)', css ) # spaces may be safely collapsed as generated content will collapse them anyway css = re.sub( r'\s+', ' ', css ) # shorten collapsable colors: #aabbcc to #abc css = re.sub( r'#([0-9a-f])\1([0-9a-f])\2([0-9a-f])\3(\s|;)', r'#\1\2\3\4', css ) # fragment values can loose zeros css = re.sub( r':\s*0(\.\d+([cm]m|e[mx]|in|p[ctx]))\s*;', r':\1;', css ) for rule in re.findall( r'([^{]+){([^}]*)}', css ): # we don't need spaces around operators selectors = [re.sub( r'(?&lt;=[\[\(&gt;+=])\s+|\s+(?=[=~^$*|&gt;+\]\)])', r'', selector.strip() ) for selector in rule[0].split( ',' )] # order is important, but we still want to discard repetitions properties = {} porder = [] for prop in re.findall( '(.*?):(.*?)(;|$)', rule[1] ): key = prop[0].strip().lower() if key not in porder: porder.append( key ) properties[ key ] = prop[1].strip() # output rule if it contains any declarations if properties: print "%s{%s}" % ( ','.join( selectors ), ''.join(['%s:%s;' % (key, properties[key]) for key in porder])[:-1] ) </code></pre> <p>I believe this to work, and output it tests fine on recent Safari, Opera, and Firefox. It will break CSS hacks other than the underscore &amp; /**/ hacks! Do not use a minifier if you have a lot of hacks going on (or put them in a separate file).</p> <p>Any tips on my python appreciated. Please be gentle though, it's my first time. :-)</p> http://stackoverflow.com/questions/1489624/modifying-document-location-hash-without-page-scrolling/1489802#1489802 3 Answer by Borgar for Modifying document.location.hash without page scrolling Borgar http://stackoverflow.com/users/27388 2009-09-28T23:06:50Z 2009-09-28T23:06:50Z <p>Step 1: You need to defuse the node ID, until the hash has been set. This is done by removing the ID off the node while the hash is being set, and then adding it back on.</p> <pre><code>hash = hash.replace( /^#/, '' ); var node = $( '#' + hash ); if ( node.length ) { node.attr( 'id', '' ); } document.location.hash = hash; if ( node.length ) { node.attr( 'id', hash ); } </code></pre> <p>Step 2: Some browsers will trigger the scroll based on where the ID'd node was last seen so you need to help them a little. You need to add an extra <code>div</code> to the top of the viewport, set its ID to the hash, and then roll everything back:</p> <pre><code>hash = hash.replace( /^#/, '' ); var fx, node = $( '#' + hash ); if ( node.length ) { fx = $( '&lt;div&gt;&lt;/div&gt;' ) .css({ position:'absolute', visibility:'hidden', top: $.scroll().top + 'px' }) .attr( 'id', hash ) .appendTo( document.body ); node.attr( 'id', '' ); } document.location.hash = hash; if ( node.length ) { fx.remove(); node.attr( 'id', hash ); } </code></pre> <p>Step 3: Wrap it in a plugin and use that instead of writing to <code>location.hash</code>... </p> http://stackoverflow.com/questions/1411242/any-jquery-plugin-update-manager-utility/1449649#1449649 1 Answer by Borgar for Any jQuery Plugin Update Manager Utility? Borgar http://stackoverflow.com/users/27388 2009-09-19T22:03:35Z 2009-09-19T22:03:35Z <p>Instead of adding in one more tool, I suggest you do this with one you are already using: The version control system. Most decent version control software supports external includes which you can use to keep your plugins up to date.</p> <p>Say we want to include the latest <em>mousewheel</em> plugin in our SVN project, in your plugins folder do:</p> <pre><code>svn propset svn:externals "mwheel http://jqueryjs.googlecode.com/svn/tags/plugins/mousewheel/3.0/" . svn commit svn update </code></pre> <p>This will create a folder called <em>mwheel</em> and keep it updated with whatever is in the remote repository whenever you update locally.</p> http://stackoverflow.com/questions/1446815/input-focus-weirdness-when-pressing-tab-key-on-a-form-where-change-handlers-on-se/1447387#1447387 1 Answer by Borgar for input focus weirdness when pressing tab key on a form where change handlers on select elements enable or disable inputs Borgar http://stackoverflow.com/users/27388 2009-09-19T01:00:46Z 2009-09-19T01:00:46Z <p>My guess is that your problem is that due to differences in the sequence of events between browsers, the change event is getting fired after the focus has moved.</p> <p>There are 4 events fired: <code>keydown</code>, <code>keyup</code>, <code>keypress</code>, and, <code>change</code>.</p> <p>Let's say that the browser moves the focus when <code>keypress</code> occurs. Then it matters what the sequence looks like:</p> <ol> <li><code>keydown</code></li> <li><code>keyup</code></li> <li><code>change</code> <em>[element is enabled/disabled]</em></li> <li><code>keypress</code> <em>[focus moves]</em></li> </ol> <p>Would work just fine. But if the sequence looks like this:</p> <ol> <li><code>keydown</code></li> <li><code>keyup</code></li> <li><code>keypress</code> <em>[focus moves]</em></li> <li><code>change</code> <em>[element is enabled/disabled]</em></li> </ol> <p>Then the change event is occurring to late for the focus to take the state of the element into account.</p> <p>You can log out the events to verify this:</p> <pre><code>$("#enabler").bind('change click keypress keydown keypress blur', function(e) { console.log( e.type ); }); </code></pre> <p>The simplest solution would be to add the enable/disable handler to more events: </p> <pre><code>$("#enabler").bind('change click keypress', function() { $enabler = $(this); $("#target").attr("disabled", $enabler.val() == "0"); }); </code></pre> http://stackoverflow.com/questions/1374643/use-preg-replace-to-replace-character-unless-an-escape-character-precedes/1374872#1374872 1 Answer by Borgar for use preg_replace to replace character unless an escape character precedes Borgar http://stackoverflow.com/users/27388 2009-09-03T17:40:03Z 2009-09-03T17:40:03Z <p>For completeness:</p> <p>There another way to do this if your regexp engine is primitive and doesn't know how to do <a href="http://stackoverflow.com/questions/1374643/use-pregreplace-to-replace-character-unless-an-escape-character-precedes/1374738#1374738">negative lookbehinds</a> (which is not the case with PHP):</p> <pre><code>$str = preg_replace( "/(^|[^\\\\])\\[/", '$1{', $str ); </code></pre> <p>This captures the preceding character, which is restricted to <code>^</code> (start) or <code>[^\]</code> (any non-slash), and passes it through the replace.</p> http://stackoverflow.com/questions/1353684/detecting-an-invalid-date-date-instance-in-javascript/1353711#1353711 3 Answer by Borgar for Detecting an "invalid date" Date instance in JavaScript Borgar http://stackoverflow.com/users/27388 2009-08-30T11:48:13Z 2009-08-30T11:48:13Z <p>Here's how I would do it:</p> <pre><code>if ( Object.prototype.toString.call(d) === "[object Date]" ) { // it is a date if ( isNaN( d.getTime() ) ) { // d.valueOf() could also work // date is not valid } else { // date is valid } } else { // not a date } </code></pre> http://stackoverflow.com/questions/1314382/why-cant-javascript-find-and-replace-strings-containing-spaces-in-the-url/1314880#1314880 2 Answer by Borgar for Why can't javascript find and replace strings containing spaces in the url? Borgar http://stackoverflow.com/users/27388 2009-08-22T01:41:43Z 2009-08-22T01:41:43Z <p>Add a regular expression escape function:</p> <pre><code>RegExp.escape = function ( s ) { return s.replace(/([.*+?^${}()|[\]\/\\])/g, '\\$1'); }; </code></pre> <p>When building regular expressions from strings, you should escape the strings like this:</p> <pre><code>function removeCriterion(criterionText) { var getData = new RegExp("&amp;" + RegExp.escape(criterionText) + "|\\?" + RegExp.escape(criterionText) + "$|" + RegExp.escape(criterionText) + "&amp;", "gi"); window.location = window.location.toString().replace(getData,""); } </code></pre> <p>Regular expression operators, such as plus, should now stop causing trouble.</p> http://stackoverflow.com/questions/1280660/given-an-x-y-coordinate-i-need-to-find-all-html-elements-underneath-it/1280862#1280862 1 Answer by Borgar for Given an x,y coordinate, I need to find all html elements underneath it. Borgar http://stackoverflow.com/users/27388 2009-08-15T00:52:05Z 2009-08-15T00:52:05Z <p>You might be looking for the <a href="http://www.quirksmode.org/dom/w3c%5Fcssom.html#t20" rel="nofollow"><code>elementFromPoint</code></a> method that exists in MSIE, FF3+ and in some form in Safari and Opera. It may be also worth taking a look at <a href="http://ejohn.org/blog/getboundingclientrect-is-awesome/" rel="nofollow"><code>getBoundingClientRect</code></a>. Combine the two and you should be in business.</p> <p>You might also be able to speed up approach #1 by keeping the calculated structure between lookups and only recalculate it when changes actually occur on the page. Take a look at how selector engines (Sizzle in paticular) cache their lookups and expires the cache when the DOM changes. </p> <p>It may seem contrived, but calculating every element's position is what drag-and-drop handlers have been doing up until now. There are a dozen free ones out there that have this stuff properly optimized (my hunch is that YUI's will have the most readable code). These may be dated though or trying to support browsers that you don't want/need to. </p> http://stackoverflow.com/questions/1227391/what-cross-browser-charting-packages-are-available/1280564#1280564 1 Answer by Borgar for What cross-browser charting packages are available? Borgar http://stackoverflow.com/users/27388 2009-08-14T22:49:15Z 2009-08-14T22:49:15Z <p>Another Flash &amp; cash solution is <a href="http://www.amcharts.com/" rel="nofollow">amCharts</a>. </p> http://stackoverflow.com/questions/1280378/repeating-ids-of-element-children/1280416#1280416 3 Answer by Borgar for repeating id's of element children Borgar http://stackoverflow.com/users/27388 2009-08-14T21:54:49Z 2009-08-14T21:54:49Z <p><a href="http://www.w3.org/TR/html401/struct/global.html#h-7.5.2" rel="nofollow">Read the spec</a>:</p> <blockquote> <p>This attribute [id] assigns a name to an element. This name <strong>must be unique</strong> in a document.</p> </blockquote> http://stackoverflow.com/questions/1240408/reading-bytes-from-javascript-string/1242596#1242596 1 Answer by Borgar for Reading bytes from JavaScript string Borgar http://stackoverflow.com/users/27388 2009-08-07T02:27:19Z 2009-08-07T02:27:19Z <p>I believe that you can can do this with relatively simple bit operations:</p> <pre><code>function stringToBytes ( str ) { var ch, st, re = []; for (var i = 0; i &lt; str.length; i++ ) { ch = str.charCodeAt(i); // get char st = []; // set up "stack" do { st.push( ch &amp; 0xFF ); // push byte to stack ch = ch &gt;&gt; 8; // shift value down by 1 byte } while ( ch ); // add stack contents to result // done because chars have "wrong" endianness re = re.concat( st.reverse() ); } // return an array of bytes return re; } stringToBytes( "A\u1242B\u4123C" ); // [65, 18, 66, 66, 65, 35, 67] </code></pre> <p>It should be a simple matter to sum the output up by reading the byte array as if it were memory and adding it up into larger numbers:</p> <pre><code>function getIntAt ( arr, offs ) { return (arr[offs+0] &lt;&lt; 24) + (arr[offs+1] &lt;&lt; 16) + (arr[offs+2] &lt;&lt; 8) + arr[offs+3]; } function getWordAt ( arr, offs ) { return (arr[offs+0] &lt;&lt; 8) + arr[offs+1]; } '\\u' + getWordAt( stringToBytes( "A\u1242" ), 1 ).toString(16); // "1242" </code></pre> http://stackoverflow.com/questions/1235300/js-test-for-target-support/1236211#1236211 1 Answer by Borgar for JS Test for :target support Borgar http://stackoverflow.com/users/27388 2009-08-05T23:02:57Z 2009-08-05T23:02:57Z <p>You can test for CSS support by adding a rule like <code>#someid:target { visibility:hidden; color:#abcdef; }</code> and then setting the target to <code>#someid</code>, reading if the color is <code>#abcdef</code>, and then reseting the hash.</p> <p>This will, however, generate entries in the browser history: 1 for when you navigate to the id, and 1 for when you reset it to whatever it was before. It may also create a flicker in your tabs, so that may not be ideal - but I don't know what you can get away with.</p> <p>Ideally, tabs should ideally read and write the hash for bookmarkability. But I don't think that <code>:target</code> is the ideal solution to creating tabs. I know it looks appealing to begin with (<a href="http://borgar.net/svn/public/trunk/javascript/jquery.minitabs/" rel="nofollow">did to me</a>). Given the poor support of the selector, how badly it scales with nested or multiple tabs, and how volatile it becomes with other markup (someone adds a #skip-to link on the page), it is less headache to implement with good old clicks.</p> http://stackoverflow.com/questions/1145850/get-height-of-entire-document-with-javascript/1147768#1147768 2 Answer by Borgar for Get height of entire document with JavaScript Borgar http://stackoverflow.com/users/27388 2009-07-18T15:11:38Z 2009-07-18T15:11:38Z <p>Document sizes are a browser compatibility nightmare because, although all browsers expose clientHeight and scrollHeight properties, they don't all agree how the values are calculated.</p> <p>There used to be a complex best-practice formula around for how you tested for correct height/width. This involved using document.documentElement properties if available or falling back on document properties and so on. </p> <p>The simplest way to get correct height is to get all height values found on document, or documentElement, and use the highest one. This is basically what jQuery does:</p> <pre><code>var body = document.body, html = document.documentElement; var height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); </code></pre> <p>A quick test with Firebug + <a href="http://www.learningjquery.com/2006/12/jquerify-bookmarklet" rel="nofollow">jQuery bookmarklet</a> returns the correct height for both cited pages, and so does the code example.</p> http://stackoverflow.com/questions/1145672/msie-jquerys-append-html-not-working-resorted-to-getelementbyid-innerht/1146139#1146139 0 Answer by Borgar for MSIE : jQuery's append()/html() not working, resorted to getElementById().innerHTML Borgar http://stackoverflow.com/users/27388 2009-07-17T23:32:51Z 2009-07-17T23:32:51Z <p>I guess you had to be there. Here are some possible points of failue:</p> <ul> <li><p>jQuery.clean: The function that makes the fragment that gets added to the DOM.</p> <p>This could be possible if the doctype is bad, or if the response HTML is flawed in some way that makes the clean function fail, thus leaving nothing to be inserted into the DOM.</p></li> <li><p>jQuery.fn.append: Adding the rendered response fragment to the DOM. </p> <p>Let's say that, because jQuery adds content to the DOM with appendChild rather than innerHTML, a bug causes IE to be unaware that the DOM has changed and not render the signaled changes. This would then get bypassed when you use innerHTML. </p> <p>It's not clear from your question if you have verified that the injected HTML is indeed there. This would be testable with something like this:</p> <pre><code>$$.empty().append(data); alert( $$.parent()[0].innerHTML ); $$.show(); </code></pre></li> <li><p>jQuery.fn.show(): Displaying the results.</p> <p>It's not clear from your question if the ultimate failure is because the content isn't being put into the DOM, or if it just isn't being displayed? If the container has a padding and a background, do you see it?</p> <p>The show function is more complex than just adding <code>.style.display='block'</code> on the element. It won't display the element if it thinks it is hidden, which IE may sometimes have strange ideas on. Does replacing show() with manually setting display change anything?</p></li> </ul> <p>It is clear that there is a difference in how IE treats the stage/dev page and the live site. My first steps would be to try to discover the difference between them. HTTP Headings, encoding, doctypes, extra scripts, extra css, even whitespace... Some seemingly minor difference is the cause of this bug.</p> <p>Inn any case, you should prepare a reduced test case of only the bare necessities required to replicate this bug. Even if you don't find a cure for it that you are comfortable with, the test case should be send along with your <a href="http://dev.jquery.com/newticket/" rel="nofollow">bug report to jQuery</a>.</p> http://stackoverflow.com/questions/1145888/how-to-find-out-which-javascript-library-owns/1145921#1145921 7 Answer by Borgar for How to find out which javascript library owns $ Borgar http://stackoverflow.com/users/27388 2009-07-17T22:14:11Z 2009-07-17T22:14:11Z <p>You can test if two object are the same with the <code>===</code> operator:</p> <pre><code>if ( $ === jQuery ) { // $ is a reference to jQuery } </code></pre> http://stackoverflow.com/questions/1080885/optimal-regular-expression-match-sets-of-lines-starting-with/1081022#1081022 1 Answer by Borgar for Optimal Regular Expression: match sets of lines starting with ... Borgar http://stackoverflow.com/users/27388 2009-07-03T22:21:32Z 2009-07-03T22:21:32Z <p>What you already have is already simple and understandable. Keep in mind that more "clever" RegExps may very well be slower and undoubtedly less readable.</p> <p>Assuming lines are terminated by a <code>\n</code>:</p> <pre><code>((^|\n)\.{3}[^\n]*)+ </code></pre> <p>I am not familiar with Ruby, so depending on how it returns matches you might need to "nonmatch" groups:</p> <pre><code>((?:(?:^|\n)\.{3}[^\n]*)+) </code></pre> http://stackoverflow.com/questions/1056098/what-sort-of-memory-leaks-should-i-watch-for-with-jquerys-data/1056161#1056161 5 Answer by Borgar for What sort of memory leaks should I watch for with jQuery's data()? Borgar http://stackoverflow.com/users/27388 2009-06-29T00:51:57Z 2009-06-29T01:01:40Z <p>jQuery's data does not keep a reference to the element <em>so that</em> you don't need to worry about memory leaks. It's intended purpose is to solve this exact problem.</p> <p><strong>A slight simplification of how it works:</strong></p> <p>An id member is added to each "touched" DOM node. All subsequent actions involving that DOM element use that id.</p> <pre><code>var theNode = document.getElementById('examplenode'); theNode[ 'jQuery' + timestamp ] = someInternalNodeID; </code></pre> <p>You can access the id using the same function jQuery uses:</p> <pre><code>someInternalID = jQuery.data( document.body ); </code></pre> <p>When you append data to the node it stores that on the jQuery object, filed under the node's internal id. Your <code>$(element).data(key,value)</code> translates internally to something like:</p> <pre><code>jQuery.cache[ someInternalNodeID ][ theKey ] = theValue; </code></pre> <p>Everything goes into the same structure, including event handlers:</p> <pre><code>jQuery.cache[ someInternalNodeID ][ 'events' ][ 'click' ] = theHandler; </code></pre> <p>When an element is removed, jQuery can therefore throw away all the data (and the event handlers) with one simple operation:</p> <pre><code>delete jQuery.cache[ someInternalNodeID ]; </code></pre> <p>Theoretically, you may therefore also remove jQuery without leaks occurring from any references. jQuery even supports multiple separate instances of the library, each holding it's own set of data or events. </p> <p>You can see John Resig explaining this stuff in <a href="http://video.yahoo.com/watch/4403981/11812238" rel="nofollow">the "The DOM Is a Mess" presentation</a>.</p> http://stackoverflow.com/questions/361130/get-selected-text-and-selected-nodes-on-a-page/364476#364476 3 Answer by Borgar for Get selected text and selected nodes on a page? Borgar http://stackoverflow.com/users/27388 2008-12-12T23:19:35Z 2009-06-11T00:43:14Z <p>You are in for a bumpy ride, but this is quite possible. The main problem is that IE and W3C expose completely different interfaces to selections so if you want cross browser functionality then you basically have to write the whole thing twice. Also, some basic functionality is missing from both interfaces.</p> <p>Mozilla developer connection has the story on <a href="https://developer.mozilla.org/en/DOM/window.getSelection" rel="nofollow">W3C selections</a>. Microsoft have their system <a href="http://msdn.microsoft.com/en-us/library/ms535869%28VS.85%29.aspx" rel="nofollow">documented on MSDN</a>. I recommend starting at PPK's <a href="http://www.quirksmode.org/dom/range%5Fintro.html" rel="nofollow">introduction to ranges</a>.</p> <p>Here are some basic functions that I believe work: </p> <pre><code>// selection objects will differ between browsers function getSelection () { return ( msie ) ? document.selection : ( window.getSelection || document.getSelection )(); } // range objects will differ between browsers function getRange () { return ( msie ) ? getSelection().createRange() : getSelection().getRangeAt( 0 ) } // abstract getting a parent container from a range function parentContainer ( range ) { return ( msie ) ? range.parentElement() : range.commonAncestorContainer; } </code></pre> http://stackoverflow.com/questions/961044/finding-parse-errors-in-javascript/961159#961159 3 Answer by Borgar for Finding Parse Errors in Javascript Borgar http://stackoverflow.com/users/27388 2009-06-07T03:54:26Z 2009-06-07T03:54:26Z <p>Use a tool like <a href="http://jslint.com" rel="nofollow">Jslint</a> or an alternative browser. </p> <p>Until recently, IE was the only browser that did not have built in development assistance. Other browsers will a) not come to a grinding halt on the first error they encounter, and b) tell you what and where the problem in your code is.</p> <p>My favorite "quick ad easy" way to test IE syntax problems is to load the page up in <a href="http://opera.com" rel="nofollow">Opera</a>. It parses code like IE but will give you meaningful error messages. </p> <p>I'll clarify with an example:</p> <pre><code>var foo = { prop1 : 'value', prop2 : 'value', prop2 : 'value', // &lt;-- the problem }; </code></pre> <p>If I remember correctly: In IE6 and IE7 the code will break because IE demands leaving the last comma out. The parser throws a fit and the browser simply stops. It may alert some errors but the line numbers (or even filenames) will not be reliable. Firefox and Safari, however, simply ignore the comma. Opera runs the code, but will print an error on the console indicating line number (and more).</p> <p>Easiest way to write JavaScript is with <a href="http://getfirefox.com" rel="nofollow">Firefox</a> + <a href="http://getfirebug.com/" rel="nofollow">Firebug</a>. Test with IE and have Opera tell you what is breaking when it does.</p> http://stackoverflow.com/questions/201314/nearest-ancestor-node-in-jquery/944765#944765 9 Answer by Borgar for nearest ancestor node in jQuery Borgar http://stackoverflow.com/users/27388 2009-06-03T13:29:39Z 2009-06-03T13:29:39Z <p><em>Adding to @<a href="http://stackoverflow.com/users/9021/nickf">nickf</a>'s answer:</em></p> <p>jQuery 1.3 simplifyed this task with <code>closest</code>.</p> <p>Given a DOM:</p> <pre><code>&lt;div id="a"&gt; &lt;div id="b"&gt; &lt;p id="c"&gt; &lt;a id="d"&gt;&lt;/a&gt; &lt;/p&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>You can do:</p> <pre><code>$('#d').closest("div"); // returns [ div#b ] </code></pre> <blockquote> <p>[<a href="http://docs.jquery.com/Traversing/closest" rel="nofollow">Closest</a> returns a] set of elements containing the closest parent element that matches the specified selector, the starting element included.</p> </blockquote> http://stackoverflow.com/questions/872366/port-python-code-to-javascript/873737#873737 5 Answer by Borgar for port python code to javascript Borgar http://stackoverflow.com/users/27388 2009-05-17T02:02:09Z 2009-05-17T15:55:50Z <p>I'm fairly new to Python but if I understand the code correctly, it reconstructs a list from a given offset into every item following offset+1 and the item at the offset.</p> <p>Running it seems to confirm this:</p> <pre><code>&gt;&gt;&gt; indices = ['one','two','three','four','five','six'] &gt;&gt;&gt; i = 2 &gt;&gt;&gt; indices[i:] = indices[i+1:] + indices[i:i+1] &gt;&gt;&gt; indices ['one', 'two', 'four', 'five', 'six', 'three'] </code></pre> <p>In Javascript can be written:</p> <pre><code>indices = indices.concat( indices.splice( i, 1 ) ); </code></pre> <p>Same entire sequence would go:</p> <pre><code>&gt;&gt;&gt; var indices = ['one','two','three','four','five','six']; &gt;&gt;&gt; var i = 2; &gt;&gt;&gt; indices = indices.concat( indices.splice( i, 1 ) ); &gt;&gt;&gt; indices ["one", "two", "four", "five", "six", "three"] </code></pre> <p>This works because <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/Array/splice" rel="nofollow">splice</a> is destructive to the array but returns removed elements, which may then be handed to <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/Array/concat" rel="nofollow">concat</a>. </p> http://stackoverflow.com/questions/798664/sorting-array-element-using-javascript/798711#798711 3 Answer by Borgar for sorting array element using javascript Borgar http://stackoverflow.com/users/27388 2009-04-28T16:06:44Z 2009-04-28T16:06:44Z <p>The <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/Array/sort" rel="nofollow">sort method</a> takes a function as a parameter:</p> <pre><code>var a = ["one", "two", "three", "four", "five"]; a.sort(function(a,b){ return a.length - b.length }); // returns ["one", "two", "four", "five", "three"] </code></pre> http://stackoverflow.com/questions/774344/links-on-top-of-elements-with-onclick-handlers/774667#774667 1 Answer by Borgar for Links on top of elements with onclick-handlers Borgar http://stackoverflow.com/users/27388 2009-04-21T21:19:59Z 2009-04-21T21:19:59Z <p>You get around this by testing the original target of the event in your handler. Something along the lines of:</p> <pre><code>function doSomething ( e ) { // get event object and target element var e = e || window.event; var target = e.srcElement || e.target; // is target a div? if ( target &amp;&amp; /^div$/i.test( target.nodeName ) ) { // do your magic in here ... } } </code></pre> http://stackoverflow.com/questions/764427/how-to-capture-enter-key-being-pressed-on-pages-containing-multiple-forms/764734#764734 0 Answer by Borgar for How to capture enter key being pressed on pages containing multiple forms? Borgar http://stackoverflow.com/users/27388 2009-04-19T02:52:52Z 2009-04-19T02:52:52Z <blockquote> <p>page contains multiple forms, and the application would not be able to determine (or, so I am told) which form to action.</p> </blockquote> <p>When you press enter on an input control the browser seeks the first submit button <em>in that form</em> and simulates a click on it. In the case of multiple buttons, the first one will be pressed on keyboard enter (this is by no means written in stone and browsers may deviate from this).</p> <p>If you have two forms, the one that got a keypress will have <em>it's</em> first submit button pressed. Therefore you don't really need any special handling of this. You just have to stop being in the way.</p> <p>You can simulate this in code, on a form:</p> <pre><code> $( 'form' ).bind('keypress', function(e){ if ( e.keyCode == 13 ) { $( this ).find( 'input[type=submit]:first' ).click(); } }); </code></pre> <p>Or window (for a demonstration of what is roughly happening):</p> <pre><code> $( window ).bind('keypress', function(e){ if ( $( e.originalTarget ).is( ':input' ) &amp;&amp; e.keyCode == 13 ) { $( e.originalTarget ) .closest( 'form' ) .find( 'input[type=submit]:first' ) .click(); } }); </code></pre> <p>Assuming of course that <code>.preventDefault()</code> has not been called on the event.</p> <p>Bottom line: If you have the event you can divine from it what element it came from and therefore which form it belongs to. Even in this case:</p> <pre><code>&lt;input type="button" value="LOGIN" name="btnLoginOk" onclick="submit();"&gt; </code></pre> <p>Here <code>submit()</code> is a global function, but when it is called, its context (<code>this</code>) will be the element and you may do <code>submit(e){ this.form.submit(); }</code>.</p> <blockquote> <p>The application has been designed so there are no submit buttons (as in input type="submit") and, instead, the designers have gone for onclick handling. </p> </blockquote> <p>This sounds to me like the designer doesn't fully comprehend DOM / form events and is going the long way around the problem. Another likely reason could be that the program is old and was designed back when these things weren't quite as stable, or properly documented, as they are today.</p> <p>Replace this:</p> <pre><code>&lt;form action="/login/" method="POST"&gt; [...] &lt;input type="button" value="LOGIN" name="btnLoginOk" onclick="submit();"&gt; &lt;/form&gt; </code></pre> <p>With this:</p> <pre><code>&lt;form action="/login/" method="POST"&gt; [...] &lt;input type="submit" value="LOGIN" name="btnLoginOk"&gt; &lt;/form&gt; </code></pre> <p>Then add a key handler to all forms that need it, that detects and suppresses enter if some condition is met (for the forms that you actually do want to disable this on).</p> <pre><code>// for all forms that POST that have 2+ submit buttons $( 'form[method=post]:has(:submit:eq(1))' ).bind('keydown', function(e){ // if target is an enter key, input element, and not a button if ( e.keyCode == 13 &amp;&amp; e.target.tagName == 'INPUT' &amp;&amp; !/^(button|reset|submit)$/i.test( e.target.type ) ) { return false; // kill event } }); </code></pre> <p>Or better still: Use a form validation library (or jQuery plugin) that knows how to do this for you.</p> http://stackoverflow.com/questions/1603617/sorting-divs-in-jquery-by-custom-sort-order/1603982#1603982 Comment by Borgar on Sorting Divs in jQuery by Custom Sort Order Borgar http://stackoverflow.com/users/27388 2009-10-21T22:56:04Z 2009-10-21T22:56:04Z I like it. It's a very elegant solution. http://stackoverflow.com/questions/1584370/how-to-merge-two-arrays-in-javascript/1584523#1584523 Comment by Borgar on How to merge two arrays in Javascript Borgar http://stackoverflow.com/users/27388 2009-10-18T13:08:14Z 2009-10-18T13:08:14Z ['ram','same','pair','down'].merge(['am','me','air']); http://stackoverflow.com/questions/1576182/getting-elements-that-exceed-the-maxium-value-javascript-jquery/1578675#1578675 Comment by Borgar on Getting elements that exceed the maxium value. JAVASCRIPT/JQUERY Borgar http://stackoverflow.com/users/27388 2009-10-16T16:01:51Z 2009-10-16T16:01:51Z Damn it! I need to learn to type a lot faster. :-) http://stackoverflow.com/questions/1575642/placing-a-small-arrow-over-a-letter-with-css/1575808#1575808 Comment by Borgar on Placing a small arrow over a letter with css Borgar http://stackoverflow.com/users/27388 2009-10-16T10:32:58Z 2009-10-16T10:32:58Z Good catch. I have updated the answer with the correct order. Initially I thought that the arrow letter should have 0 width (because that is what &quot;Non-Spacing&quot; in means to me); I put it in front as I have more experience with fonts and letters than with math notation. Apparently still failing at both though. :-) http://stackoverflow.com/questions/1568658/html-tables-how-to-make-ie-not-break-lines-at-hyphens/1568680#1568680 Comment by Borgar on HTML Tables - How to make IE not break lines at hyphens Borgar http://stackoverflow.com/users/27388 2009-10-14T23:24:16Z 2009-10-14T23:24:16Z Non-breaking hyphen is the way to go. +1 http://stackoverflow.com/questions/1557670/javascript-jquery-still-running-after-all-its-work-is-complete/1557709#1557709 Comment by Borgar on Javascript (jQuery) still running after all it's work is complete Borgar http://stackoverflow.com/users/27388 2009-10-13T00:57:42Z 2009-10-13T00:57:42Z Browsers move the timeout value up to the least they can handle. The timeout will execute when the current thread is complete and all browsers will refresh in between. String values to timeout are equivalent to eval() and if not invalid, simply bad practice. http://stackoverflow.com/questions/1543648/how-to-get-a-text-before-given-element-using-jquery/1543669#1543669 Comment by Borgar on How to get a text before given element using jQuery? Borgar http://stackoverflow.com/users/27388 2009-10-09T13:20:19Z 2009-10-09T13:20:19Z This won't work because text() doesn't return any html. Secondly, even if you change it to using html(), the target element may not be the first span in the parent. http://stackoverflow.com/questions/222581/python-script-for-minifying-css/223689#223689 Comment by Borgar on Python script for minifying CSS? Borgar http://stackoverflow.com/users/27388 2009-09-29T12:57:41Z 2009-09-29T12:57:41Z Good points. I've added in a few more things, colors, zero-based fragment values, space removal around selector operators, and the trailing semicolon. It's at a point where it is starting to break stuff though, for example: div:content(&quot; |= &quot;) will be stripped to div:content(&quot;|=&quot;). I guess if you need any more you should be using a real tool anyway. http://stackoverflow.com/questions/1489624/modifying-document-location-hash-without-page-scrolling/1489802#1489802 Comment by Borgar on Modifying document.location.hash without page scrolling Borgar http://stackoverflow.com/users/27388 2009-09-29T00:44:58Z 2009-09-29T00:44:58Z No, what is happening in step 2 is that a hidden div is created and placed at the current location of the scroll. It's the same visually as position:fixed/top:0. Thus the scrollbar is &quot;moved&quot; to the exact same spot it currently is on. http://stackoverflow.com/questions/1371307/displayblock-inside-displayinline/1406092#1406092 Comment by Borgar on display:block inside display:inline Borgar http://stackoverflow.com/users/27388 2009-09-12T11:09:49Z 2009-09-12T11:09:49Z Just want to add that IE6 only supports inline-block for elements that are already inline. But other than that: +1 http://stackoverflow.com/questions/1353684/detecting-an-invalid-date-date-instance-in-javascript/1353711#1353711 Comment by Borgar on Detecting an "invalid date" Date instance in JavaScript Borgar http://stackoverflow.com/users/27388 2009-08-30T12:14:13Z 2009-08-30T12:14:13Z instanceof breaks across frames. Duck-typing can work just fine too: validDate == d &amp;&amp; d.getTime &amp;&amp; !isNaN(d.getTime()); -- Since the question is for a general utility function I prefer to be more strict. http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/63692#63692 Comment by Borgar on Confessions of your worst WTF Moment. (What not to do.) Borgar http://stackoverflow.com/users/27388 2009-08-25T23:21:50Z 2009-08-25T23:21:50Z I've done a rm -rf / while going for a full path but hitting enter by mistake. /bin was blown clean away. rm didn't stop running despite being deleted, I suspect this is because the process maintains a handle on the file. Deleting /dev, however, took enough time for me to hit ctrl+c. YMMV. http://stackoverflow.com/questions/1188551/common-programming-mistakes-for-javascript-developers-to-avoid/1188569#1188569 Comment by Borgar on Common programming mistakes for JavaScript developers to avoid? Borgar http://stackoverflow.com/users/27388 2009-07-27T14:56:34Z 2009-07-27T14:56:34Z <code>for</code> does not create scope in JavaScript. Both loops won't work right in the exact same way (inner terminates outer). The only difference is that the second one doesn't create a global variable if run within a function. http://stackoverflow.com/questions/1094723/what-is-array-literal-notation-in-javascript-and-when-should-you-use-it Comment by Borgar on What is array literal notation in javascript and when should you use it? Borgar http://stackoverflow.com/users/27388 2009-07-07T22:41:40Z 2009-07-07T22:41:40Z This is similar to, but not quite the same as: <a href="http://stackoverflow.com/questions/931872/whats-the-difference-between-array-and-while-declaring-a-javascript-arr/" rel="nofollow" title="whats the difference between array and while declaring a javascript arr">stackoverflow.com/questions/931872/&hellip;</a> http://stackoverflow.com/questions/1006089/setting-rowspan-on-colgroup/1047504#1047504 Comment by Borgar on setting rowspan on colgroup? Borgar http://stackoverflow.com/users/27388 2009-07-01T19:38:54Z 2009-07-01T19:38:54Z I second this answer. The tbody tag IS the equivalent of a rowgoup. It just so happens that that there are three types of rowgroups (thead, tbody, and tfoot). Additionally the underestimated axis attribute can be added to the cells to &quot;tags&quot; same quadrant cells together. &lt;td axis=&quot;quad1&quot;&gt;. These may then be CSS selected with &quot;table td[axis=quad1]&quot;.