User J-P - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:19:11Z http://stackoverflow.com/feeds/user/21677 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1949731/how-can-i-escape-a-literal-string-i-want-to-interpolate-into-a-regular-expression 3 How can I escape a literal string I want to interpolate into a regular expression? J-P 2009-12-22T22:52:40Z 2009-12-23T01:28:52Z <p>Is there a built-in way to escape a string that will be used within/as a regular expression? E.g.</p> <pre><code>www.abc.com </code></pre> <p>The escaped version would be:</p> <pre><code>www\.abc\.com </code></pre> <p>I was going to use:</p> <pre><code>$string =~ s/[.*+?|()\[\]{}\\]/\\$&amp;/g; # Escapes special regex chars </code></pre> <p>But I just wanted to make sure that there's not a cleaner built-in operation that I'm missing?</p> http://stackoverflow.com/questions/1947510/get-and-set-selected-value/1947600#1947600 1 Answer by J-P for get and set selected value J-P 2009-12-22T16:44:19Z 2009-12-22T16:44:19Z <pre><code>var s1 = document.getElementById("select1"); var s2 = document.getElementById("select2"); s2.selectedIndex = s1.selectedIndex; </code></pre> <p>Or, if you want it to happen when the first <code>&lt;select&gt;</code> is changed:</p> <pre><code>s1.onchange = function() { s2.selectedIndex = s1.selectedIndex; }; </code></pre> http://stackoverflow.com/questions/1935550/getting-div-current-placement/1935563#1935563 1 Answer by J-P for getting div current placement J-P 2009-12-20T11:27:28Z 2009-12-20T11:27:28Z <pre><code>var position = jQuery('#myelement').position(); alert(position.left); alert(position.top); </code></pre> http://stackoverflow.com/questions/1930975/how-do-i-make-ajax-calls-at-intervals-without-overlap/1931021#1931021 0 Answer by J-P for How do I make Ajax calls at intervals without overlap? J-P 2009-12-18T22:22:12Z 2009-12-18T22:22:12Z <p>I suggest you use a small toolkit like jx.js (<a href="http://www.openjs.com/scripts/jx/jx.js" rel="nofollow">source</a>). You can find it here: <a href="http://www.openjs.com/scripts/jx/" rel="nofollow">http://www.openjs.com/scripts/jx/</a> (less than 1k minified)</p> <p>To setup a request:</p> <pre><code>jx.load('somepage.php', function(data){ alert(data); // Do what you want with the 'data' variable. }); </code></pre> <p>To set it up on an interval you can use <code>setInterval</code> and a variable to store whether or not a request is currently occuring - if it is, we simple do nothing:</p> <pre><code>var activeRequest = false; setInterval(function(){ if (!activeRequest) { // Only runs if no request is currently occuring: jx.load('somepage.php', function(data){ activeRequest = false; alert(data); // Do what you want with the 'data' variable. }); } activeRequest = true; }, 5000); // Every five seconds </code></pre> http://stackoverflow.com/questions/1929142/quick-javascript-function-help/1929227#1929227 2 Answer by J-P for quick javascript function help... J-P 2009-12-18T16:21:09Z 2009-12-18T16:21:09Z <p>Use the DOM, <em>properly</em>.</p> <pre><code>for (var z = 1, l = img_src.length; z &lt; l; ++z) { var new_img = document.createElement('img'); new_img.src = 'ad_images/' + category+'/' + 'thumbs/' + img_src[z]; new_img.onclick = (function(z){ return function() { imageShow(z); }; })(z); new_img.style.margin = '7px'; document.getElementById("thumb_pic_div").appendChild(new_img); } </code></pre> http://stackoverflow.com/questions/1928367/using-a-button-instead-of-a-checkbox-to-check-all-checkboxes-in-jquery/1928454#1928454 0 Answer by J-P for using a button instead of a checkbox to check all checkboxes in jquery J-P 2009-12-18T14:18:05Z 2009-12-18T14:18:05Z <pre><code>var checked = false; var checkAll = $('#checkall'); var checkboxes = checkAll.parents('fieldset:eq(0)').find(':checkbox'); checkAll.click(function () { checkboxes.attr('checked', checked = !checked); }); </code></pre> <p>I've done two things:</p> <ul> <li>The current state of the checkboxes is stored in the <code>checked</code> variable.</li> <li>The checkboxes are not queried for on every click; instead we cache the collection and simply set the attribute when the <code>checkAll</code> button is clicked.</li> </ul> <p>And, if you're worried about global variables, then just wrap it all in its own scope:</p> <pre><code>(function(){ var checked = false; var checkAll = $('#checkall'); var checkboxes = checkAll.parents('fieldset:eq(0)').find(':checkbox'); checkAll.click(function () { checkboxes.attr('checked', checked = !checked); }); })(); </code></pre> http://stackoverflow.com/questions/1900435/how-to-remove-li-from-ul-within-a-div/1900532#1900532 9 Answer by J-P for How to remove li from ul within a div J-P 2009-12-14T12:03:07Z 2009-12-14T12:55:22Z <pre><code>var div = document.getElementById('div1'), ul = div.getElementsByTagName('ul')[0], li = ul.getElementsByTagName('li'), len = li.length; // Go backwards so that removing items has no effect while (len--) { if ( /Hello/.test(getText(li[len])) ) { ul.removeChild(li[len]); } } function getText(node) { var s = ''; node = node.firstChild; if ( node ) do { if ( node.nodeType === 3 ) { s += node.data; } if ( node.nodeType === 1 ) { s += getText(node); } } while ( node = node.nextSibling ); return s; } </code></pre> http://stackoverflow.com/questions/1893277/how-to-convert-a-string-value-to-a-variable-in-javascript/1893344#1893344 4 Answer by J-P for How to convert a string value to a variable in javascript? J-P 2009-12-12T12:59:20Z 2009-12-12T12:59:20Z <p>It might be worth creating an object to hold all your "tests":</p> <pre><code>var tests = {}; $(document).ready(function () { tests.test1 = $("#test1ID").jQueryPlugin(); tests.test2 = $("#test2ID").jQueryPlugin(); }); for(i=0; i &lt; theArrayOfStrings.length; i++){ tests[theArrayOfStrings[i]].foo(); } </code></pre> http://stackoverflow.com/questions/1887585/javascript-or-css-trick-to-group-spans-without-separating-them-when-one-reaches-t/1887596#1887596 1 Answer by J-P for javascript or css trick to group spans without separating them when one reaches the edge of browser J-P 2009-12-11T11:56:46Z 2009-12-11T11:56:46Z <pre><code>#parent { white-space: nowrap; } </code></pre> http://stackoverflow.com/questions/1856890/why-does-jquery-use-new-jquery-fn-init-for-creating-jquery-object-but-i-cant/1857015#1857015 2 Answer by J-P for Why does jQuery use "new jQuery.fn.init()" for creating jQuery object but I can't? J-P 2009-12-06T23:30:57Z 2009-12-06T23:30:57Z <p>This approach should work perfectly. One thing you may be missing is the fact that, using this technique, you're not going to be creating an instance of <code>myClass</code>; you're going to be creating an instance of <code>myClass.prototype.init</code>.</p> <p>So, any methods defined in <code>myClass.prototype</code> won't be available to the instance. You'll want to make sure that the <code>init</code>'s prototype points to <code>myClass</code>'s prototype:</p> <pre><code>myClass.fn.init.prototype = myClass.fn; </code></pre> <p><hr></p> <p>FWIW, I don't see any real benefit in this approach. What's wrong with this? -</p> <pre><code>function myClass(x,y) { if ( !(this instanceof myClass) ) { return new myClass(x,y); } // Prepare instance } myClass.prototype = { /* Methods */ }; // It can still be overwritten: var oldMyClass = myClass; function myClass(x,y) { // Hack some stuff here... return new oldMyClass(x,y); } </code></pre> http://stackoverflow.com/questions/1852998/using-javascript-to-measure-the-current-window/1853019#1853019 3 Answer by J-P for Using Javascript to Measure the Current Window J-P 2009-12-05T18:34:57Z 2009-12-05T18:34:57Z <p>A user's window is unlikely to vary hugely in size during use. It's best to only provide one image, and then scale it depending on the size. This can be achieved through CSS alone. </p> <pre><code>img#my-big-background-image { width: 100%; } </code></pre> http://stackoverflow.com/questions/1841911/regex-to-find-word-on-page-including-inside-tags/1841936#1841936 7 Answer by J-P for Regex to find word on page including inside tags. J-P 2009-12-03T18:33:24Z 2009-12-03T18:33:24Z <p>The only <em>reliable</em> way to accomplish this is to step through each child descendant and, if it's a text node, then run the replacement.</p> <p>Implementations:</p> <ul> <li><a href="http://benalman.com/projects/jquery-replacetext-plugin/" rel="nofollow">http://benalman.com/projects/jquery-replacetext-plugin/</a></li> <li><a href="http://james.padolsey.com/javascript/find-and-replace-text-with-javascript/" rel="nofollow">http://james.padolsey.com/javascript/find-and-replace-text-with-javascript/</a></li> </ul> <p>Doing it your way, not only do you run the risk of inadvertently replacing actual HTML, but you also wipe any DOM elements within the targeted element, and any corresponding event handlers. </p> http://stackoverflow.com/questions/1837056/what-is-the-best-way-to-search-for-an-item-in-a-sorted-list-in-javascript/1837276#1837276 6 Answer by J-P for What is the best way to search for an item in a sorted list in javascript? J-P 2009-12-03T02:30:13Z 2009-12-03T09:52:46Z <p>Tried implementing a "<a href="http://en.wikipedia.org/wiki/Binary%5Fsearch%5Falgorithm" rel="nofollow">binary search</a>":</p> <pre><code>Array.prototype.binarySearch = function(v) { /* ARRAY MUST BE SORTED */ if ( !this.length ) { return false; } if ( this[0] === v ) { return true; } var i, mid, start = 0, end = this.length, c = false; while ( c = (i = this[mid = start+((end-start)&gt;&gt;1)]) !== v ) { i &lt; v ? (start = mid) : (end = mid); if (start &gt;= end - 1) { break; } } return !c; }; </code></pre> http://stackoverflow.com/questions/1835903/how-do-to-wrap-a-span-around-a-section-of-text-without-using-jquery/1836009#1836009 4 Answer by J-P for How do to wrap a span around a section of text WITHOUT using jQuery J-P 2009-12-02T21:41:00Z 2009-12-02T22:23:07Z <p>First, you need some way of accessing the paragraph. You might want to give it an <code>id</code> attribute, such as "foo":</p> <pre><code>&lt;p id="foo"&gt;Lorem Ipsum &lt;a href="#"&gt;Link&lt;/a&gt; &lt;div ... &lt;/div&gt; &lt;/p&gt; </code></pre> <p>Then, you can use <code>document.getElementById</code> to access that element and replace its children as required:</p> <pre><code>var p = document.getElementById('foo'), firstTextNode = p.firstChild, newSpan = document.createElement('span'); // Append "Lorem Ipsum" text to new span: newSpan.appendChild( document.createTextNode(firstTextNode.nodeValue) ); // Replace old text node with new span: p.replaceChild( newSpan, firstTextNode ); </code></pre> <p>To make it more reliable, you might want to call <code>p.normalize()</code> before accessing the first child, to ensure that all text nodes before the anchor are merged as one. </p> <p><hr></p> <p>Oook, So you want to replace a part of a text node with an element. Here's how I'd do it:</p> <pre><code>function giveMeDOM(html) { var div = document.createElement('div'), frag = document.createDocumentFragment(); div.innerHTML = html; while (div.firstChild) { frag.appendChild( div.firstChild ); } return frag; } var p = document.getElementById('foo'), firstChild = p.firstChild; // Merge adjacent text nodes: p.normalize(); // Get new DOM structure: var newStructure = giveMeDOM( firstChild.nodeValue.replace(/Lorem Ipsum/i, '&lt;span&gt;$&amp;&lt;/span&gt;') ); // Replace first child with new DOM structure: p.replaceChild( newStructure, firstChild ); </code></pre> <p>Working with nodes at the low level is a bit of a nasty situation to be in; especially without any abstraction to help you out. I've tried to retain a sense of normality by creating a DOM node out of an HTML string produced from the replaced "Lorem Ipsum" phrase. Purists probably don't like this solution, but I find it perfectly suitable. </p> <p><hr></p> <p><strong>EDIT</strong>: Now using a document fragment! Thanks <em><a href="http://stackoverflow.com/users/45433/crescent-fresh">Crescent Fresh</a></em>!</p> http://stackoverflow.com/questions/1821695/replacing-fields-with-jquery/1821730#1821730 0 Answer by J-P for Replacing fields with jQuery J-P 2009-11-30T19:03:32Z 2009-11-30T19:03:32Z <p>Because <code>&lt;input class="address1"/&gt;</code> is not a sibling of <code>&lt;input id="parent_sameAsBefore"/&gt;</code>. I think you want:</p> <pre><code>checkbox.parent().parent().find('.address1'); </code></pre> http://stackoverflow.com/questions/1813113/how-to-inherit-a-private-member-in-javascript/1813135#1813135 0 Answer by J-P for How to inherit a private member in JavaScript? J-P 2009-11-28T17:23:57Z 2009-11-28T17:23:57Z <p>This isn't possible. And that isn't really a private property - it's simply a regular variable that's only available in the scope in which it was defined. </p> http://stackoverflow.com/questions/1810984/number-of-days-in-any-month/1811003#1811003 6 Answer by J-P for Number of days in any month J-P 2009-11-27T23:32:57Z 2009-11-27T23:47:20Z <pre><code>function getDaysInMonth(m, y) { return /8|3|5|10/.test(--m)?30:m==1?(!(y%4)&amp;&amp;y%100)||!(y%400)?29:28:31; } </code></pre> http://stackoverflow.com/questions/1809914/oo-javascript-constructor-pattern-neo-classical-vs-prototypal/1810062#1810062 5 Answer by J-P for OO Javascript constructor pattern: neo-classical vs prototypal J-P 2009-11-27T18:15:13Z 2009-11-27T18:27:39Z <p>This looks like the non-singleton version of the <a href="http://yuiblog.com/blog/2007/06/12/module-pattern/" rel="nofollow">module pattern</a>, whereby private variables can be simulated by taking advantage of JavaScript's "closures". </p> <p>I like it (<em>kinda...</em>). But I don't really see the advantage in private variables done in this way, especially when it means that any new methods added (after initialisation) do not have access to the private variables.</p> <p>Plus, it doesn't take advantage of JavaScript's prototypal model. All your methods and properties must be initialised EVERY time the constructor is called - this doesn't happen if you have methods stored in the constructor's prototype. The fact is, using the conventional constructor/prototype pattern is much faster! Do you really think private variables make the performance hit worth it?</p> <p>This kind of model makes sense with the module pattern because it's only being initialised once (to create a pseudo-singleton), but I'm not so sure it makes sense here.</p> <blockquote> <p>Do you use this kind of constructor pattern?</p> </blockquote> <p>No, although I do use its singleton variant, the module pattern...</p> <blockquote> <p>Do you find it understandable?</p> </blockquote> <p>Yes, it's readable and quite clear, but I don't like the idea of lumping everything inside a constructor like that.</p> <blockquote> <p>Do you have a better one?</p> </blockquote> <p>If you really need private variables, then stick with it by all means. Otherwise just use the conventional constructor/prototype pattern (<em>unless you share Crockford's fear of the <code>new</code>/<code>this</code> combo</em>):</p> <pre><code>function Constructor(foo) { this.foo = foo; // ... } Constructor.prototype.method = function() { }; </code></pre> <p>Other similar questions relating to Doug's views on the topic:</p> <ul> <li><a href="http://stackoverflow.com/questions/791131/pseudo-classical-vs-the-javascript-way">Pseudo-classical vs. “The JavaScript way”</a></li> <li><a href="http://stackoverflow.com/questions/383402/is-javascript-s-new-keyword-considered-harmful">Is JavaScript ‘s “new” Keyword Considered Harmful?</a></li> </ul> http://stackoverflow.com/questions/1778722/detecting-horizontal-div-overflow-with-javascript/1778771#1778771 2 Answer by J-P for Detecting horizontal div overflow with JavaScript? J-P 2009-11-22T13:57:48Z 2009-11-22T13:57:48Z <p>Is you main DIV set to <strong><code>overflow:hidden</code></strong>?</p> <p>If so, you can test its need to overflow by incrementing the <strong><code>scrollLeft</code></strong> property and then querying it to see if it's changed:</p> <pre><code>function containsTooMuch(el) { var original = el.scrollLeft++; return el.scrollLeft-- &gt; original; } </code></pre> http://stackoverflow.com/questions/1768008/adding-form-elements-using-jquery/1768071#1768071 3 Answer by J-P for Adding form elements using JQuery J-P 2009-11-20T03:05:36Z 2009-11-20T13:49:08Z <p>Something like this, perhaps:</p> <pre><code>jQuery(yourNodes).each(function(){ var self = this, loading = $('&lt;div&gt;LOADING&lt;/div&gt;').appendTo(self), id = self.id.replace(/^edit/,''); // Retrieve textarea from server jQuery.get('/getDataForTextArea?id=' + id, function(textareaValue){ loading.remove(); var textarea = jQuery('&lt;textarea/&gt;') .attr('id', 'txt' + id) .val(textareaValue) .add( jQuery('&lt;button&gt;Save&lt;/button&gt;') .attr('id', 'btnSave' + id) .click(function(){ /* Click handler */ }) ) .add( jQuery('&lt;button&gt;Cancel&lt;/button&gt;') .attr('id', 'btnCancel' + id) .click(function(){ /* Remove nodes */ tr.remove(); }) ); var tr = jQuery('&lt;tr colspan="4"&gt;&lt;td/&gt;&lt;/tr&gt;'); tr.find('td').append(textarea); tr.appendTo(self); }); }); </code></pre> http://stackoverflow.com/questions/1760492/how-can-i-tell-if-a-javascript-object-is-an-image-or-a-canvas/1760522#1760522 2 Answer by J-P for How can I tell if a javascript object is an Image or a Canvas? J-P 2009-11-19T02:30:28Z 2009-11-19T02:35:46Z <pre><code>function isImage(i) { return i instanceof HTMLImageElement; } </code></pre> http://stackoverflow.com/questions/1760192/which-way-is-better-to-define-javascript-regular-expressions/1760506#1760506 5 Answer by J-P for Which way is better to define JavaScript regular expressions? J-P 2009-11-19T02:23:47Z 2009-11-19T02:23:47Z <p>According to the ES3 specification, they are slightly different in that the literal syntax (<code>/regex/</code>) will create a single <code>RegExp</code> object upon the initial scan:</p> <blockquote> <p>A regular expression literal is an input element that is converted to a RegExp object (section 15.10) when it is scanned. The object is created before evaluation of the containing program or function begins. Evaluation of the literal produces a reference to that object; it does not create a new object.</p> </blockquote> <p>The error in that spec was acknowledged in ES4:</p> <blockquote> <p>In ES3 a regular expression literal like /ab/mg denotes a single unique RegExp object that is created the first time the literal is encountered during evaluation. In ES4 a new RegExp object is created <strong><em>every time</em></strong> the literal is encountered during evaluation.</p> </blockquote> <p>Implementations vary across browsers. Safari and IE treat literals as per ES4, but Firefox and Chrome appear to treat them as per ES3. </p> <p>Try the following code in various browsers and you'll see what I mean:</p> <pre><code>function f() { return /abc/g.test('abc'); } alert(f()); // Alerts true alert(f()); // Alerts false in FF/Chrome </code></pre> <p>Compared with:</p> <pre><code>function f() { return RegExp('abc', 'g').test('abc'); } alert(f()); // Alerts true alert(f()); // Alerts true </code></pre> <p>Note, false is alerted because the function is still using the regex from the previous call of that function, the <code>lastIndex</code> of which was updated, meaning that it won't match the string <code>"abc"</code> anymore.</p> <p><hr></p> <p>Tip: the <code>new</code> operator is not required for <code>RegExp</code> to be instantiated. <code>RegExp()</code> by itself works the same...</p> <p><hr></p> <p>More info on the ES3/4 issue: <a href="http://stackoverflow.com/questions/1534098/regex-lastindex-unexpected-behaviour">http://stackoverflow.com/questions/1534098/regex-lastindex-unexpected-behaviour</a></p> http://stackoverflow.com/questions/676721/calling-dynamic-function-with-dynamic-parameters-in-javascript/677110#677110 3 Answer by J-P for Calling dynamic function with dynamic parameters in Javascript J-P 2009-03-24T12:09:09Z 2009-11-18T16:05:34Z <p>Here's what you need:</p> <pre><code>function mainfunc (){ window[Array.prototype.shift.call(arguments)].apply(null, arguments); } </code></pre> <p>The first argument is used as the function name and all of the remaining ones are used as arguments to the called function...</p> <p>We're able to use the <code>shift</code> method to return and then delete the first value from the arguments array. Note that we've called it from the Array prototype since, strictly speaking, 'arguments' is not a real array and so doesn't inherit the <code>shift</code> method like a regular array would.</p> <p><hr></p> <p>You can also call the shift method like this:</p> <pre><code>[].shift.call(arguments); </code></pre> http://stackoverflow.com/questions/1694717/javascript-how-to-create-an-object-and-filter-on-those-attributes/1694766#1694766 4 Answer by J-P for JavaScript: How to create an Object and filter on those attributes? J-P 2009-11-07T23:10:04Z 2009-11-08T02:03:54Z <p>Here you go:</p> <pre><code>var filteredArray = filter(myBigObject.homes, { price: function(value) { value = parseFloat(value); return value &gt;= 150000 &amp;&amp; value &lt;= 400000; }, num_of_baths: function(value) { value = parseFloat(value); return value &gt;= 2.5; }, num_of_beds: function(value) { value = parseFloat(value); return value === 1 || value === 3; } }); </code></pre> <p>And the <code>filter</code> function:</p> <pre><code>function filter( array, filters ) { var ret = [], i = 0, l = array.length, filter; all: for ( ; i &lt; l; ++i ) { for ( filter in filters ) { if ( !filters[filter](array[i][filter]) ) { continue all; } } ret[ret.length] = array[i]; } return ret; } </code></pre> http://stackoverflow.com/questions/1677148/prototype-wrapping-raw-html-to-create-extended-element/1677315#1677315 3 Answer by J-P for Prototype: wrapping raw HTML to create extended element J-P 2009-11-04T23:08:45Z 2009-11-04T23:08:45Z <pre><code>var myDOMStructure = (new Element('div')).update(yourHTML); myDOMStructure.down().down().up(); /// etc... </code></pre> http://stackoverflow.com/questions/1666790/how-to-replace-text-not-within-a-specific-tag-in-javascript/1667755#1667755 1 Answer by J-P for How to replace text not within a specific-Tag in JavaScript J-P 2009-11-03T14:41:26Z 2009-11-03T14:41:26Z <p>Just thought it'd be worth offering a DOM solution:</p> <p>E.g.</p> <pre><code>var div = document.createElement('div'); div.innerHTML = ":-)&lt;pre&gt;:-)&lt;/pre&gt;&lt;blockquote&gt;:-)&lt;/blockquote&gt;"; replace(div, /:-\)/g, ":wink:", function(){ // Custom filter function. // Returns false for &lt;pre&gt; elements. return this.nodeName.toLowerCase() !== 'pre'; }); div.innerHTML; // &lt;== here's your new string! </code></pre> <p>And here's the <code>replace</code> function:</p> <pre><code>function replace(element, regex, replacement, filter) { var cur = element.firstChild; if (cur) do { if ( !filter || filter.call(cur) ) { if ( cur.nodeType == 1 ) { replace( cur, regex, replacement ); } else { cur.data = cur.data.replace( regex, replacement ); } } } while ( cur = cur.nextSibling ); } </code></pre> http://stackoverflow.com/questions/1659066/fastest-way-to-insert-a-word-at-the-correct-position-in-a-dictionary 1 Fastest way to insert a word at the correct position in a dictionary J-P 2009-11-02T01:42:42Z 2009-11-02T02:18:05Z <p>Currently, I'm simply inserting the word into the dictionary (<code>ArrayList&lt;String&gt;</code>) and then sorting the dictionary like so:</p> <pre><code>dictionary.add(newWord); Collections.sort(dictionary, new Comparator&lt;String&gt;(){ public int compare(String s1, String s2) { return s1.compareToIgnoreCase(s2); } }); </code></pre> <p>I'm trying to determine whether this way is really the best. The other way, of course, is to find the correct point in the dictionary and then insert the word there. The problem is, I haven't been able to come up with an efficient/reliable way to find that point within the dictionary. I've got a few ideas flying around in my head but it's really tricky putting pen to paper.</p> <p>If you have an idea of how to do it, please don't post any massive code answers. This is part of an assignment, so instead of posting code could you walk me through how you'd do it? (maybe in pseudocode?)</p> <p>Thank you.</p> http://stackoverflow.com/questions/1053556/overwriting-the-array-constructor-does-not-affect-right 3 Overwriting the Array constructor does not affect [], right? J-P 2009-06-27T20:33:31Z 2009-10-21T18:09:54Z <p>I just read this: <strong><a href="http://haacked.com/archive/2008/11/20/anatomy-of-a-subtle-json-vulnerability.aspx" rel="nofollow">http://haacked.com/archive/2008/11/20/anatomy-of-a-subtle-json-vulnerability.aspx</a></strong></p> <p>I was under the impression that overwriting <strong><code>Object</code></strong> or <strong><code>Array</code></strong> only had an effect if you chose to use the constructor functions when creating <strong><code>arrays</code></strong>/<strong><code>objects</code></strong>, but, according to that article, it also has an effect on literal creation (<strong><code>{}</code></strong> and <strong><code>[]</code></strong>)...</p> <p>My logic:</p> <pre><code>Array = function(){ alert('Hi'); }; [1,2,3,4,5]; ([1,2,3,4,5]); var a = [1,2,3,4,5]; // ... // ... Nothing is alerted </code></pre> <p>So, am I going crazy or are there some implementation-specific quirks I'm not aware of?</p> http://stackoverflow.com/questions/470832/getting-an-absolute-url-from-a-relative-one-ie6-issue 2 Getting an absolute URL from a relative one. (IE6 issue) J-P 2009-01-22T21:15:32Z 2009-10-19T23:06:35Z <p>I'm currently using the following function to 'convert' a relative URL to an absolute one:</p> <pre><code>function qualifyURL(url) { var a = document.createElement('a'); a.href = url; return a.href; } </code></pre> <p>This works quite well in most browsers but IE6 insists on returning the relative URL still! It does the same if I use getAttribute('href'). </p> <p>The only way I've been able to get a qualified URL out of IE6 is to create an img element and query it's 'src' attribute - the problem with this is that it generates a server request; something I want to avoid.</p> <p>So my question is: Is there any way to get a fully qualified URL in IE6 from a relative one (without a server request)?</p> <p><hr /></p> <p>Before you recommend a quick regex/string fix I assure you it's not that simple. Base elements + double period relative urls + a tonne of other potential variables really make it hell! </p> <p>There must be a way to do it without having to create a mammoth of a regex'y solution??</p> http://stackoverflow.com/questions/1578628/is-there-a-regular-expression-for-a-comma-separated-list-of-discrete-values/1578681#1578681 3 Answer by J-P for Is there a regular expression for a comma separated list of discrete values? J-P 2009-10-16T15:10:28Z 2009-10-16T15:44:09Z <p>Use a backreference and a negative lookahead:</p> <pre><code>^(Dog|Cat|Bird|Mouse)(, (?!\1)(Dog|Cat|Bird|Mouse))*$ </code></pre> <p><strong>EDIT</strong>: This won't work with cases such as "Cat, Dog, Dog" ... You'll need to come up a hybrid solution for such instances - I don't believe there is a single regex that can handle that. </p> <p><hr /></p> <p>Here's another technique. You need to check two things, first, that it DOES match this:</p> <pre><code>(?:(?:^|, )(Dog|Cat|Bird|Mouse))+$ </code></pre> <p><em>(That's just a slightly shorter version of your original regex)</em></p> <p>Then, check that it DOES NOT match this:</p> <pre><code>(Dog|Cat|Bird|Mouse).+?\1 </code></pre> <p>E.g.</p> <pre><code>var valid = string.match( /(?:(?:^|, )(Dog|Cat|Bird|Mouse))+$/ ) &amp;&amp; !string.match( /(Dog|Cat|Bird|Mouse).+?\1/ ); </code></pre> http://stackoverflow.com/questions/1949731/how-can-i-escape-a-literal-string-i-want-to-interpolate-into-a-regular-expression/1949743#1949743 Comment by J-P on How can I escape a literal string I want to interpolate into a regular expression? J-P 2009-12-22T22:58:13Z 2009-12-22T22:58:13Z Perfect! Thanks gbacon! http://stackoverflow.com/questions/1947398/recording-durations-in-milliseconds-using-jquery/1947435#1947435 Comment by J-P on recording durations in milliseconds using jQuery? J-P 2009-12-22T16:52:38Z 2009-12-22T16:52:38Z Shorter alternative to <code>new Date().getTime()</code>: <code>+new Date</code> http://stackoverflow.com/questions/1944280/determine-original-size-of-image-cross-browser/1944298#1944298 Comment by J-P on Determine original size of image cross browser? J-P 2009-12-22T09:45:23Z 2009-12-22T09:45:23Z That won't work with images that aren't loaded yet. It might be worth adjusting it to work properly for other people stumbling across this answer. http://stackoverflow.com/questions/1935911/very-basic-question-about-javascript-code-execution Comment by J-P on Very basic question about Javascript code execution J-P 2009-12-20T16:33:02Z 2009-12-20T16:33:02Z Why is this a community wiki? http://stackoverflow.com/questions/1935454/displaying-divs-inline-with-jquery/1935499#1935499 Comment by J-P on Displaying DIVs inline with jQuery J-P 2009-12-20T11:31:54Z 2009-12-20T11:31:54Z What's wrong with <code>$('div.className').css('display', 'inline');</code> ? http://stackoverflow.com/questions/1935521/javascript-arguments-callee-tostring-and-arguments-callee-name-does-not-retur Comment by J-P on javascript - arguments.callee.toString() and arguments.callee.name does not return function name J-P 2009-12-20T11:19:16Z 2009-12-20T11:19:16Z Can I ask, why do you want/need to do this? http://stackoverflow.com/questions/275931/how-do-you-make-an-element-flash-in-jquery/275942#275942 Comment by J-P on How do you make an element "flash" in JQuery J-P 2009-12-19T10:06:35Z 2009-12-19T10:06:35Z Updated pulse plugin: <a href="http://james.padolsey.com/javascript/simple-pulse-plugin-for-jquery/" rel="nofollow">james.padolsey.com/javascript/&hellip;</a> http://stackoverflow.com/questions/1930975/how-do-i-make-ajax-calls-at-intervals-without-overlap/1931014#1931014 Comment by J-P on How do I make Ajax calls at intervals without overlap? J-P 2009-12-18T22:27:47Z 2009-12-18T22:27:47Z Yes, but, because of the flag, a request will never be made if another one is still running. http://stackoverflow.com/questions/1930975/how-do-i-make-ajax-calls-at-intervals-without-overlap/1931014#1931014 Comment by J-P on How do I make Ajax calls at intervals without overlap? J-P 2009-12-18T22:24:22Z 2009-12-18T22:24:22Z Threading? JavaScript in the browser is single-&quot;threaded&quot;... http://stackoverflow.com/questions/1929142/quick-javascript-function-help/1929227#1929227 Comment by J-P on quick javascript function help... J-P 2009-12-18T16:29:52Z 2009-12-18T16:29:52Z Care to explain the downvote? http://stackoverflow.com/questions/1928367/using-a-button-instead-of-a-checkbox-to-check-all-checkboxes-in-jquery/1928418#1928418 Comment by J-P on using a button instead of a checkbox to check all checkboxes in jquery J-P 2009-12-18T14:20:43Z 2009-12-18T14:20:43Z Why use <code>data()</code> when you can simply store the <code>checked</code> value in a locally accessible variable? http://stackoverflow.com/questions/1900435/how-to-remove-li-from-ul-within-a-div/1900532#1900532 Comment by J-P on How to remove li from ul within a div J-P 2009-12-18T09:12:13Z 2009-12-18T09:12:13Z @Crescent, See the answer by Kangax here: <a href="http://stackoverflow.com/questions/1359469/innertext-works-in-ie-but-not-in-firefox" rel="nofollow" title="innertext works in ie but not in firefox">stackoverflow.com/questions/1359469/&hellip;</a> ... The recursive-DOM-walking approach is the simplest way to make sure it works properly in all browsers. http://stackoverflow.com/questions/1908443/what-are-good-javascript-oop-resources Comment by J-P on What are good JavaScript OOP resources? J-P 2009-12-15T16:16:34Z 2009-12-15T16:16:34Z Shouldn't this be a community wiki? http://stackoverflow.com/questions/1903063/what-is-the-difference-between-empty-append-and-html-in-jquery/1903071#1903071 Comment by J-P on What is the difference between .empty().append() and .html() in jQuery? J-P 2009-12-14T20:31:16Z 2009-12-14T20:31:16Z Not answering the OP's question... http://stackoverflow.com/questions/1900435/how-to-remove-li-from-ul-within-a-div/1900458#1900458 Comment by J-P on How to remove li from ul within a div J-P 2009-12-14T12:10:24Z 2009-12-14T12:10:24Z This won't work. <code>liElems</code> is a live collection, so it'll be affected when you remove elements. i.e. removing <code>liElems[0]</code> means that the entire <code>liElems</code> is effectively shifted; what was <code>liElems[1]</code> is now <code>liElems[0]</code>, meaning that you will miss it on the next iteration.