User Frank Schwieterman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:14:23Z http://stackoverflow.com/feeds/user/32203 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1942067/problem-understanding-more-complex-examples-of-descendant-selectors-css/1942109#1942109 1 Answer by Frank Schwieterman for Problem understanding more complex examples of Descendant selectors (CSS) Frank Schwieterman 2009-12-21T19:30:44Z 2009-12-21T19:30:44Z <p>Each section of the specifier separated by a space refers to a separate node in the document. So its the first one.</p> http://stackoverflow.com/questions/1756829/postback-after-jquery-dialog-box-closes-causes-js-error-in-ie/1941656#1941656 0 Answer by Frank Schwieterman for Postback after JQuery Dialog box closes causes js error in IE Frank Schwieterman 2009-12-21T18:05:22Z 2009-12-21T18:05:22Z <p>The problem is that the ASP.NET generated page depends on some global javascript values. These values are likely being overwritten by the dialog you are injecting. My solution to this problem was to have an object which saves off the current state before loading the dialogs, then restore it when done.</p> <p>To determine what values need to be saved off, you need to be careful to review the pages you load as dialogs. Review all script tags. Some of the values I've found worth saving/restoring are: "__doPostBack", "theForm", "WebForm_OnSubmit", "Page_Validators", "ValidatorOnSubmit", "Page_ValidationActive", "ValidatorOnChange"</p> <p>This list will grow as you use more ASP.NET features within your dialog.</p> http://stackoverflow.com/questions/1916515/how-defensive-should-you-be/1916583#1916583 2 Answer by Frank Schwieterman for How defensive should you be? Frank Schwieterman 2009-12-16T18:15:36Z 2009-12-16T18:15:36Z <p>"Unit tests verifying the code does what it should do" > "production code trying to verify its not doing what its not supposed to do".</p> <p>I wouldn't even check for null myself, unless its part of a published API.</p> http://stackoverflow.com/questions/1900469/should-code-prevent-a-logically-invalid-call-even-when-no-harm-would-be-done/1904121#1904121 1 Answer by Frank Schwieterman for Should code prevent a logically invalid call even when no harm would be done? Frank Schwieterman 2009-12-14T23:00:56Z 2009-12-14T23:00:56Z <p>If this is part of a public SDK that you're releasing to the wild, then the exposed API calls should have strong validation. It will help your 'users' (who are developers) and ensure you aren't stuck supporting usage you never intended to support.</p> <p>Otherwise, I would not add such checks. I think they make the code harder to read, and these checks are rarely tested. In the past I would add a lot of code like this to make sure my code doesn't do the wrong thing. Now I write unit tests to verify my code does the right thing. The difference? I think tests are more maintainable, more readable, and they don't clutter your production code.</p> http://stackoverflow.com/questions/1848839/javascript-decorators-howto/1848880#1848880 1 Answer by Frank Schwieterman for JavaScript decorators HOWTO? Frank Schwieterman 2009-12-04T18:41:45Z 2009-12-04T18:41:45Z <p>What about your scenario requires a library? It seems that with native javascript, you could simply:</p> <pre><code>1) Save a copy of the original function 2) Create a modified version of the function which uses the original 3) Store a reference to the modified version where the original was originally stored. </code></pre> http://stackoverflow.com/questions/1848266/need-ideas-for-a-tdd-approach/1848562#1848562 0 Answer by Frank Schwieterman for Need ideas for a TDD Approach Frank Schwieterman 2009-12-04T17:47:42Z 2009-12-04T17:47:42Z <blockquote> <blockquote> <p>No matter what I send to jobDetailController.GetById(x) I will always get back jobDetail3</p> </blockquote> </blockquote> <p>You should spend more time debugging your tests because what is happening is not how Moq behaves. There is a bug in your code or tests causing something to misbehave.</p> <p>If you want to make repeated calls with the same inputs but different outputs you could also use a different mocking framework. RhinoMocks supports the record/playback idiom. You're right this is not always what you want with regards to enforcing call order. I do prefer Moq myself for its simplicity.</p> http://stackoverflow.com/questions/1841742/dbnull-in-linq-query-causing-problems/1841947#1841947 0 Answer by Frank Schwieterman for DBnull in Linq query causing problems Frank Schwieterman 2009-12-03T18:34:47Z 2009-12-03T18:34:47Z <p>I think you want to use item.EndTime.HasValue, and not item.EndTime == null.</p> http://stackoverflow.com/questions/1835838/specifications-for-servers-for-team-based-development/1835918#1835918 0 Answer by Frank Schwieterman for Specifications for Servers for Team Based Development Frank Schwieterman 2009-12-02T21:24:00Z 2009-12-02T21:24:00Z <p>Some good reads on database versioning: <a href="http://www.codinghorror.com/blog/archives/001050.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001050.html</a></p> http://stackoverflow.com/questions/1073414/deleting-a-window-property-in-ie/1824228#1824228 0 Answer by Frank Schwieterman for deleting a window property in IE Frank Schwieterman 2009-12-01T05:47:58Z 2009-12-01T05:47:58Z <p>Gasper made a comment with the solution he finished on, but I think its worth calling out as an actual answer:</p> <pre><code>try { delete window.x; } catch(e) { window["x"] = undefined; } </code></pre> <p>Interesting issue, I was just banging my head against it tonight. The exception is thrown on IE but not Firefox. I would suspect this workaround leaks memory, so use sparingly.</p> http://stackoverflow.com/questions/1822272/how-can-i-create-a-templated-control-with-asp-net-mvc/1822284#1822284 0 Answer by Frank Schwieterman for How can I create a templated control with Asp.Net MVC? Frank Schwieterman 2009-11-30T20:45:52Z 2009-11-30T20:45:52Z <p>You might want to do something like Html.BeginPanel() / Html.EndPanel(), similar to how forms are created with Html.BeginForm() / Html.EndForm(). This way you can wrap the contained content rather than need to pass it as a parameter.</p> http://stackoverflow.com/questions/1800818/unit-testing-jquery-document-ready-function/1801030#1801030 0 Answer by Frank Schwieterman for Unit testing jQuery document.ready function Frank Schwieterman 2009-11-26T01:07:31Z 2009-11-26T03:35:37Z <p>The function that registers the on ready handler should register another function, not an anonymous codeblock. Then you can test the code that calls $.ready() separate from the code that runs on ready. So you have:</p> <ol> <li>One test to verify the right function is set as the the ready handler</li> <li>Another test to verify the ready handler does the right stuff</li> </ol> <p>To test scenario 1, you'll need to inject a test double for jQuery. This is difficult as if you redefine $ or jQuery, odds are you'll screw up other code that relies on it for other processing (like the test runner). At the same time your code may still want to call jQuery directly when its using utility methods like array concatenation. Any inversion-of-control pattern should address this though (<a href="http://martinfowler.com/articles/injection.html" rel="nofollow">http://martinfowler.com/articles/injection.html</a>).</p> <p>Anyhow, here's some code using constructor injection (using JSMock for the mocking library, and QUnit (of jQuery) for the test runner):</p> <pre><code>// the code var createComponent = function(_$) { var that = {}; that.OnStart = function() { _$.ready(this.OnReady); }; that.OnReady = function() { }; return that; }; // the test test("OnStart associates the ready handler", function() { var sut; var mock$ = mc.createMock($); mock$.expects().ready(isA.TypeOf(Function)).andStub(function(callback) { equals(callback, sut.OnReady); }); sut = createComponent(mock$); sut.OnStart(); mc.verify(); }); test("OnReady does the right stuff", function() { //etc }); </code></pre> <p>I use this general pattern for all event handlers in JS... You might prefer to use prototype type classes. When you pass functions as parameters to jQuery, you need to be aware that the "this" value will not be set by jQuery when those callbacks are called. In the test, this breaks because equals(callback, sut.OnReady) no longer passes. To address this, you need to make the event handlers direct members of each instance. You can imagine when there are a number of then its nice to have a util that takes a list of them, but this demonstrates making 'OnReady' a member who does not rely on 'this'.</p> <pre><code>var Component = function(_$) { this._$ = _$; // repeat for each event handler thats tested this.OnReady = function() { Component.prototype.OnReady.apply(this); } } Component.prototype.Start = function() { this._$.ready(this.OnReady); } Component.prototype.OnReady = function() { } </code></pre> http://stackoverflow.com/questions/1799307/is-asp-net-mvc-a-good-option-for-developing-a-services-layer-and-or-api/1799342#1799342 3 Answer by Frank Schwieterman for Is ASP.NET MVC a good option for developing a Services layer and/or API? Frank Schwieterman 2009-11-25T19:19:59Z 2009-11-25T19:19:59Z <p>If you're making a restful service I think MVC would be great. If you want to support WS* webservice standards then you should probably use WCF. Personally I think WCF is a lot of pain/overhead that isn't necessary if you're just doing a RESTful service. WCF tends to bypass parts of the IIS and ASP.NET stack which can cause surprise pains (or pleasure, if you enjoy working with/configuring WCF).</p> http://stackoverflow.com/questions/1799158/asp-net-programmatically-add-a-span-tag-not-label-control/1799174#1799174 0 Answer by Frank Schwieterman for asp.net programmatically add a span tag? Not Label control Frank Schwieterman 2009-11-25T18:53:47Z 2009-11-25T18:53:47Z <p>new HtmlGenericControl("span")</p> http://stackoverflow.com/questions/1794140/is-there-a-way-to-see-the-final-url-retrieved-by-an-xmlhttprequest 1 Is there a way to see the final URL retrieved by an XMLHttpRequest? Frank Schwieterman 2009-11-25T01:44:08Z 2009-11-25T17:38:20Z <p>I'm doing an AJAX download that is being redirected. I'd like to know the final target URL the request was redirected to. I'm using jQuery, but also have access to the underlying XMLHttpRequest. Does anyone know a way to get the final URL?</p> <p>It seems like I'll need to have the final target insert its URL into a known location in the headers or response body, then have the script look for it there. I was hoping to have something that would work regardless of the target though.</p> <p>Additional note: I'm asking how my code can get the full url from production code, which will run from the user's system. I'm not asking how I can get the full url when I'm debugging.</p> http://stackoverflow.com/questions/1793860/is-it-possible-to-create-a-desktop-application-whose-ui-is-html-rendered-using-as/1793890#1793890 0 Answer by Frank Schwieterman for Is it possible to create a desktop application whose UI is HTML rendered using ASP.NET templates without using a webserver? Frank Schwieterman 2009-11-25T00:17:05Z 2009-11-25T00:17:05Z <p>Adobe AIR supports something like this (build a site using HTML+javascript, but then deploy it as a web application) however it is not going to support the ASP.NET markup.</p> http://stackoverflow.com/questions/289077/do-you-htmlencode-during-input-or-output/1787071#1787071 1 Answer by Frank Schwieterman for Do you HtmlEncode during input or output? Frank Schwieterman 2009-11-24T00:34:06Z 2009-11-24T00:44:03Z <p>Encoding is not a property of the data, it is a property of the transport mechanism. Therefore you should unencode data when you receive it, and encode it appropriately before transmission. The transport mechanism determines what sort of encoding is necessary.</p> <p>This principle holds true whether your transport mechanism is HTML, HTTP, smoke signals, etc. The trick is knowing how to do the types of encoding manually, and when various frameworks do the steps for you automagically. For instance, ASP.NET will encode data assigned to a System.Web.UI.WebControls.Button's Text, but not text assigned to a System.Web.UI.WebControls.Literal's Text. jQuery will encode content you set with .innerText(), but not content you set with .innerHtml().</p> http://stackoverflow.com/questions/1265114/dependency-browser-that-runs-against-an-inversion-of-control-framework 3 dependency browser that runs against an inversion of control framework Frank Schwieterman 2009-08-12T09:17:20Z 2009-11-19T19:36:15Z <p>Do any inversion of control / dependency injection framworks support viewing the object dependencies that have been registered? This is not to execute the code, but to better understand it. It seems that a graph based on the information it has (class A depends on B and C, class B dependencs on C and E, etc) would really document a system well.</p> <p>I'm using Castle Windsor at the moment, but wouldn't mind trying a different framework for this functionality.</p> http://stackoverflow.com/questions/1295717/alternatives-to-adding-dynamically-generated-inline-javascript/1295762#1295762 0 Answer by Frank Schwieterman for Alternatives to adding dynamically generated inline JavaScript Frank Schwieterman 2009-08-18T18:47:20Z 2009-11-19T16:23:46Z <p>I think it's plenty reasonable to insert JavaScript into a document, particular when you're populating data that changes dynamically with the page. I don't think there is any advantage to storing that data in HTML tags rather than putting in inline script.</p> <p>What you should do is minimize the amount of inline script needed by factoring out code that can be moved to a separate JavaScript file.</p> http://stackoverflow.com/questions/1711042/spark-and-asp-net 1 Spark and ASP.NET Frank Schwieterman 2009-11-10T20:41:30Z 2009-11-17T21:44:33Z <p>I started playing with Spark in an ASP.NET MVC project. However I have an existing ASP.NET project that I can't port over to ASP.NET MVC, and was wondering if there is a way to use Spark with ASP.NET?</p> http://stackoverflow.com/questions/1750670/how-do-you-specify-table-padding-in-css-table-not-cell-padding/1750691#1750691 4 Answer by Frank Schwieterman for How do you specify table padding in CSS? ( table, not cell padding ) Frank Schwieterman 2009-11-17T18:04:14Z 2009-11-17T18:04:14Z <p>You could set a margin for the table. Alternatively, wrap the table in a div and use the div's padding.</p> http://stackoverflow.com/questions/1750560/which-url-format-is-better-for-seo/1750678#1750678 1 Answer by Frank Schwieterman for which url format is better for seo? Frank Schwieterman 2009-11-17T18:01:24Z 2009-11-17T18:01:24Z <p>another good article: <a href="http://www.seomoz.org/blog/seo-cheat-sheet-anatomy-of-a-url" rel="nofollow">http://www.seomoz.org/blog/seo-cheat-sheet-anatomy-of-a-url</a></p> http://stackoverflow.com/questions/1745797/jquery-ui-tabs-problem/1745889#1745889 0 Answer by Frank Schwieterman for jquery ui tabs problem Frank Schwieterman 2009-11-17T00:43:28Z 2009-11-17T00:43:28Z <p>Whatever region the tabs are being written to is having its width constrained, causing the premature wrap to the next line (I assume this is the problem you're having-- your question is not explicit on what the problem is). I'd fish around with Firebug until whatever sized div or margin is causing the space to be limited.</p> http://stackoverflow.com/questions/1735866/embedding-c-code-using-code-within-javascript-script-tags/1735998#1735998 1 Answer by Frank Schwieterman for Embedding C# code using <%= code %> within javascript <script> tags Frank Schwieterman 2009-11-14T23:39:18Z 2009-11-14T23:39:18Z <p>You need to be careful when writing strings into script tags, because as it is javascript the expectation is that the string has special characters encoded properly. Additionally, if that string contains something like "&lt;/script>" you run the risk of browsers that aren't running javascript ending the script block early.</p> <p>An easy way to encode the strings is with a JSON serializer, perhaps JavaScriptSerializer().</p> <pre><code>&lt;script&gt; var targetUrl = &lt;%= (new JavaScriptSerializer()).Serialize("http://url/") %&gt;; &lt;/script&gt; </code></pre> <p>I think this is safer. You'd want to put this code in a helper function, I just instantiate JavaScriptSerializer() in-place there so its the simplest example possible.</p> <p>One side effect of this is that the &lt;%= %> expression is not within quotes, which sounds like it would help your original autocomplete support issures. Note that Serialize() will not only properly escape the string for javascript, it will also escape-encode the '&lt;' and '>' characters so that "&lt;/script>" scenario can't happen.</p> http://stackoverflow.com/questions/1732615/books-to-learn-how-to-make-web-development-fun-instead-of-frustrating/1732734#1732734 1 Answer by Frank Schwieterman for Books to learn how to make web development fun instead of frustrating Frank Schwieterman 2009-11-14T00:21:40Z 2009-11-14T00:21:40Z <p>Don't learn HTML/CSS in an adhoc manner, its a technology that has evolved by accident rather than design. You should definately grab a book like "CSS Mastery: Advanced Web Standards Solutions" to reduce the frustration in learning HTML layout.</p> http://stackoverflow.com/questions/1633028/calculating-the-path-relative-to-some-root-the-inverse-of-path-combine 4 Calculating the path relative to some root- the inverse of Path.Combine Frank Schwieterman 2009-10-27T19:11:49Z 2009-11-12T15:26:18Z <p>Is there a reliable way to calculate the inverse of Path.Combine()?</p> <p>Path.Combine("c:\folder", "subdirectory\something.txt") might return something like "c:\folder\subdirectory\something.text". What I want is the inverse, a function where Path.GetRelativeUrl("c:\folder", "c:\folder\subdirectory\something.text") would return something like ""subdirectory\something.txt".</p> <p>One solution is to do string comparisons and trim the roots, but this would not work when the same path is expressed in different ways (use of ".." or "~1" in path expression).</p> http://stackoverflow.com/questions/1661628/which-objects-to-mock-when-doing-tdd/1717170#1717170 0 Answer by Frank Schwieterman for Which objects to mock when doing TDD Frank Schwieterman 2009-11-11T18:24:52Z 2009-11-11T18:24:52Z <p>I would try to use dependency injection on the class rather than have the class method create the object (as the selected answer recommends). When that doesn't make sense, consider making a factory class that produces the objects being created. You can then pass in that factory via dependency injection.</p> http://stackoverflow.com/questions/1712082/diagnosing-runaway-cpu-in-a-net-production-application/1712353#1712353 0 Answer by Frank Schwieterman for Diagnosing runaway CPU in a .Net production application Frank Schwieterman 2009-11-11T01:05:28Z 2009-11-11T01:05:28Z <p>I think you should look at memory and disk usage as well. If a machine runs out of memory and needs to start using virtual memory (on the disk drive), you'll see a spike in CPU and disk activity. In such conditions what looks like a CPU bottleneck is actually a memory bottleneck.</p> http://stackoverflow.com/questions/1710424/referencing-a-javascript-value-before-it-is-declared-can-someone-explain-this 3 referencing a javascript value before it is declared - can someone explain this Frank Schwieterman 2009-11-10T19:09:00Z 2009-11-10T20:09:10Z <p>I'm hoping someone can explain to me why the below javascript/HTML will show "door #2" when the html is viewed in a browser:</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;script type="text/javascript"&gt; function testprint() { alert('door #1'); }; window.onload = testprint; function testprint() { alert('door #2'); }; testprint = function() { alert('door #3'); }; &lt;/script&gt; &lt;script type="text/javascript"&gt; function testprint() { alert('door #4'); }; &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Since only the declartion testprint occurs before window.onload is set to testprint, I would expect window.onload cause 'door #1' to show up. In actuality, onload causes 'door #2'. Note that it will do this whether the first declaration of test print is included or not.</p> <p>The third and fourth declaration of testprint use different means of assigning the function, I tried this to see if it would override window.onload's behavior in the same was the second declaration of testprint does. It did not. Note that if I move the fourth declaration of testprint to the end of the first script block it would be called by window.onload.</p> http://stackoverflow.com/questions/1349411/custom-asp-net-template-control-without-placeholder-tags 0 custom ASP.NET template control without placeholder tags Frank Schwieterman 2009-08-28T21:16:14Z 2009-11-10T19:00:03Z <p>Let's say I have a custom template control, that can be used in pages like so:</p> <pre><code>&lt;AR:CustomControl runat="server"&gt; &lt;ViewTemplate&gt; &lt;span&gt;stuff&lt;/span&gt; &lt;/ViewTemplate&gt; &lt;/AR:ModalLink&gt; </code></pre> <p>Since there is only one template field, the element isn't really necessary. Is there a way I can edit my control so it can be used like?</p> <pre><code>&lt;AR:CustomControl runat="server"&gt; &lt;span&gt;stuff&lt;/span&gt; &lt;/AR:ModalLink&gt; </code></pre> <p>Note that this is a UserControl with an ASCX file. So I don't think I can simple inherit from an existing control like Label.</p> http://stackoverflow.com/questions/1537783/will-the-spark-view-engine-interoperate-with-webforms-master-pages/1678267#1678267 0 Answer by Frank Schwieterman for Will the Spark view engine interoperate with webforms master pages? Frank Schwieterman 2009-11-05T04:02:57Z 2009-11-05T04:02:57Z <p>Any luck on this? </p> <p>I have been able to host a spark view in a System.Web.Mvc.ViewUserControl call Html.RenderView() from the spark view. I bet I could also host a Spark view within a System.Web.Mvc.ViewUserControl using Html.RenderView() as well. This introduces some options (all with overhead) of sharing the master page:</p> <ol> <li><p>Write a simple wrapper .ascx for you .spark views. They'd had the same model object, the wrapper could call HtmlRenderPartial on the wrapped view.</p></li> <li><p>(vice versa) Write a simple wrapper .spark for your .ascx controls.</p></li> </ol> <p>When I tried have a view Index.spark use masterpage Site.Master, I received error message:</p> <pre><code>The view 'Index' or its master could not be found. The following locations were searched: ~/Views/LfgSettings/Index.aspx ~/Views/LfgSettings/Index.ascx ~/Views/Shared/Index.aspx ~/Views/Shared/Index.ascx Layouts\Site.spark Shared\Site.spark </code></pre> <p>I don't know what these paths represent though, it looks like the search path for the Index view and the search paths for its masterpage. It seems though the .spark file cannot use a .master masterpage.</p> <p>I wonder though if its possible to write a wrapper .master file that calls into a .spark file which has the correct content regions. Some Reflector'ing would probably dig up some interfaces that could be made to work together.</p> http://stackoverflow.com/questions/1930010/why-use-a-mocking-framework-instead-of-hand-rolling-our-mocks/1930045#1930045 Comment by Frank Schwieterman on Why use a mocking framework instead of hand-rolling our mocks? Frank Schwieterman 2009-12-18T19:06:57Z 2009-12-18T19:06:57Z The Mock repository can be used to generate exceptions as well, rather than tweak the fake repository into obscurity. http://stackoverflow.com/questions/1924463/getting-peers-into-asp-net-mvc Comment by Frank Schwieterman on Getting Peers into ASP.NET-MVC Frank Schwieterman 2009-12-17T20:49:41Z 2009-12-17T20:49:41Z Is there another technology your peers would like to adopt? Maybe you could start a small project with them using both. http://stackoverflow.com/questions/1909453/what-mode-do-people-use-when-using-emacs-to-edit-web-pages-that-contain-css-java Comment by Frank Schwieterman on What mode do people use when using Emacs to edit web pages that contain CSS, javascript, and HTML? Frank Schwieterman 2009-12-15T19:10:33Z 2009-12-15T19:10:33Z No, because those are tools for programmers. :P http://stackoverflow.com/questions/1848839/javascript-decorators-howto/1848880#1848880 Comment by Frank Schwieterman on JavaScript decorators HOWTO? Frank Schwieterman 2009-12-04T18:54:07Z 2009-12-04T18:54:07Z new_func is a confusing name though, I'd call it &quot;originalFunc&quot; (presumably the &quot;originalFunc&quot; in your example is named something else) http://stackoverflow.com/questions/1848839/javascript-decorators-howto/1848880#1848880 Comment by Frank Schwieterman on JavaScript decorators HOWTO? Frank Schwieterman 2009-12-04T18:53:09Z 2009-12-04T18:53:09Z yeah, then set originalFunc = myExtendedVersion. http://stackoverflow.com/questions/1843905/clean-up-code-in-finalize-or-finally/1843948#1843948 Comment by Frank Schwieterman on Clean up code in finalize() or finally()? Frank Schwieterman 2009-12-04T00:24:31Z 2009-12-04T00:24:31Z question is tagged Java though... http://stackoverflow.com/questions/1838484/event-driven-vs-sequential-programming Comment by Frank Schwieterman on Event driven vs sequential programming Frank Schwieterman 2009-12-03T08:39:50Z 2009-12-03T08:39:50Z Events happens. http://stackoverflow.com/questions/432167/common-truisms-that-need-correcting-the-most/432181#432181 Comment by Frank Schwieterman on Common "Truisms" that need correcting the most. Frank Schwieterman 2009-12-03T01:15:10Z 2009-12-03T01:15:10Z well, thats true if you don't know how to write unit tests. http://stackoverflow.com/questions/1800818/unit-testing-jquery-document-ready-function/1801030#1801030 Comment by Frank Schwieterman on Unit testing jQuery document.ready function Frank Schwieterman 2009-11-30T17:25:36Z 2009-11-30T17:25:36Z You could use JSMock's andStub() functionality to record the passed in callback, then call that callback from the same test. This would not be desirable though, as now you have a test verifying separate things (leading to poor defect localization <a href="http://xunitpatterns.com/Goals%20of%20Test%20Automation.html#Defect%20Localization" rel="nofollow">xunitpatterns.com/Goals%20of%20Test%20Automation.&hellip;</a>) http://stackoverflow.com/questions/1794140/is-there-a-way-to-see-the-final-url-retrieved-by-an-xmlhttprequest/1794550#1794550 Comment by Frank Schwieterman on Is there a way to see the final URL retrieved by an XMLHttpRequest? Frank Schwieterman 2009-11-25T17:46:22Z 2009-11-25T17:46:22Z This coffee isn't working. Correction: &quot;would represent the final response, and not the redirect response&quot;. http://stackoverflow.com/questions/1794140/is-there-a-way-to-see-the-final-url-retrieved-by-an-xmlhttprequest/1794550#1794550 Comment by Frank Schwieterman on Is there a way to see the final URL retrieved by an XMLHttpRequest? Frank Schwieterman 2009-11-25T17:45:44Z 2009-11-25T17:45:44Z Thanks for recognizing I need to do this programmaticially. However I don't think the location header will work. The Location header is a header for the redirect response, not the final response. The XHR header's collection would represent the final response, and not the location header. There are no additional HTTP headers I see that have the location. http://stackoverflow.com/questions/1793903/problem-with-getting-page-with-jquery Comment by Frank Schwieterman on Problem with getting page with JQuery? Frank Schwieterman 2009-11-25T00:36:46Z 2009-11-25T00:36:46Z You should do more debugging and explain what actually happened. Was the request made? Was there an error result returned instead? My guess is inserting a &lt;form&gt; within a &lt;form&gt; is the problem. http://stackoverflow.com/questions/1792626/ie-6-strange-problem-background-bullet-only-shown-on-mouse-while-hover-is-not-app/1792806#1792806 Comment by Frank Schwieterman on IE 6 strange problem background bullet only shown on mouse while hover is not applied? Frank Schwieterman 2009-11-24T20:51:00Z 2009-11-24T20:51:00Z fact check: <a href="http://www.google.com/" rel="nofollow">google.com</a> works on IE6, and its 'losers' not 'loosers'. http://stackoverflow.com/questions/411688/how-to-extend-jquery-to-make-it-easier-to-retrieve-the-tagname/1372652#1372652 Comment by Frank Schwieterman on How to extend jQuery to make it easier to retrieve the tagName Frank Schwieterman 2009-11-24T18:45:47Z 2009-11-24T18:45:47Z may return an array or an item... will throw an exception if one of the selected item doesn't have a tagName... http://stackoverflow.com/questions/1744426/does-javascripts-new-operator-do-anything-but-make-life-difficult/1744449#1744449 Comment by Frank Schwieterman on Does Javascript's new operator do anything but make life difficult? Frank Schwieterman 2009-11-16T19:52:37Z 2009-11-16T19:52:37Z Actually, you can avoid using new by setting the prototype property directly on an object. This has the unfortunate side effect of causing o.hasOwnProperty(&quot;prototype&quot;) to return true, where it would return false if new was used.