User foxxtrot - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T12:25:19Z http://stackoverflow.com/feeds/user/10369 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1689708/shortcut-for-document-createelementoption/1689799#1689799 0 Answer by foxxtrot for Shortcut for document.createElement("option") ? foxxtrot 2009-11-06T19:29:58Z 2009-11-06T20:45:46Z <p>The biggest problem with the document.createElement technique is that it's really SLOW. Using a framework is best, but either way, I'd suggest building the options list and setting the innerHTML property on the select box.</p> <pre><code>strOptions = ""; for (blah blah blah) { strOptions += '&lt;option value="' + day + '"&gt;' + day + '&lt;/option&gt;' } birthDay.innerHTML = strOptions; </code></pre> <p>The browser is going to be able to parse the HTML a lot faster than you'll be able to build these elements by hand.</p> <p>In response to the comment, this is really why using a platform library is always worth it. In YUI3, I do this:</p> <pre><code>var fillSelectbox = function(select, optionList) { var i, option = ''; for (i = 0; i &lt; optionList.length; i += 1) { option += '&lt;option value="' + optionList[i].Value + '" selected="' + (optionList[i].selected ? '"selected"' : '""') + '"&gt;' + optionList[i].Text + '&lt;/option&gt;'; } select.append(option); select.set('selectedIndex', -1); }; </code></pre> <p>Where select is the selectNode and optionList is a JavaScript array.</p> http://stackoverflow.com/questions/1689133/javascript-show-layer-on-page-load/1689169#1689169 2 Answer by foxxtrot for Javascript show layer on page load foxxtrot 2009-11-06T17:41:20Z 2009-11-06T17:41:20Z <p>jQuery tends to use camelCase for it's function names (per accepted JavaScript best practices). As such, the first word of the function name would be lowercase with each subsequent word being Title case.</p> <pre><code>$("#friendslist").show(); </code></pre> <p>will be what you're looking for. An example of a camelCase function would be:</p> <pre><code>$("#friendslist").setStyle("display: block;"); </code></pre> <p>Which is probably what .show() is doing anyway.</p> http://stackoverflow.com/questions/1669207/how-do-i-merge-aspx-pages-mvc/1669280#1669280 0 Answer by foxxtrot for How do I merge aspx pages MVC? foxxtrot 2009-11-03T18:31:27Z 2009-11-03T18:31:27Z <p>While you probably should have a Master Page that can contain your sidebar (this is how I do things), you could also have sidebar as a View User Control, which can be rendered using the Html.RenderPartial helper method.</p> http://stackoverflow.com/questions/1668804/what-is-a-good-yui-replacement-for-jquery-live/1668855#1668855 5 Answer by foxxtrot for What is a good yui replacement for jquery.live foxxtrot 2009-11-03T17:20:47Z 2009-11-03T17:20:47Z <p>In YUI3, <a href="http://developer.yahoo.com/yui/3/event/#delegate" rel="nofollow">delegates</a> perform this function. The following snippet will fire a method called "clickHandler" on any 'p' tag in the body.</p> <pre><code>YUI().use('event', function(Y) { Y.delegate("click", clickHandler, "body", "p"); }); </code></pre> <p>YUI 2.8.0 has <a href="http://developer.yahoo.com/yui/event/#delegate" rel="nofollow">delegate</a> functionality as well, but the syntax is slightly different.</p> http://stackoverflow.com/questions/339344/is-there-a-net-equivalent-to-apache-hadoop/1505238#1505238 1 Answer by foxxtrot for Is there a .Net equivalent to Apache Hadoop? foxxtrot 2009-10-01T17:09:44Z 2009-10-01T17:09:44Z <p>Recently, MySpace released their .NET MapReduce framework, <a href="http://code.google.com/p/qizmt/" rel="nofollow">Qizmt</a>, as Open Source, so this is also a potential contender in this space.</p> http://stackoverflow.com/questions/1264977/yui-editor-hiding-the-title-bar/1342539#1342539 0 Answer by foxxtrot for YUI Editor hiding the title bar? foxxtrot 2009-08-27T17:24:29Z 2009-08-27T17:24:29Z <p>You can use CSS to hide the titlebar.</p> <pre><code>#editor-container .yui-toolbar-titlebar { display: none; } </code></pre> <p>#editor-container should be the id of the containing div. For more examples, check out the <a href="http://developer.yahoo.com/yui/examples/editor/skinning%5Feditor.html" rel="nofollow">skinning editor example</a> from the YUI team.</p> http://stackoverflow.com/questions/505251/what-good-is-jslint-if-jquery-fails-the-validation/505326#505326 27 Answer by foxxtrot for What good is JSLint if jQuery fails the validation foxxtrot 2009-02-02T22:55:27Z 2009-07-20T21:19:40Z <p>JSLint tests one particular person's (Douglas Crockford) opinions regarding what makes good JavaScript code. Crockford is very good, but some of his opinions are anal retentive at best, like the underscore rule, or the use of the increment/decrement operators.</p> <p>Many of the issues being tagged by JSLint in the above output are issues that Crockford feels leads to difficult to maintain code.</p> <p>There are some things Crockford identifies as errors that I agree with though, like the missing semicolons thing. Dropping semicolons forces the browser to guess where to insert the end-of-statement token, and that can sometimes be dangerous (it's always slower). And several of those errors are related to JSLint not expecting or supporting multiple assignments like jQuery does on line 24.</p> <p>If you've got a question about a JSLint error, e-mail Crockford, he's really good about replying, and with his reply, you'll at least know why JSLint was implemented that way.</p> <p>Oh, and just because a library is popular doesn't mean it's code is any good. JQuery is popular because it's a relatively fast, easy to use library. That it's well implemented is rather inconsequential to it's popularity among many. However, you should certainly be reading more code, we all should.</p> <p>JSLint can be very helpful in identifying problems with the code, even if JQuery doesn't pass the standards it desires.</p> http://stackoverflow.com/questions/1096670/support-for-encoding-query-string-or-post-data-in-yui/1155745#1155745 0 Answer by foxxtrot for Support for encoding query string or POST data in YUI ? foxxtrot 2009-07-20T20:21:02Z 2009-07-20T20:21:02Z <p>YUI3 has the io-form module, which you can instantiate in your call the use. It allows you to write code like this:</p> <pre><code>YUI().use('node', 'io-form', function(Y) { Y.get('#formId').on('sumbit', function(e) { e.preventDefault(); Y.io(postURL, { method: "POST", on: { complete: on_complete_handler }, form: { id: "formId" } }); } }); </code></pre> <p>This code will make a POST request to postURL, with all the input values from the form with id "formId" is submitted. This module also works for GET requests.</p> http://stackoverflow.com/questions/1115194/advice-upgrading-from-jquery-1-2-6-to-yui-3/1155716#1155716 0 Answer by foxxtrot for Advice "upgrading" from jQuery 1.2.6 to YUI 3? foxxtrot 2009-07-20T20:15:17Z 2009-07-20T20:15:17Z <p>While Matt Sweeney was working on Sizzle integration into YUI3, the last I heard of the project was that it was temporarily on hold due to the pretty severe filesize bump Sizzle introduced. I believe the team is still working on introducing Sizzle, but they had some concerns.</p> <p>It should also be noted that both Sizzle and YUI3 defer to the native implementation of querySelectorAll if it's available.</p> http://stackoverflow.com/questions/731816/javascript-on-blur-event/731913#731913 0 Answer by foxxtrot for Javascript On blur event foxxtrot 2009-04-08T21:23:01Z 2009-04-08T21:23:01Z <p>Your other alternative, is to handle onclick events on the body, but that could get slow fairly quickly. If you were to go that route, it would look something this like:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Hide Test&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="first"&gt; &lt;p&gt;This is the first div.&lt;/p&gt; &lt;/div&gt; &lt;div id="second"&gt; &lt;p&gt;This is the second div.&lt;/p&gt; &lt;/div&gt; &lt;script type="text/javascript"&gt; var first = document.getElementById("first"); var second = document.getElementById("second"); var isChildOf = function (ele, parent) { if (ele.parentNode === null) { return false; } else if (ele.parentNode === parent) { return true; } else { return isChildOf(ele.parentNode, parent); } }; document.body.onclick = function(e) { if (isChildOf(e.target, second)) { console.log("Hiding second."); second.style.display = 'none'; } else { console.log("Showing second."); second.style.display = 'block'; } }; &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/725749/how-would-you-go-about-reverting-a-single-file-to-previous-commit-state-using-git/727725#727725 7 Answer by foxxtrot for How would you go about reverting a single file to previous commit state using git? foxxtrot 2009-04-07T21:48:35Z 2009-04-07T21:48:35Z <p>To expand on Ron DeVera's post, where he mentions master~5, you can use any reference to a git commit, including the SHA-1 if that's most convenient. The point is that the command looks like this:</p> <p><code>git checkout [commit-ref] [filename]</code></p> http://stackoverflow.com/questions/571232/svn-external-in-git/571304#571304 2 Answer by foxxtrot for SVN external in GIT foxxtrot 2009-02-20T21:32:11Z 2009-02-20T21:32:11Z <p>You should look into <a href="http://book.git-scm.com/5_submodules.html" rel="nofollow">git submodules</a>, it should allow almost exactly what you're looking for.</p> http://stackoverflow.com/questions/115818/which-format-for-small-website-images-gif-or-png/115847#115847 1 Answer by foxxtrot for Which format for small website images? GIF or PNG? foxxtrot 2008-09-22T16:19:34Z 2009-02-20T21:30:19Z <p>A major problem with GIFs are that it is a patent-encumbered format (EDIT: This is apparently no longer true). If you don't care about that, feel free to use GIFs. PNGs have a lot more flexibility over GIFs, particularly in the area of colorspace, but that flexibility often means you'll want to "optimize" the PNGs before publishing them. A web search should uncover tools for your platform for this. </p> <p>Of course, if you want animation, GIF is the only way to go, since MNG was basically a non-starter for some reason.</p> http://stackoverflow.com/questions/439096/is-there-any-good-way-to-convert-existing-yui-based-scripts-into-jquery-code/513943#513943 1 Answer by foxxtrot for Is there any good way to convert existing YUI based scripts into JQuery code? foxxtrot 2009-02-05T00:00:49Z 2009-02-05T00:00:49Z <p>I use YUI (2 and 3) with all my ASP.NET MVC code, there is nothing not "MVC-Friendly" in YUI.</p> <p>That said, and assuming you're using YUI2 (YUI3 has more similarity to JQuery), it's not necessarily <em>hard</em> to convert YUI to JQuery, but they do tend to be used differently. I would start by writing new stuff in JQuery until I was familiar with the syntax and the way JQuery was designed, and then start converting the YUI to JQuery.</p> <p>But to reiterate, if the only reason you're changing from YUI to JQuery is because MS now ships it with ASP.NET MVC, you should probably rethink that decision. It's simply not necessary.</p> http://stackoverflow.com/questions/467255/graceful-degradation-of-anchor-tags-with-javascript/467295#467295 2 Answer by foxxtrot for Graceful degradation of anchor tags with javascript foxxtrot 2009-01-21T22:25:07Z 2009-01-21T22:25:07Z <p>Simple, don't use the javascript: URI syntax as the href, at least, not in the HTML delivered to the client.</p> <p>Deliver the HTML from the server with the href taking the user to whatever page you want to take them, and then replace the href (or capture the onclick event) for the anchor tag and do whatever you wish, being sure to prevent the default action for the event fire.</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function() { $("#test").click(function(e) { // Perform AJAX call and manipulate the DOM e.preventDefault(); }); }); &lt;a id="test" href="/Proper/URI"&gt;Click me!&lt;/a&gt; &lt;/script&gt; </code></pre> <p>And I fully agree with the suggestion to read Unobtrusive JavaScript.</p> http://stackoverflow.com/questions/467008/asynchronous-cross-domain-post-request-via-javascript/467086#467086 0 Answer by foxxtrot for Asynchronous cross-domain POST request via JavaScript? foxxtrot 2009-01-21T21:25:46Z 2009-01-21T21:25:46Z <p><a href="http://developer.yahoo.com/yui/3/" rel="nofollow">YUI3</a>'s <a href="http://developer.yahoo.com/yui/3/io/" rel="nofollow">IO</a> object offers cross-domain requests, however it does so using a small Flash control it embeds on the page.</p> <p>While there is work going into secure cross-domain requests from JavaScript, at this time, you need to use a plugin like Flash or Silverlight as a bridge with which to make the request.</p> http://stackoverflow.com/questions/466303/git-branches-with-completely-different-content/466415#466415 1 Answer by foxxtrot for Git branches with completely different content foxxtrot 2009-01-21T18:21:27Z 2009-01-21T18:21:27Z <p>The benefit to doing this, is that it's possible to pull only the docs branch if that's all you're interested in. Like jrockway said, you can do this using another repository and submoduling if necessary, but with this ability to create a 'naked' branch, you have the option not to.</p> <p>Personally, I'm still on the fence about this. I understand why it could be beneficial, but I'm not wholly convinced it's the best way to go.</p> http://stackoverflow.com/questions/466141/how-are-you-structuring-your-git-repository-workflow/466224#466224 13 Answer by foxxtrot for How are you structuring your Git repository workflow? foxxtrot 2009-01-21T17:28:42Z 2009-01-21T17:28:42Z <p>I like the way the Yahoo! User Interface (YUI) team appears to be working. I am not at Yahoo, nor am I on that team, but their git commit logs reveal a lot about their process.</p> <p>The YUI team maintains a central repository where everyone on the team has commit access. Periodically after commits to this repository (it might be after every push, but I don't think so), the build system fires, rebuilds YUI and pushes a newly tagged commit to github, where the community can fork the code and work on it.</p> <p>I am in favor of the central repository that represents the "official" status of the project. Certainly, if I want to share code with a co-worker, I can arrange for them to pull a branch from me, and we can collaborate that way.</p> <p>The "master" repository offers other advantages as well, such as ease of continuous integration, as the push/pull triggers can be configured on the 'master' repository to fire off the unit tests and build system. It also ensures that everyone knows where the most recent 'known good' version of the repository is, so that if the project needs to be built, published, or tested, there can be reasonable assurances that the 'master' repository is ready for that.</p> <p>Git will support almost any workflow you can think of, but even among a small team, you don't want there to be a question about where the 'official' repository is. The maintenance nightmare that could lead to, particularly as you approach a release, would be unpleasant. </p> http://stackoverflow.com/questions/422476/javascript-setting-methods-through-prototype-object-or-in-constructor-differenc/422484#422484 3 Answer by foxxtrot for JavaScript: Setting methods through prototype object or in constructor, difference? foxxtrot 2009-01-07T22:36:57Z 2009-01-07T22:36:57Z <p>The difference is when you derive a class from Message Class. Only the methods declared on the prototype will be available on child classes of Message.</p> http://stackoverflow.com/questions/422234/what-is-the-best-way-to-access-asp-net-session-data-using-javascript/422278#422278 0 Answer by foxxtrot for What is the best way to access ASP.net Session Data using JavaScript? foxxtrot 2009-01-07T21:53:05Z 2009-01-07T21:53:05Z <p>There are two alternatives I can see:</p> <ol> <li>Generate a JSON object of the Session data you want the JavaScript to have access to. Send this to the browser either during the initial page generation or as a result of a JSON Callback.</li> <li>Create an ASPX page you can call via AJAX which would return the value of a session variable with a given key.</li> </ol> <p>#2 is probably what the ScripManager code is wrapping around, and you should probably just use that anyway. But I would be careful about deciding what session data you want to go to the client, and I'd use a Whitelist to only return the Session data I actually need to go down to the client.</p> http://stackoverflow.com/questions/421708/whats-your-favorite-js-css-drop-down-menu/421756#421756 3 Answer by foxxtrot for What's your favorite JS/CSS drop down menu? foxxtrot 2009-01-07T19:38:21Z 2009-01-07T19:38:21Z <p>I use the <a href="http://developer.yahoo.com/yui/menu/" rel="nofollow">YUI Menu</a>. It's quite flexible, offers many methods of declaring what's in the list, and is easy to skin.</p> http://stackoverflow.com/questions/352997/jquery-ajax-async-false-bug/418734#418734 1 Answer by foxxtrot for JQuery $.ajax "async: false" bug? foxxtrot 2009-01-07T00:19:24Z 2009-01-07T00:19:24Z <p>You're encountering a scoping problem here. The URL variable in your JS code is declared as via the var keyword inside the scope of the download function. This means that only code inside the download function can modify that particular url value. </p> <p>The script returned from the download.php is modifying the URL value in the global scope (on the browser, this is the "window" object), which is <em>not</em> the same value as the url inside the scope of the download function.</p> <p>If you don't use the 'var' keyword on the declaration of the url variable, it will be created automatically in the global scope and your code will function as you expect.</p> <p>I agree with the others, that your design is inherently flawed and should be revisited, however.</p> http://stackoverflow.com/questions/417840/how-to-right-align-a-p-tag/417853#417853 6 Answer by foxxtrot for How to right align a <p> tag? foxxtrot 2009-01-06T19:50:55Z 2009-01-06T19:50:55Z <p>It depends. Do you want the entire paragraph to align to the right side of whatever container it's in? Or do you want the text of the paragraph to align to the right margin of the paragraph?</p> <p>If it's the first, look into the float: right; CSS directive. The latter, text-align: right;</p> http://stackoverflow.com/questions/417797/asp-net-and-c/417808#417808 0 Answer by foxxtrot for ASP .NET and C# foxxtrot 2009-01-06T19:36:59Z 2009-01-06T19:36:59Z <p>You should be fine to learn C# while working on an ASP.NET project. I will advise that if you're already pretty familiar with the Web, you'll probably find working with the ASP.NET MVC framework more enjoyable. ASP.NET takes some liberties with the page lifecycle in an attempt to make web pages programmed more like desktop applications. Personally, I think this makes ASP.NET hard to use, but then my background is in Perl and PHP.</p> http://stackoverflow.com/questions/417430/regex-replace-method/417458#417458 1 Answer by foxxtrot for regex replace method foxxtrot 2009-01-06T17:34:09Z 2009-01-06T17:34:09Z <p>To expand upon annakata's answer:</p> <p>In regular expressions the '^' character means "match at the beginning of the String", so if you wanted "U.S.A." to be replaced, it would have to be the first six characters in the string, same for UK. Drop the '^' from your RE, and it should work.</p> <p>And regarding the comment about the '.' character, in regular expressions this means match <em>any</em> character. If you wish to match a literal '.' you must escape it like this "."</p> http://stackoverflow.com/questions/414726/asp-net-mvc-and-jquery-get-info-to-controller/414873#414873 2 Answer by foxxtrot for ASP.NET MVC and JQuery get info to controller foxxtrot 2009-01-05T23:15:55Z 2009-01-05T23:15:55Z <p>It has to do with the way you're structuring your request. Your JQuery call is sending the data to the AddLink action on the User controller as POST data, which means in your C# code, you'll access it via the Request.Form object. With what you're trying to do, you'd structure the jQuery URL as</p> <pre><code>/User/AddLink/{Title}/{URL} </code></pre> <p>This would require you to write a rule in your Global.ASAX file that handled that sort of input. In short, if you just modify your AddLink method as follows:</p> <pre><code>public ActionResult AddLink() { return Json(new { Result = string.Format(Request.Form["title"] + " " + Request.Form["url"])}); } </code></pre> <p>I believe you'll get the response you're looking for.</p> http://stackoverflow.com/questions/404163/what-does-x-refer-to/404174#404174 1 Answer by foxxtrot for What does x(); refer to? foxxtrot 2008-12-31T22:34:06Z 2008-12-31T22:53:27Z <p>x is a variable which, because it is scoped outside of the function that has been assigned to y.z, is accessible inside of y.z</p> <p>What is going on in that code is that y is initialized to a new class of type 'w', then x is getting set to a reference to the current 'z' function, which is a member of the instance 'y' of class 'w'. Then, function 'z' is getting replaced by a new function, which calls doOneThing, and then executes the value of 'x', which as has already been established is the previous value of 'y.z', therefore, the <em>new</em> y.z extends the behavior of the <em>old</em> y.z by simple calling the old y.z before it returns. </p> <p>I hope that makes sense.</p> <p>Of course, given that you do say that the 'y' object doesn't have a 'z' member, than x will be undefined, and a runtime error will be thrown when you try to execute x().</p> http://stackoverflow.com/questions/404107/why-are-control-characters-illegal-in-xml/404200#404200 1 Answer by foxxtrot for Why are "control" characters illegal in XML? foxxtrot 2008-12-31T22:48:40Z 2008-12-31T22:48:40Z <p>XML was designed specially around Unicode (specifically UTF-8 and UTF-16) and ISO/IEC 10646, both of which (I'm not <em>quite</em> positive about ISO 10646) contain the transmission/flow control characters which were left over from ASCII and the days of character-based terminals. While those characters still have uses, they don't belong in a format like XML.</p> <p>As for these new encodings that use those codes for something else, well, it seems that the XML spec may need to adapt.</p> http://stackoverflow.com/questions/404029/sql-if-begin-end-end-if/404052#404052 1 Answer by foxxtrot for SQL "IF", "BEGIN", "END", "END IF"???? foxxtrot 2008-12-31T21:19:24Z 2008-12-31T22:03:34Z <p>It has to do with the Normal Form for the SQL language. IF statements can, by definition, only take a <strong>single</strong> SQL statement. However, there is a special kind of SQL statement which can contain multiple SQL statements, the BEGIN-END block.</p> <p>If you omit the begin-end block, your SQL will run fine, but it will only execute the first statement as part of the IF. </p> <p>Basically, this:</p> <pre><code>IF @Term = 3 INSERT INTO @Classes SELECT XXXXXX FROM XXXX blah blah blah </code></pre> <p>is equivalent to the same thing with the BEGIN-END block, because you're only executing a single statement. However, for the same reason that not including the curly-braces on an if-statement in a C-like language is a bad idea, it is <strong>always</strong> preferable to use BEGIN and END.</p> http://stackoverflow.com/questions/404027/how-do-you-manage-api-keys/404033#404033 0 Answer by foxxtrot for How do you manage api keys foxxtrot 2008-12-31T21:09:27Z 2008-12-31T21:09:27Z <p>I wouldn't just use user submitted data, as that can create a situation where API keys are guessable. Generally, I take some data that is generated by the user, and then combine it with some data that is relatively unique (ie, current system time) and hash that using SHA-1 or something, perhaps change the representation if I don't want it to obviously be a SHA-1 hash, and then use that as the key.</p> http://stackoverflow.com/questions/1689708/shortcut-for-document-createelementoption/1689799#1689799 Comment by foxxtrot on Shortcut for document.createElement("option") ? foxxtrot 2009-11-06T21:58:20Z 2009-11-06T21:58:20Z The framework normalizes out bugs in the underlying browser implementation, allowing me to do the must faster innerHTML style set on Internet Explorer. Even using platform, building a text string instead of a large number of option tags is going to be faster, which is important when dealing with relatively large data sets. http://stackoverflow.com/questions/1668804/what-is-a-good-yui-replacement-for-jquery-live/1668855#1668855 Comment by foxxtrot on What is a good yui replacement for jquery.live foxxtrot 2009-11-03T22:55:29Z 2009-11-03T22:55:29Z There are a few options. Each YUI3 Node element provides a 'delegate' function, which eliminates the third argument in the example I show above, but the example I show above doesn't require you to instantiate a Node first, which I find convenient sometimes. http://stackoverflow.com/questions/1115194/advice-upgrading-from-jquery-1-2-6-to-yui-3/1155716#1155716 Comment by foxxtrot on Advice "upgrading" from jQuery 1.2.6 to YUI 3? foxxtrot 2009-08-27T15:57:50Z 2009-08-27T15:57:50Z I don't have a URL as the comment was made in an e-mail thread external to the Y! Group or forums. The plan is still to include Sizzle at some point, though probably not in YUI 3.0.0 GA http://stackoverflow.com/questions/570849/how-to-remove-git-subtree-merge Comment by foxxtrot on How to remove git subtree merge? foxxtrot 2009-02-20T21:58:16Z 2009-02-20T21:58:16Z You appear to have forgotten to include a link for footnote [1]. http://stackoverflow.com/questions/467255/graceful-degradation-of-anchor-tags-with-javascript/467295#467295 Comment by foxxtrot on Graceful degradation of anchor tags with javascript foxxtrot 2009-01-21T23:14:15Z 2009-01-21T23:14:15Z That point is understood. If you must support the non-JS case, perhaps use an intermediate page where they confirm their desire to delete? http://stackoverflow.com/questions/467255/graceful-degradation-of-anchor-tags-with-javascript/467283#467283 Comment by foxxtrot on Graceful degradation of anchor tags with javascript foxxtrot 2009-01-21T22:36:00Z 2009-01-21T22:36:00Z I would argue that if you're using the javascript: href at all, you're JavaScript isn't unobtrusive. http://stackoverflow.com/questions/467255/graceful-degradation-of-anchor-tags-with-javascript/467295#467295 Comment by foxxtrot on Graceful degradation of anchor tags with javascript foxxtrot 2009-01-21T22:35:09Z 2009-01-21T22:35:09Z It is no more <i>secure</i> to use a POST instead of a GET in this case, but if you absoluately must use a POST, then yes, you'll need to use a Form. http://stackoverflow.com/questions/417840/how-to-right-align-a-p-tag Comment by foxxtrot on How to right align a <p> tag? foxxtrot 2009-01-06T21:23:09Z 2009-01-06T21:23:09Z Also, since Markdown allows some HTML tags, you should escape the &lt;p&gt; tag with a &amp;amp;lt; on the &lt; symbol http://stackoverflow.com/questions/417430/regex-replace-method/417458#417458 Comment by foxxtrot on regex replace method foxxtrot 2009-01-06T18:14:08Z 2009-01-06T18:14:08Z That's a fair point, I missed that tag when I was looking at this initially. http://stackoverflow.com/questions/86151/why-do-you-or-do-you-not-implement-using-polyglot-solutions/86189#86189 Comment by foxxtrot on Why do you or do you not implement using polyglot solutions? foxxtrot 2008-12-31T21:43:02Z 2008-12-31T21:43:02Z In this particular case, yes, the IDE is the problem. Visual Studio is, I'm sure, just one example however. http://stackoverflow.com/questions/201768/mixing-jquery-and-yui-together-in-an-app-is-it-easily-possible/202510#202510 Comment by foxxtrot on Mixing jQuery and YUI together in an app, is it easily possible? foxxtrot 2008-10-22T20:14:27Z 2008-10-22T20:14:27Z And YUI 3 is already pretty usable http://stackoverflow.com/questions/220915/where-can-i-find-a-free-lightweight-yui-like-compressor-for-php/220951#220951 Comment by foxxtrot on Where can I find a free, lightweight YUI-like compressor for PHP? foxxtrot 2008-10-22T20:03:43Z 2008-10-22T20:03:43Z That's not entirely true. With less whitespace to process the file can be parsed and tokenized faster. However, this is likely to be negligible http://stackoverflow.com/questions/86204/how-to-conditionally-enable-actions-in-c-asp-net-website/86214#86214 Comment by foxxtrot on How to conditionally enable actions in C# ASP.NET website foxxtrot 2008-09-17T20:02:37Z 2008-09-17T20:02:37Z Thanks for the clarification Stephbu. While correct, I don't think it changes the point I was making. http://stackoverflow.com/questions/75347/execute-an-insert-and-then-log-in-one-sqlcommand/75422#75422 Comment by foxxtrot on execute an insert and then log in one sqlcommand foxxtrot 2008-09-16T18:26:36Z 2008-09-16T18:26:36Z If he can't create a Stored Procedure, he almost certainly can't create a Trigger