User foxxtrot - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T12:25:19Zhttp://stackoverflow.com/feeds/user/10369http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1689708/shortcut-for-document-createelementoption/1689799#16897990Answer by foxxtrot for Shortcut for document.createElement("option") ?foxxtrot2009-11-06T19:29:58Z2009-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 += '<option value="' + day + '">' + day + '</option>'
}
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 < optionList.length; i += 1) {
option += '<option value="' + optionList[i].Value + '" selected="' + (optionList[i].selected ? '"selected"' : '""') + '">' + optionList[i].Text + '</option>';
}
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#16891692Answer by foxxtrot for Javascript show layer on page loadfoxxtrot2009-11-06T17:41:20Z2009-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#16692800Answer by foxxtrot for How do I merge aspx pages MVC?foxxtrot2009-11-03T18:31:27Z2009-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#16688555Answer by foxxtrot for What is a good yui replacement for jquery.livefoxxtrot2009-11-03T17:20:47Z2009-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#15052381Answer by foxxtrot for Is there a .Net equivalent to Apache Hadoop?foxxtrot2009-10-01T17:09:44Z2009-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#13425390Answer by foxxtrot for YUI Editor hiding the title bar?foxxtrot2009-08-27T17:24:29Z2009-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#50532627Answer by foxxtrot for What good is JSLint if jQuery fails the validationfoxxtrot2009-02-02T22:55:27Z2009-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#11557450Answer by foxxtrot for Support for encoding query string or POST data in YUI ?foxxtrot2009-07-20T20:21:02Z2009-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#11557160Answer by foxxtrot for Advice "upgrading" from jQuery 1.2.6 to YUI 3?foxxtrot2009-07-20T20:15:17Z2009-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#7319130Answer by foxxtrot for Javascript On blur eventfoxxtrot2009-04-08T21:23:01Z2009-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><html>
<head>
<title>Hide Test</title>
</head>
<body>
<div id="first">
<p>This is the first div.</p>
</div>
<div id="second">
<p>This is the second div.</p>
</div>
<script type="text/javascript">
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';
}
};
</script>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/725749/how-would-you-go-about-reverting-a-single-file-to-previous-commit-state-using-git/727725#7277257Answer by foxxtrot for How would you go about reverting a single file to previous commit state using git?foxxtrot2009-04-07T21:48:35Z2009-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#5713042Answer by foxxtrot for SVN external in GITfoxxtrot2009-02-20T21:32:11Z2009-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#1158471Answer by foxxtrot for Which format for small website images? GIF or PNG?foxxtrot2008-09-22T16:19:34Z2009-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#5139431Answer by foxxtrot for Is there any good way to convert existing YUI based scripts into JQuery code?foxxtrot2009-02-05T00:00:49Z2009-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#4672952Answer by foxxtrot for Graceful degradation of anchor tags with javascriptfoxxtrot2009-01-21T22:25:07Z2009-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><script type="text/javascript">
$(document).ready(function() {
$("#test").click(function(e) {
// Perform AJAX call and manipulate the DOM
e.preventDefault();
});
});
<a id="test" href="/Proper/URI">Click me!</a>
</script>
</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#4670860Answer by foxxtrot for Asynchronous cross-domain POST request via JavaScript?foxxtrot2009-01-21T21:25:46Z2009-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#4664151Answer by foxxtrot for Git branches with completely different contentfoxxtrot2009-01-21T18:21:27Z2009-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#46622413Answer by foxxtrot for How are you structuring your Git repository workflow?foxxtrot2009-01-21T17:28:42Z2009-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#4224843Answer by foxxtrot for JavaScript: Setting methods through prototype object or in constructor, difference?foxxtrot2009-01-07T22:36:57Z2009-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#4222780Answer by foxxtrot for What is the best way to access ASP.net Session Data using JavaScript?foxxtrot2009-01-07T21:53:05Z2009-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#4217563Answer by foxxtrot for What's your favorite JS/CSS drop down menu?foxxtrot2009-01-07T19:38:21Z2009-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#4187341Answer by foxxtrot for JQuery $.ajax "async: false" bug?foxxtrot2009-01-07T00:19:24Z2009-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#4178536Answer by foxxtrot for How to right align a <p> tag?foxxtrot2009-01-06T19:50:55Z2009-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#4178080Answer by foxxtrot for ASP .NET and C#foxxtrot2009-01-06T19:36:59Z2009-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#4174581Answer by foxxtrot for regex replace methodfoxxtrot2009-01-06T17:34:09Z2009-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#4148732Answer by foxxtrot for ASP.NET MVC and JQuery get info to controllerfoxxtrot2009-01-05T23:15:55Z2009-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#4041741Answer by foxxtrot for What does x(); refer to?foxxtrot2008-12-31T22:34:06Z2008-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#4042001Answer by foxxtrot for Why are "control" characters illegal in XML?foxxtrot2008-12-31T22:48:40Z2008-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#4040521Answer by foxxtrot for SQL "IF", "BEGIN", "END", "END IF"????foxxtrot2008-12-31T21:19:24Z2008-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#4040330Answer by foxxtrot for How do you manage api keysfoxxtrot2008-12-31T21:09:27Z2008-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#1689799Comment by foxxtrot on Shortcut for document.createElement("option") ?foxxtrot2009-11-06T21:58:20Z2009-11-06T21:58:20ZThe 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#1668855Comment by foxxtrot on What is a good yui replacement for jquery.livefoxxtrot2009-11-03T22:55:29Z2009-11-03T22:55:29ZThere 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#1155716Comment by foxxtrot on Advice "upgrading" from jQuery 1.2.6 to YUI 3?foxxtrot2009-08-27T15:57:50Z2009-08-27T15:57:50ZI 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 GAhttp://stackoverflow.com/questions/570849/how-to-remove-git-subtree-mergeComment by foxxtrot on How to remove git subtree merge?foxxtrot2009-02-20T21:58:16Z2009-02-20T21:58:16ZYou appear to have forgotten to include a link for footnote [1].http://stackoverflow.com/questions/467255/graceful-degradation-of-anchor-tags-with-javascript/467295#467295Comment by foxxtrot on Graceful degradation of anchor tags with javascriptfoxxtrot2009-01-21T23:14:15Z2009-01-21T23:14:15ZThat 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#467283Comment by foxxtrot on Graceful degradation of anchor tags with javascriptfoxxtrot2009-01-21T22:36:00Z2009-01-21T22:36:00ZI 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#467295Comment by foxxtrot on Graceful degradation of anchor tags with javascriptfoxxtrot2009-01-21T22:35:09Z2009-01-21T22:35:09ZIt 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-tagComment by foxxtrot on How to right align a <p> tag?foxxtrot2009-01-06T21:23:09Z2009-01-06T21:23:09ZAlso, since Markdown allows some HTML tags, you should escape the <p> tag with a &amp;lt; on the < symbolhttp://stackoverflow.com/questions/417430/regex-replace-method/417458#417458Comment by foxxtrot on regex replace methodfoxxtrot2009-01-06T18:14:08Z2009-01-06T18:14:08ZThat'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#86189Comment by foxxtrot on Why do you or do you not implement using polyglot solutions?foxxtrot2008-12-31T21:43:02Z2008-12-31T21:43:02ZIn 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#202510Comment by foxxtrot on Mixing jQuery and YUI together in an app, is it easily possible?foxxtrot2008-10-22T20:14:27Z2008-10-22T20:14:27ZAnd YUI 3 is already pretty usablehttp://stackoverflow.com/questions/220915/where-can-i-find-a-free-lightweight-yui-like-compressor-for-php/220951#220951Comment by foxxtrot on Where can I find a free, lightweight YUI-like compressor for PHP?foxxtrot2008-10-22T20:03:43Z2008-10-22T20:03:43ZThat's not entirely true. With less whitespace to process the file can be parsed and tokenized faster. However, this is likely to be negligiblehttp://stackoverflow.com/questions/86204/how-to-conditionally-enable-actions-in-c-asp-net-website/86214#86214Comment by foxxtrot on How to conditionally enable actions in C# ASP.NET websitefoxxtrot2008-09-17T20:02:37Z2008-09-17T20:02:37ZThanks 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#75422Comment by foxxtrot on execute an insert and then log in one sqlcommandfoxxtrot2008-09-16T18:26:36Z2008-09-16T18:26:36ZIf he can't create a Stored Procedure, he almost certainly can't create a Trigger