User travis - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T18:26:57Z http://stackoverflow.com/feeds/user/1414 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/45888/what-is-the-most-efficient-way-to-sort-an-html-selects-options-by-value-while-p 0 What is the most efficient way to sort an Html Select's Options by value, while preserving the currently selected item? travis 2008-09-05T14:05:34Z 2009-12-11T01:51:28Z <p>I have jQuery but I'm not sure if it has any built-in sorting helpers. I could make a 2d array of each item's <code>text</code>, <code>value</code>, and <code>selected</code> properties, but I don't think that javascript's built in <code>Array.sort()</code> would work correctly.</p> http://stackoverflow.com/questions/1772734/how-do-i-set-the-stripformattingonpaste-property-of-a-telerik-radeditor-with-java 0 How do I set the StripFormattingOnPaste property of a Telerik RadEditor with JavaScript? travis 2009-11-20T19:28:33Z 2009-11-27T23:08:42Z <p>I don't have access to the actual asp.net server tag itself, so I need to change the <a href="http://www.telerik.com/help/aspnet/editor/radeditor-telerik.webcontrols.radeditor-stripformattingonpaste.html" rel="nofollow"><code>StripFormattingOnPaste</code> property</a> to the <a href="http://www.telerik.com/help/aspnet/editor/radeditor-telerik.webcontrols.editorstripformattingoptions.html" rel="nofollow"><code>EditorStripFormattingOptions</code> enum</a> with JavaScript and I'm not sure how. I have some code that adds an <code>OnClientLoad()</code> and <code>OnClientCommandExecuted()</code> functions that works so I can add it in there, I'm just not sure where the property exists on the client-side and what the enum value would be:</p> <pre><code>// init OnClientLoad and OnClientCommandExecuted event handlers for all radeditors on the page Sys.Application.add_load(function() { if (typeof ($telerik) != "undefined") { if ($telerik.radControls &amp;&amp; Telerik.Web.UI.RadEditor) { for (var i = 0, l = $telerik.radControls.length; i &lt; l; i++) { var control = $telerik.radControls[i]; if (Telerik.Web.UI.RadEditor.isInstanceOfType(control)) { var editor = control; // ??? editor._stripFormattingOptions = Telerik.Web.UI.StripFormattingOptions.NoneSupressCleanMessage // editor already loaded, fire event OnClientLoad(editor); // attach event handler for paste commands editor.add_commandExecuted(function(ed, args) { return OnClientCommandExecuted(ed, args); }); } } } } }); </code></pre> <p><strong>Update:</strong> I've discovered that the correct enum setting that I want is <code>Telerik.Web.UI.StripFormattingOptions.NoneSupressCleanMessage</code>.</p> <p><strong>Update #2:</strong> I see that the RadEditor JS object has a <code>_stripFormattingOptions</code> property, but I think it might just be for private use.</p> http://stackoverflow.com/questions/136500/does-xslt-have-a-split-function 4 Does XSLT have a Split() function? travis 2008-09-25T22:07:52Z 2009-11-10T12:33:35Z <p>I have a string in a node and I'd like to split the string on '?' and return the last item in the array.</p> <p>For example, in the block below:</p> <pre><code>&lt;a&gt; &lt;xsl:attribute name="href"&gt; /newpage.aspx?&lt;xsl:value-of select="someNode"/&gt; &lt;/xsl:attribute&gt; Link text &lt;/a&gt; </code></pre> <p>I'd like to split the <code>someNode</code> value.</p> <p>Edit: Here's the VB.Net that I use to load the Xsl for my Asp.Net page:</p> <pre><code>Dim xslDocPath As String = HttpContext.Current.Server.MapPath("~/App_Data/someXslt.xsl") Dim myXsltSettings As New XsltSettings() Dim myXMLResolver As New XmlUrlResolver() myXsltSettings.EnableScript = True myXsltSettings.EnableDocumentFunction = True myXslDoc = New XslCompiledTransform(False) myXslDoc.Load(xslDocPath, myXsltSettings, myXMLResolver) Dim myStringBuilder As StringBuilder = New StringBuilder() Dim myXmlWriter As XmlWriter = Nothing Dim myXmlWriterSettings As XmlWriterSettings = New XmlWriterSettings() myXmlWriterSettings.ConformanceLevel = ConformanceLevel.Auto myXmlWriterSettings.Indent = True myXmlWriterSettings.OmitXmlDeclaration = True myXmlWriter = XmlWriter.Create(myStringBuilder, myXmlWriterSettings) myXslDoc.Transform(xmlDoc, argumentList, myXmlWriter) Return myStringBuilder.ToString() </code></pre> http://stackoverflow.com/questions/1579055/is-there-a-way-to-get-a-telerik-radeditor-to-not-show-the-toolbar-by-default-when 0 Is there a way to get a Telerik RadEditor to not show the toolbar by default when editor.set_html(value) is called in ShowOnFocus mode? travis 2009-10-16T16:26:44Z 2009-10-16T20:45:40Z <p>I'm trying to simulate keypresses and clicks in jQuery, which is working to blur the toolbar in IE6 but in Firefox it seems to remain open. </p> <p>Is there some way to blur the editor or some <a href="http://www.telerik.com/help/aspnet-ajax/editor-getting-familiar-with-client-side-api.html" rel="nofollow">setting</a> that I'm missing that makes it so that it doesn't steal focus and show the toolbar by default?</p> <p><strong>Update</strong> it is showing up because I am calling <code>editor.set_html(value);</code> in the <code>OnClientLoad()</code> event for the editor. Is there any way to get the toolbar to hide after calling the <code>set_html()</code> function?</p> http://stackoverflow.com/questions/1579055/is-there-a-way-to-get-a-telerik-radeditor-to-not-show-the-toolbar-by-default-when/1580306#1580306 0 Answer by travis for Is there a way to get a Telerik RadEditor to not show the toolbar by default when editor.set_html(value) is called in ShowOnFocus mode? travis 2009-10-16T20:45:40Z 2009-10-16T20:45:40Z <p>After much googling, I discovered <a href="http://www.telerik.com/community/forums/aspnet-ajax/editor/issue-in-set-html-and-find-of-radeditor-q2-2008.aspx" rel="nofollow">this post</a>:</p> <blockquote> <p>When the set_html() method is fired, the operation is added to the Undo list. You should use the innerHTML attribute of the editor's content area to set content in the editor</p> </blockquote> <p>So instead of <code>editor.set_html(value);</code>, I use <code>editor.get_contentArea().innerHTML = value;</code> and now the toolbar doesn't open by default!</p> http://stackoverflow.com/questions/1567533/whats-the-most-useful-validationexpression-used-in-your-regularexpressionvalidat 0 What's the most useful ValidationExpression used in your RegularExpressionValidator controls? What should be used on every text input? travis 2009-10-14T16:41:42Z 2009-10-14T18:08:37Z <p>While working on a huge form for a client I realized that the majority of the regex validators I had were for the same regex:</p> <pre><code>^[^&lt;&gt;]*$ </code></pre> <p>It's an easy way to prevent HTML entry into of TextBox controls.</p> <p>I was curious if anyone else had a regex that they used more often or if there's one that I should be using instead of this one.</p> http://stackoverflow.com/questions/14697/what-url-rewriter-do-you-use-for-asp-net 12 What Url rewriter do you use for ASP.Net? travis 2008-08-18T14:32:12Z 2009-10-14T15:33:15Z <p>I've looked at several URL rewriters for ASP.Net and IIS and was wondering what everyone else uses, and why. </p> <p>Here are the ones that I have used or looked at:</p> <ul> <li><a href="http://www.codeproject.com/KB/aspnet/urlrewriter.aspx" rel="nofollow">ThunderMain URLRewriter</a>: used in a previous project, didn't quite have the flexibility/performance we were looking for</li> <li><a href="http://web.archive.org/web/20070202012119/blog.ewal.net/2004/04/14/a-url-redirecting-url-rewriting-httpmodule/" rel="nofollow">Ewal UrlMapper</a>: used in a current project, but source seems to be abandoned</li> <li><a href="http://www.urlrewriting.net/149/en/home.html" rel="nofollow">UrlRewritingNet.UrlRewrite</a>: seems like a decent library but documentation's poor grammar leaves me feeling uneasy</li> <li><a href="http://urlrewriter.net/" rel="nofollow">UrlRewriter.NET</a>: this is my current fav, has great flexibility, although the extra functions pumped into the replacement regexs changes the standard .Net regex syntax a bit</li> <li><a href="http://www.managedfusion.com/products/url-rewriter/" rel="nofollow">Managed Fusion URL Rewriter</a>: I found this one in a <a href="http://beta.stackoverflow.com/questions/2262/aspnet-url-rewriting#2268" rel="nofollow">previous question</a> on stack overflow, but haven't tried it out yet, from the example syntax, it doesn't seem to be editable via web.config</li> </ul> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used 12 What is the most brilliant regex you've ever used? travis 2008-08-21T16:29:24Z 2009-09-30T11:06:33Z <p>I'm constantly amazed by the power of the regex. What I'm looking for here is: </p> <ul> <li>Regexs that are more <em>cleverly</em> badass than <em>ridiculously</em> badass</li> <li>Regex replacements are acceptable as well if you've had some cool usage of them</li> <li>Refactored code to use a regex and make it more efficient</li> <li>Refactored a large regex with a smaller one</li> <li>Humorous regexs, especially if they have been used in production</li> </ul> <p>I think that the most badass regex that I've ever used was that <a href="http://ex-parrot.com/~pdw/Mail-RFC822-Address.html" rel="nofollow"><em>absoludicrous</em> RFC822 email validation regex</a> that I converted to C# and compiled for some form validation (it worked beautifully). It was an example of ridiculousness more than cleverness though.</p> <p>(since this question is very subjective, after a week, I'll mark the highest rated answer as accepted, is that fair?)</p> http://stackoverflow.com/questions/61088/hidden-features-of-javascript/123136#123136 5 Answer by travis for Hidden Features of JavaScript? travis 2008-09-23T19:13:06Z 2009-09-22T22:57:01Z <p>Here's a couple of shortcuts:</p> <pre><code>var a = []; // equivalent to new Array() var o = {}; // equivalent to new Object() </code></pre> http://stackoverflow.com/questions/44903/is-there-any-way-to-repopulate-an-html-selects-options-without-firing-the-change 2 Is there any way to repopulate an Html Select's Options without firing the Change event (using jQuery)? travis 2008-09-04T22:32:51Z 2009-09-22T03:06:55Z <p>I have multiple selects:</p> <pre><code>&lt;select id="one"&gt; &lt;option value="1"&gt;one&lt;/option&gt; &lt;option value="2"&gt;two&lt;/option&gt; &lt;option value="3"&gt;three&lt;/option&gt; &lt;/select&gt; &lt;select id="two"&gt; &lt;option value="1"&gt;one&lt;/option&gt; &lt;option value="2"&gt;two&lt;/option&gt; &lt;option value="3"&gt;three&lt;/option&gt; &lt;/select&gt; </code></pre> <p>What I want is to select "one" from the first select, then have that option be removed from the second one. Then if you select "two" from the second one, I want that one removed from the first one.</p> <p>Here's the JS I have currently:</p> <pre><code>$(function () { var $one = $("#one"); var $two = $("#two"); var selectOptions = []; $("select").each(function (index) { selectOptions[index] = []; for (var i = 0; i &lt; this.options.length; i++) { selectOptions[index][i] = this.options[i]; } }); $one.change(function () { var selectedValue = $("option:selected", this).val(); for (var i = 0; i &lt; selectOptions[1].length; i++) { var exists = false; for (var x = 0; x &lt; $two[0].options.length; x++) { if ($two[0].options[x].value == selectOptions[1][i].value) exists = true; } if (!exists) $two.append(selectOptions[1][i]); } $("option[value='" + selectedValue + "']", $two).remove(); }); $two.change(function () { var selectedValue = $("option:selected", this).val(); for (var i = 0; i &lt; selectOptions[0].length; i++) { var exists = false; for (var x = 0; x &lt; $one[0].options.length; x++) { if ($one[0].options[x].value == selectOptions[0][i].value) exists = true; } if (!exists) $one.append(selectOptions[0][i]); } $("option[value='" + selectedValue + "']", $one).remove(); }); }); </code></pre> <p>But when the elements get repopulated, it fires the change event in the select whose options are changing. I tried just setting the <code>disabled</code> attribute on the option I want to remove, but that doesn't work with IE6.</p> http://stackoverflow.com/questions/1456799/jquery-and-change-with-more-than-1-function/1456839#1456839 1 Answer by travis for Jquery and change() with more than 1 function? travis 2009-09-21T21:02:01Z 2009-09-21T21:07:03Z <p>Pretty sure that this will work inside the change function:</p> <pre><code>$('select[name=event-recurring]').change (function (){ switch ($('option:selected', this).val()) { case "daily": // do something break; case "weekly": // do something break; case "monthly": // do something break; } }); </code></pre> http://stackoverflow.com/questions/926617/correctly-matching-an-ending-tag-with-its-starting-tag-in-html-with-a-regex 0 Correctly matching an ending tag with its starting tag in HTML with a RegEx travis 2009-05-29T15:30:43Z 2009-09-18T21:11:30Z <p>I'm using VB.Net in an ASP.Net 2.0 app to run some regular expressions that remove some unnecessary markup. One of the things that I'd like to do is remove span elements that don't have any attributes in them:</p> <pre><code>output = Regex.Replace(output, "&lt;span\s*&gt;(?&lt;Text&gt;.*?)&lt;/span&gt;" &amp; styleRegex, "${Text}", RegexOptions.Compiled Or RegexOptions.CultureInvariant Or RegexOptions.IgnoreCase Or RegexOptions.Singleline) </code></pre> <p>So for this content:</p> <pre><code>&lt;span&gt;Lorem &lt;span class="special"&gt;ipsum&lt;/span&gt; dolor sit amet.&lt;/span&gt; </code></pre> <p>I'd like to remove the outer span elements. Unfortunately, my regex above gives me this as a result, since the closing span matches the first one it comes across:</p> <pre><code>Lorem &lt;span class="special"&gt;ipsum dolor sit amet.&lt;/span&gt; </code></pre> <p>Is this possible with a RegEx or will I have to implement something a bit more advanced?</p> http://stackoverflow.com/questions/926617/correctly-matching-an-ending-tag-with-its-starting-tag-in-html-with-a-regex/1446858#1446858 0 Answer by travis for Correctly matching an ending tag with its starting tag in HTML with a RegEx travis 2009-09-18T21:11:30Z 2009-09-18T21:11:30Z <p>XSLT isn't an option since the input may not always be valid XML and the <a href="http://www.codeplex.com/htmlagilitypack" rel="nofollow">HTML Agility Pack on Codeplex</a> looks pretty sweet but is really overkill in this case. Here's the final RegEx I ended up using:</p> <pre><code>&lt;span\s*&gt;(?&lt;Text&gt;.*?(?:&lt;span[^&gt;]*&gt;.*?&lt;/span&gt;.*?)*)&lt;/span&gt; </code></pre> <p>Replacing that with <code>${Text}</code> effectively stripped the useless outer <code>span</code> tags in all cases I've tested.</p> http://stackoverflow.com/questions/86477/does-c-have-an-equivalent-to-javascripts-encodeuricomponent 2 Does C# have an equivalent to JavaScript's encodeURIComponent()? travis 2008-09-17T19:05:10Z 2009-09-07T16:01:17Z <p>In JavaScript:</p> <pre><code>encodeURIComponent("©√") == "%C2%A9%E2%88%9A" </code></pre> <p>Is there an equivalent for C# applications? For escaping HTML characters I used:</p> <pre><code>txtOut.Text = Regex.Replace(txtIn.Text, @"[\u0080-\uFFFF]", m =&gt; @"&amp;#" + ((int)m.Value[0]).ToString() + ";"); </code></pre> <p>But I'm not sure how to convert the match to the correct hexadecimal format that JS uses. For example this code:</p> <pre><code>txtOut.Text = Regex.Replace(txtIn.Text, @"[\u0080-\uFFFF]", m =&gt; @"%" + String.Format("{0:x}", ((int)m.Value[0]))); </code></pre> <p>Returns "<code>%a9%221a"</code> for <code>"©√"</code> instead of <code>"%C2%A9%E2%88%9A"</code>. It looks like I need to split the string up into bytes or something.</p> <p>Edit: This is for a windows app, the only items available in <code>System.Web</code> are: <code>AspNetHostingPermission</code>, <code>AspNetHostingPermissionAttribute</code>, and <code>AspNetHostingPermissionLevel</code>.</p> http://stackoverflow.com/questions/1341935/svnssh-authentication-isses-when-running-cruisecontrol-net-1-4-4-sp1-service-on 1 SVN+SSH authentication isses when running CruiseControl.NET 1.4.4 SP1 service on Windows Server 2003 travis 2009-08-27T15:45:08Z 2009-09-01T04:16:47Z <p>The SVN+SSH protocol works great for the logged-in user because we have Pageant (PuTTY authentication agent) running in the background for that user. When we try to run the ccservice (as opposed to the ccnet.exe app) the svn+ssh fails. What am I missing in the config to get it working?</p> <pre><code>&lt;cruisecontrol xmlns:cb="urn:ccnet.config.builder"&gt; &lt;project name="ProjectXCore" queue="ProjectXQueue" queuePriority="1"&gt; &lt;workingDirectory&gt;D:\cc\ProjectX\code\trunk\src\&lt;/workingDirectory&gt; &lt;artifactDirectory&gt;D:\cc\ProjectX\artifact\&lt;/artifactDirectory&gt; &lt;category&gt;ProjectX&lt;/category&gt; &lt;webURL&gt;http://localhost/ccnet/&lt;/webURL&gt; &lt;modificationDelaySeconds&gt;30&lt;/modificationDelaySeconds&gt; &lt;labeller type="defaultlabeller"&gt; &lt;prefix&gt;0.1.&lt;/prefix&gt; &lt;incrementOnFailure&gt;true&lt;/incrementOnFailure&gt; &lt;labelFormat&gt;000&lt;/labelFormat&gt; &lt;/labeller&gt; &lt;state type="state" directory="State" /&gt; &lt;sourcecontrol type="svn"&gt; &lt;trunkUrl&gt;svn+ssh://10.10.2.19/srv/svn/ProjectX/trunk/src&lt;/trunkUrl&gt; &lt;workingDirectory&gt;D:\cc\ProjectX\code\trunk\src&lt;/workingDirectory&gt; &lt;executable&gt;C:\Program Files\Subversion\bin\svn.exe&lt;/executable&gt; &lt;username&gt;super&lt;/username&gt; &lt;password&gt;duper&lt;/password&gt; &lt;timeout units="minutes"&gt;5&lt;/timeout&gt; &lt;/sourcecontrol&gt; </code></pre> <p>TortoiseSvn is installed on the server if that helps. I'm not sure if I need to add some command-line switches to get it to work or what.</p> http://stackoverflow.com/questions/18746/how-would-you-spend-150-on-developer-tools/19288#19288 3 Answer by travis for How would you spend $150 on developer tools? travis 2008-08-21T03:29:10Z 2009-08-28T19:53:33Z <ul> <li>$150 <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822136033" rel="nofollow">WD Raptor 74GB 10K rpm</a></li> <li>$150 <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820233089" rel="nofollow">Corsair 32GB SSD</a></li> </ul> <p>Hardware counts as a developer tool, right? :-D</p> <p>...or for $10 more:</p> <ul> <li>$160 (After Rebate) <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822136296" rel="nofollow">WD VelociRaptor 150GB 10K rpm</a></li> </ul> <p>I have 2 of the WD Raptor 10K rpm drives in a RAID 0 here at work and my machine compiles very fast.</p> http://stackoverflow.com/questions/52591/asp-net-word-count-with-a-custom-validator 3 ASP.Net word count with a custom validator travis 2008-09-09T18:50:45Z 2009-08-28T19:37:26Z <p>A requirement for an ASP.Net 2.0 project I'm working on limits a certain field to a max of 10 words (not characters). I'm currently using a CustomValidator control with the following ServerValidate method:</p> <pre><code>Protected Sub TenWordsTextBoxValidator_ServerValidate(ByVal source As Object, ByVal args As System.Web.UI.WebControls.ServerValidateEventArgs) Handles TenWordsTextBoxValidator.ServerValidate '' 10 words args.IsValid = args.Value.Split(" ").Length &lt;= 10 End Sub </code></pre> <p>Does anyone have a more thorough/accurate method of getting a word count?</p> http://stackoverflow.com/questions/52591/asp-net-word-count-with-a-custom-validator/52737#52737 1 Answer by travis for ASP.Net word count with a custom validator travis 2008-09-09T19:48:51Z 2009-08-28T19:37:26Z <p>This regex seems to be working great:</p> <pre><code>"^(\b\S+\b\s*){0,10}$" </code></pre> <p><strong>Update</strong>: the above had a few flaws so I ended up using this RegEx:</p> <pre><code>[\s\x21-\x2F\x3A-\x40\x5B-\x60\x7B-\xBF]+ </code></pre> <p>I <code>split()</code> the string on that regex and use the <code>length</code> of the resulting array to get the correct word count.</p> http://stackoverflow.com/questions/1341935/svnssh-authentication-isses-when-running-cruisecontrol-net-1-4-4-sp1-service-on/1343309#1343309 1 Answer by travis for SVN+SSH authentication isses when running CruiseControl.NET 1.4.4 SP1 service on Windows Server 2003 travis 2009-08-27T19:27:03Z 2009-08-28T15:54:01Z <p>I think I've figured it out, this config is working:</p> <pre><code> &lt;sourcecontrol type="svn"&gt; &lt;trunkUrl&gt;svn+ssh://10.10.10.10/srv/svn/ProjectX/trunk/src&lt;/trunkUrl&gt; &lt;workingDirectory&gt;D:\cc\ProjectX\code\trunk\src&lt;/workingDirectory&gt; &lt;executable&gt;C:\Program Files\TortoiseSVN\bin\TortoisePlink.exe&lt;/executable&gt; &lt;buildArgs&gt; -N -L 3690:localhost:3690 -l super -pw duper -i "C:\Documents and Settings\Super\id_rsa.ppk" -ssh 10.10.10.10 | "C:\Program Files\Subversion\bin\svn.exe" &lt;/buildArgs&gt; &lt;username&gt;super&lt;/username&gt; &lt;password&gt;duper&lt;/password&gt; &lt;timeout units="minutes"&gt;5&lt;/timeout&gt; &lt;/sourcecontrol&gt; </code></pre> <p>I take it back, that config didn't work, an older version of the config was cached :-(</p> <p>This one is working now though:</p> <pre><code>&lt;sourcecontrol type="svn"&gt; &lt;trunkUrl&gt;svn+ssh://10.10.2.19/srv/svn/ProjectX/trunk/src&lt;/trunkUrl&gt; &lt;workingDirectory&gt;D:\cc\ProjectX\code\trunk\src&lt;/workingDirectory&gt; &lt;executable&gt;"C:\Program Files\Subversion\bin\svn.exe"&lt;/executable&gt; &lt;username&gt;super&lt;/username&gt; &lt;password&gt;duper&lt;/password&gt; &lt;timeout units="minutes"&gt;5&lt;/timeout&gt; &lt;/sourcecontrol&gt; </code></pre> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1291676#1291676 5 Answer by travis for What is your best programmer joke? travis 2009-08-18T03:45:01Z 2009-08-18T03:45:01Z <p>I have add Gob's program from Arrested Development:</p> <p><img src="http://farm4.static.flickr.com/3174/2998685031%5Feb3d521f9a%5Fo.gif" alt="Gob's Program: Penus Penus Penus etc..." /></p> <blockquote> <p>"What is it Michael? Are you a robot? Don't you have enough RAM for <em>feelings</em>?"</p> </blockquote> http://stackoverflow.com/questions/1261985/how-do-i-loop-through-a-regexs-matches-inside-a-replace-in-javascript 0 How do I loop through a regex's matches inside a replace in javascript? travis 2009-08-11T17:59:26Z 2009-08-11T21:41:58Z <p>I have the following JavaScript (the spaces in the <code>&lt;P&gt;</code>s are non-breaking):</p> <pre><code>var html = '...&lt;li&gt;sub 2&lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;&lt;/ol&gt;\n\ &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subsub 1&lt;/p&gt;\n\ &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ii.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subsub 2&lt;/p&gt;\n\ &lt;ol start="2"&gt; \n\ &lt;ol start="3"&gt; \n\ &lt;li&gt;sub 3&lt;/li&gt;&lt;/ol&gt;...'; $(function () { var nestedListFixer = /(?:&lt;\/li&gt;&lt;\/ol&gt;\s*)+(?:&lt;p&gt;(?:&amp;(?:nbsp|\#0*160|x0*A0);)+(?:\s[ivxlcdm]+\.)(?:&amp;(?:nbsp|\#0*160|x0*A0);)+\s(.*?)&lt;\/p&gt;\s*)+(?:&lt;ol(?:\sstyle=\"[^\"]+\")?\sstart=\"[^\"]+\"&gt;\s*)+/i; html = html.replace(nestedListFixer, function($0, $1){ var lis = "" $.each($1, function () { lis += "&lt;li&gt;" + this + "&lt;/li&gt;\n"; }); alert("&lt;ol&gt;\n" + lis + "&lt;/ol&gt;&lt;/li&gt;"); return "&lt;ol&gt;\n" + lis + "&lt;/ol&gt;&lt;/li&gt;"; }); }); </code></pre> <p>The <code>alert()</code>'s output:</p> <pre><code>&lt;ol&gt; &lt;li&gt;s&lt;/li&gt; &lt;li&gt;u&lt;/li&gt; &lt;li&gt;b&lt;/li&gt; &lt;li&gt;s&lt;/li&gt; &lt;li&gt;u&lt;/li&gt; &lt;li&gt;b&lt;/li&gt; &lt;li&gt; &lt;/li&gt; &lt;li&gt;2&lt;/li&gt; &lt;/ol&gt;&lt;/li&gt; </code></pre> <p>Here's what I hoped it would be:</p> <pre><code>&lt;ol&gt; &lt;li&gt;subsub 1&lt;/li&gt; &lt;li&gt;subsub 2&lt;/li&gt; &lt;/ol&gt;&lt;/li&gt; </code></pre> <p>How do I correctly loop through each match in the <code>$1</code>?</p> <p><strong>Update:</strong> simplified pattern and matching example:</p> <pre><code>var text = '1ab2cb3cd4ab5cb6cd7'; $(function () { var textFixer = /(?:a)(?:b(.*?)c)+(?:d)/i; text = text.replace(textFixer, function($0, $1){ var numbers = ""; $.each($1, function () { numbers += this; }); alert(numbers); return numbers; }); alert(text); }); // actual text: // 13467 // desired text: // 1234567 </code></pre> http://stackoverflow.com/questions/1261985/how-do-i-loop-through-a-regexs-matches-inside-a-replace-in-javascript/1263071#1263071 0 Answer by travis for How do I loop through a regex's matches inside a replace in javascript? travis 2009-08-11T21:36:05Z 2009-08-11T21:36:05Z <p>Here's the solution that I came up with but it doesn't seem to be very efficient:</p> <pre><code>$(function () { var nestedListFixer = /(?:&lt;\/li&gt;&lt;\/ol&gt;\s*)+(?:&lt;p&gt;(?:&amp;(?:nbsp|\#0*160|x0*A0);)+(?:\s[ivxlcdm]+\.)(?:&amp;(?:nbsp|\#0*160|x0*A0);)+\s(.*?)&lt;\/p&gt;\s*)+(?:&lt;ol(?:\sstyle=\"[^\"]+\")?\sstart=\"[^\"]+\"&gt;\s*)+/gi; var nestedListItem = /&lt;p&gt;(?:&amp;(?:nbsp|\#0*160|x0*A0);)+(?:\s[ivxlcdm]+\.)(?:&amp;(?:nbsp|\#0*160|x0*A0);)+\s(.*?)&lt;\/p&gt;\s*/gi; // fix nested lists html = html.replace(nestedListFixer, function($0, $1){ var lis = "" $.each($0.match(nestedListItem), function () { lis += "&lt;li&gt;" + this.replace(nestedListItem, "$1") + "&lt;/li&gt;\n"; }); return "&lt;ol&gt;\n" + lis + "&lt;/ol&gt;&lt;/li&gt;"; }); }); </code></pre> <p>...or for the simpler example above:</p> <pre><code>$(function () { var textFixer = /(?:a)(?:b(.*?)c)+(?:d)/gi; var textItem = /b(.*?)c/gi; text = text.replace(textFixer, function($0, $1){ var numbers = ""; $.each($0.match(textItem), function () { numbers += this.replace(textItem, "$1"); }); return numbers; }); }); </code></pre> <p>Doing a <code>.replace()</code> substitution, inside a loop of a <code>.match()</code> array, inside of a custom <code>.replace()</code> function just doesn't seem like it is very economical. It does give me the output that I was looking for though.</p> http://stackoverflow.com/questions/1257479/stalling-regex-in-vb-net-2-0-for-asp-net 0 Stalling Regex in VB.Net 2.0 (for ASP.Net) travis 2009-08-10T22:04:35Z 2009-08-10T22:12:22Z <p>I'm running a simpler version of <a href="http://stackoverflow.com/questions/918016/net-regex-match-grouping-and-repetition-question/918045#918045">this regex</a>:</p> <pre><code>&lt;p\s*&gt;(?:&amp;(?:nbsp|\#0*160|x0*A0);|(?:&lt;br\s*/?&gt;)|[\s\u00A0]+)*&lt;/p&gt; </code></pre> <p>On this string:</p> <pre><code>&lt;p&gt;paste in some bullets from word...&lt;/p&gt;&lt;p&gt;Firefox:&lt;/p&gt;&lt;p&gt;Bulleted list test:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;One &lt;/li&gt;&lt;li&gt;Two &lt;ul&gt;&lt;li&gt;Sub item one &lt;/li&gt;&lt;li&gt;Sub 2 &lt;ul&gt;&lt;li&gt;Subsub item1 &lt;/li&gt;&lt;li&gt;Subsub2&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Sub3&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Three &lt;/li&gt;&lt;li&gt;Four&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Ordered list test:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;one &lt;/li&gt;&lt;li&gt;two &lt;ol&gt;&lt;li&gt;sub 1 &lt;/li&gt;&lt;li&gt;sub 2&lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;                                                               i.      subsub 1&lt;/p&gt;&lt;p&gt;                                                             ii.      subsub 2&lt;/p&gt;&lt;ol start="2"&gt;&lt;ol start="3"&gt;&lt;li&gt;sub 3&lt;/li&gt;&lt;/ol&gt;&lt;li&gt;three &lt;/li&gt;&lt;li&gt;four&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;test&lt;/p&gt;&lt;p&gt;IE6&lt;/p&gt;&lt;p&gt;Bulleted list test:&lt;/p&gt;&lt;ul style="list-style-type: disc;"&gt;&lt;li&gt;One&lt;/li&gt;&lt;li&gt;Two&lt;ul style="list-style-type: circle;"&gt;&lt;li&gt;Sub item one&lt;/li&gt;&lt;li&gt;Sub 2&lt;ul style="list-style-type: square;"&gt;&lt;li&gt;Subsub item1&lt;/li&gt;&lt;li&gt;Subsub2&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Sub3&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Three&lt;/li&gt;&lt;li&gt;Four&lt;/li&gt;&lt;/ul&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;Ordered list test:&lt;/p&gt;&lt;ol style="list-style-type: decimal;"&gt;&lt;li&gt;one&lt;/li&gt;&lt;li&gt;two&lt;ol style="list-style-type: lower-alpha;"&gt;&lt;li&gt;sub 1&lt;/li&gt;&lt;li&gt;sub 2&lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;                                                               i.      subsub 1&lt;/p&gt;&lt;p&gt;                                                             ii.      subsub 2&lt;/p&gt;&lt;ol style="list-style-type: decimal;" start="2"&gt;&lt;ol style="list-style-type: lower-alpha;" start="3"&gt;&lt;li&gt;sub 3&lt;/li&gt;&lt;/ol&gt;&lt;li&gt;three&lt;/li&gt;&lt;li&gt;four&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt; </code></pre> <p>And the process spikes to 100% for seemingly infinity. I must be doing something redundantly/recursively with the regex but I'm not sure what. It exhibits the same behavior when testing the <a href="http://www.ultrapico.com/Expresso.htm" rel="nofollow">regex in Expresso</a>.</p> http://stackoverflow.com/questions/1257479/stalling-regex-in-vb-net-2-0-for-asp-net/1257518#1257518 0 Answer by travis for Stalling Regex in VB.Net 2.0 (for ASP.Net) travis 2009-08-10T22:12:22Z 2009-08-10T22:12:22Z <p>This seems to fix it:</p> <pre><code>&lt;p\s*&gt;(?:&amp;(?:nbsp|\#0*160|x0*A0);|(?:&lt;br\s*/?&gt;)|[\s\u00A0])*&lt;/p&gt; </code></pre> <p>I think that the '+' was too redundant.</p> http://stackoverflow.com/questions/1234028/changing-the-value-of-a-telerik-radeditor-with-javascript-jquery 1 Changing the value of a Telerik RadEditor with Javascript/jQuery travis 2009-08-05T15:34:42Z 2009-08-07T01:47:12Z <p>I'm trying to manually clean the HTML of a Telerik RadEditor with Javascript but I can't seem to find the correct place to store the value so that it gets saved on post back.</p> <p>Here's the JS I have:</p> <pre><code>$(function () { jQuery.fixHash = function ($html) { // modify $html return $html; }; $("#adminEditingArea input[id$='SaveButton']").unbind("click").click(function () { $("iframe[id$='_contentIframe']").trigger("save"); // call .net postback return false; }); }); var editorSaveEventInit = false; function InitSaveEvent() { if (!editorSaveEventInit) { var $EditFrames = $("iframe[id$='_contentIframe']"); if ($EditFrames &amp;&amp; $EditFrames.length &gt; 0) { $EditFrames.bind("save", function (e) { var $thisFrame = $(this); var thisFrameContents = $thisFrame.contents(); if (thisFrameContents) { var telerikContentIFrame = thisFrameContents.get(0); var $body = $("body", telerikContentIFrame); var html = $.fixHash($body).html(); $body.html(html); // also tried storing the modified HTML in the textarea, but it doesn't seem to save: //$thisFrame.prev("textarea").html(encodeURIComponent("&lt;body&gt;" + html + "&lt;/body&gt;")); } }); editorSaveEventInit = true; } } }; $(window).load(function () { InitSaveEvent(); }); </code></pre> <p>Is there any way to access the Telerik RadEditor object with JavaScript (using <code>OnClientCommandExecuted()</code>?) so that I can access the <code>.get_html()</code> and <code>.set_html(value)</code> functions? If not, what values do I need to set before posting back?</p> http://stackoverflow.com/questions/1234087/are-jquerys-first-and-eq0-selectors-functionally-equivalent 1 Are jQuery's :first and :eq(0) selectors functionally equivalent? travis 2009-08-05T15:45:16Z 2009-08-05T20:36:26Z <p>I'm not sure whether to use <a href="http://docs.jquery.com/Selectors/first" rel="nofollow"><code>:first</code></a> or <a href="http://docs.jquery.com/Selectors/eq#index" rel="nofollow"><code>:eq(0)</code></a> in a selector. I'm pretty sure that they'll always return the same object, but is one speedier than the other? </p> <p>I'm sure someone here must have benchmarked these selectors before and I'm not really sure the best way to test if one is faster.</p> <p>Update: here's the bench I ran:</p> <pre><code>/* start bench */ for (var count = 0; count &lt; 5; count++) { var i = 0, limit = 10000; var start, end; start = new Date(); for (i = 0; i &lt; limit; i++) { var $radeditor = $thisFrame.parents("div.RadEditor.Telerik:eq(0)"); } end = new Date(); alert("div.RadEditor.Telerik:eq(0) : " + (end-start)); var start = new Date(); for (i = 0; i &lt; limit; i++) { var $radeditor = $thisFrame.parents("div.RadEditor.Telerik:first"); } end = new Date(); alert("div.RadEditor.Telerik:first : " + (end-start)); start = new Date(); for (i = 0; i &lt; limit; i++) { var radeditor = $thisFrame.parents("div.RadEditor.Telerik")[0]; } end = new Date(); alert("(div.RadEditor.Telerik)[0] : " + (end-start)); start = new Date(); for (i = 0; i &lt; limit; i++) { var $radeditor = $($thisFrame.parents("div.RadEditor.Telerik")[0]); } end = new Date(); alert("$((div.RadEditor.Telerik)[0]) : " + (end-start)); } /* end bench */ </code></pre> <p>I assumed that the 3rd would be the fastest and the 4th would be the slowest, but here's the results that I came up with:</p> <pre><code>FF3: :eq(0) :first [0] $([0]) trial1 5275 4360 4107 3910 trial2 5175 5231 3916 4134 trial3 5317 5589 4670 4350 trial4 5754 4829 3988 4610 trial5 4771 6019 4669 4803 Average 5258.4 5205.6 4270 4361.4 IE6: :eq(0) :first [0] $([0]) trial1 13796 15733 12202 14014 trial2 14186 13905 12749 11546 trial3 12249 14281 13421 12109 trial4 14984 15015 11718 13421 trial5 16015 13187 11578 10984 Average 14246 14424.2 12333.6 12414.8 </code></pre> <p>I was correct about just returning the first native DOM object being the fastest (<code>[0]</code>), but I can't believe the wrapping that object in the jQuery function was faster that both <code>:first</code> and <code>:eq(0)</code>!</p> <p>Unless I'm doing it wrong.</p> http://stackoverflow.com/questions/1234028/changing-the-value-of-a-telerik-radeditor-with-javascript-jquery/1234032#1234032 0 Answer by travis for Changing the value of a Telerik RadEditor with Javascript/jQuery travis 2009-08-05T15:35:45Z 2009-08-05T16:01:19Z <p>Ah, just discovered Telerik's built-in <code>$find()</code> function: <a href="http://www.telerik.com/help/aspnet-ajax/editor%5Fgetingreferencetoradeditor.html" rel="nofollow">http://www.telerik.com/help/aspnet-ajax/editor_getingreferencetoradeditor.html</a></p> <p>Edit: here's the solution I came up with for my <code>InitSaveEvent()</code> function:</p> <pre><code>var editorSaveEventInit = false; function InitSaveEvent() { if (!editorSaveEventInit) { var $EditFrames = $("iframe[id$='_contentIframe']"); if ($EditFrames &amp;&amp; $EditFrames.length &gt; 0) { $EditFrames.bind("save", function (e) { var $thisFrame = $(this); var thisFrameContents = $thisFrame.contents(); if (thisFrameContents) { var telerikContentIFrame = thisFrameContents.get(0); var $body = $("body", telerikContentIFrame); var html = $.fixHash($body).html(); // SOLUTION! var $radeditor = $thisFrame.parents("div.RadEditor.Telerik:eq(0)"); var editor = $find($radeditor.attr("id")); editor.set_html(html); // ☺ } }); editorSaveEventInit = true; } } }; </code></pre> http://stackoverflow.com/questions/30211/windows-built-in-zip-compression-script-able 11 Windows built-in ZIP compression script-able? travis 2008-08-27T14:06:52Z 2009-07-29T12:05:53Z <p>Is the zip compression that is built into Windows XP/Vista/2003/2008 able to be scripted at all? What executable would I have to call from a BAT/CMD file? or is it possible to do it with VBScript?</p> <p>I realize that this is possible using WinZip, 7-zip and other external apps, but I'm looking for something that requires no external apps to be installed.</p> http://stackoverflow.com/questions/1144384/how-can-i-tell-if-a-jquery-node-is-at-the-beginning-of-its-parent-node 0 How can I tell if a jQuery node is at the beginning of its parent node? travis 2009-07-17T16:31:10Z 2009-07-17T17:29:54Z <p>Given the following HTML:</p> <pre><code>&lt;p&gt;&lt;img id="one" alt="at beginning, return true" /&gt;Some Text&lt;/p&gt; &lt;p&gt;Some &lt;img id="two" alt="in middle, return false" /&gt;Text&lt;/p&gt; &lt;p&gt;Some Text&lt;img id="three" alt="at end, return false" /&gt;&lt;/p&gt; </code></pre> <p>How would I be able to tell that <code>$("img#one")</code> is at the beginning of its parent node?</p> <p>Ideally what I'm trying to do is this:</p> <pre><code>$("p&gt;img").each(function () { var $this = $(this); var $parent = $this.parent(); if ("$this is at the beginning of $parent.html()") { $parent.before($this); } else { $parent.after($this); } }); </code></pre> <p><strong>Edit:</strong> with <a href="http://stackoverflow.com/questions/1144384/how-can-i-tell-if-a-jquery-node-is-at-the-beginning-of-its-parent-node/1144418#1144418">sebasgo's help</a>, here's the final code and result:</p> <pre><code>$("p&gt;img").each(function () { var $this = $(this); var $parent = $this.parent(); if (this == this.parentNode.firstChild) { $parent.before($this); } else { $parent.after($this); } }); &lt;img id="one" alt="at beginning, return true" /&gt; &lt;p&gt;Some Text&lt;/p&gt; &lt;p&gt;Some Text&lt;/p&gt; &lt;img id="two" alt="in middle, return false" /&gt; &lt;p&gt;Some Text&lt;/p&gt; &lt;img id="three" alt="at end, return false" /&gt; </code></pre> http://stackoverflow.com/questions/890561/concatenate-minify-js-on-the-fly-or-at-build-time-asp-net-mvc/1004111#1004111 0 Answer by travis for Concatenate & Minify JS on the fly OR at build time - ASP.NET MVC travis 2009-06-16T21:43:43Z 2009-06-16T21:58:25Z <p>Here's what I've used for concatenating, compressing and caching CSS and JS files: <a href="http://gist.github.com/130913" rel="nofollow">http://gist.github.com/130913</a></p> <p>It just requires Yahoo.Yui.Compressor.dll in the bin directory. It doesn't compress at compile time, but the files are cached with a file dependency, so they are only loaded once, until they're changed.</p> <p>Then I just add this code in the &lt;head&gt;:</p> <pre><code>&lt;link rel="stylesheet" type="text/css" href="/YuiCompressor.ashx?css=reset,style,etc" /&gt; </code></pre> <p>and this just before the &lt;/body&gt;:</p> <pre><code>&lt;script type="text/javascript" src="/YuiCompressor.ashx?js=main,other,etc"&gt;&lt;/script&gt; </code></pre> <p>It's designed to work with multiple files all in the same path but could easily be upgraded to support different paths.</p> http://stackoverflow.com/questions/43874/restrict-selection-of-select-option-without-disabling-the-field/43931#43931 Comment by travis on Restrict selection of SELECT option without disabling the field travis 2009-12-02T20:28:58Z 2009-12-02T20:28:58Z Damn IE. I wonder if there's an MS-specific equivalent to disabled=&quot;disabled&quot;? Maybe readonly=&quot;readonly&quot;? http://stackoverflow.com/questions/1772734/how-do-i-set-the-stripformattingonpaste-property-of-a-telerik-radeditor-with-java/1810941#1810941 Comment by travis on How do I set the StripFormattingOnPaste property of a Telerik RadEditor with JavaScript? travis 2009-12-01T15:07:47Z 2009-12-01T15:07:47Z Awesome, thanks for the info! http://stackoverflow.com/questions/1634224/how-can-i-start-designing-my-program-on-paper-without-over-engineering-things/1634236#1634236 Comment by travis on How can I start designing my program on paper without over engineering things? travis 2009-11-04T16:11:59Z 2009-11-04T16:11:59Z I use them with space-delimited letter-groups http://stackoverflow.com/questions/1567533/whats-the-most-useful-validationexpression-used-in-your-regularexpressionvalidat Comment by travis on What's the most useful ValidationExpression used in your RegularExpressionValidator controls? What should be used on every text input? travis 2009-10-14T17:45:07Z 2009-10-14T17:45:07Z @Chad: The purpose was to display a friendlier message about potentially unsafe input before a form is even posted back. @Dove: did you mean &quot;would *not*&quot;? @Rubens: thx for the link, I'll check it out. http://stackoverflow.com/questions/1567533/whats-the-most-useful-validationexpression-used-in-your-regularexpressionvalidat/1567596#1567596 Comment by travis on What's the most useful ValidationExpression used in your RegularExpressionValidator controls? What should be used on every text input? travis 2009-10-14T17:40:52Z 2009-10-14T17:40:52Z Actually I do have validateRequest set to true by default. The regex validator will display a much friendlier message than an error message would though. http://stackoverflow.com/questions/44903/is-there-any-way-to-repopulate-an-html-selects-options-without-firing-the-change/44935#44935 Comment by travis on Is there any way to repopulate an Html Select's Options without firing the Change event (using jQuery)? travis 2009-09-29T04:28:44Z 2009-09-29T04:28:44Z It would've been if comments had existed when I added it. http://stackoverflow.com/questions/1140456/can-prototype-or-jquery-return-an-http-status-code-on-an-ajax-request/1301947#1301947 Comment by travis on Can Prototype or JQuery return an HTTP status code on an AJAX request travis 2009-08-20T05:31:19Z 2009-08-20T05:31:19Z If you just wanted to get the status code, I think that type: 'HEAD' might be a little bit more streamlined. Although maybe that's something for the .Net side, I'm not sure if jQuery supports HEAD or not. http://stackoverflow.com/questions/14857/why-does-vs-2005-keep-giving-me-the-x-is-ambiguous-in-the-namespace-y-error/96161#96161 Comment by travis on Why does VS 2005 keep giving me the "'x' is ambiguous in the namespace 'y'" error? travis 2009-08-11T21:50:39Z 2009-08-11T21:50:39Z @Richard: Unfortunately, the power supply on the machine having this issue has died, thus it will be a mystery as to what the actual solution would be, but since I believe this was the closest answer, you get the points and the $5 via paypal to you or the charity of your choice. Just let me know where to send it :-) http://stackoverflow.com/questions/1261985/how-do-i-loop-through-a-regexs-matches-inside-a-replace-in-javascript/1262429#1262429 Comment by travis on How do I loop through a regex's matches inside a replace in javascript? travis 2009-08-11T20:30:15Z 2009-08-11T20:30:15Z Close, I'm trying iterate through the matches of a particular group. so for &quot;abcdcdef&quot;.match(/ab(cd)+ef/) how do I loop through multiple matches of $1? http://stackoverflow.com/questions/1261985/how-do-i-loop-through-a-regexs-matches-inside-a-replace-in-javascript Comment by travis on How do I loop through a regex's matches inside a replace in javascript? travis 2009-08-11T18:46:00Z 2009-08-11T18:46:00Z Wait, &quot;can you not...&quot; were you saying I had already simplified it too much? http://stackoverflow.com/questions/1261985/how-do-i-loop-through-a-regexs-matches-inside-a-replace-in-javascript Comment by travis on How do I loop through a regex's matches inside a replace in javascript? travis 2009-08-11T18:44:19Z 2009-08-11T18:44:19Z I've added a simpler version, does that make more sense? http://stackoverflow.com/questions/1234028/changing-the-value-of-a-telerik-radeditor-with-javascript-jquery/1242506#1242506 Comment by travis on Changing the value of a Telerik RadEditor with Javascript/jQuery travis 2009-08-10T16:46:56Z 2009-08-10T16:46:56Z Awesome, I had no idea those were even possible. I think it might be a bit late to refactor my current solution, but that will definitely come in handy in the future, thanks! http://stackoverflow.com/questions/165408/what-programming-acronyms-do-you-frequently-use-without-knowing-the-meaning-of/167624#167624 Comment by travis on What Programming acronyms do you frequently use without knowing the meaning of travis 2009-07-22T17:30:43Z 2009-07-22T17:30:43Z No, I don't normally try to pronounce anything that has no vowels. :-) Except for the invisible 'e' in JPG and the word &quot;rhythm&quot; if you don't count the 'y'. SWF (&quot;swiff&quot;) and URI (&quot;yoo-ree&quot;) are 2 others the client has enlightened me too. http://stackoverflow.com/questions/35248/large-file-download Comment by travis on Large File Download travis 2009-07-17T17:39:28Z 2009-07-17T17:39:28Z just wondering what you came up with for a solution for this http://stackoverflow.com/questions/1144384/how-can-i-tell-if-a-jquery-node-is-at-the-beginning-of-its-parent-node/1144418#1144418 Comment by travis on How can I tell if a jQuery node is at the beginning of its parent node? travis 2009-07-17T17:07:10Z 2009-07-17T17:07:10Z perfect thanks! since I'm in a .each() I went with (this == this.parentNode.firstChild)