User Jason Bunting - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T20:22:01Zhttp://stackoverflow.com/feeds/user/1790http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/547665/whats-the-essential-difference-between-the-two-handleexception-methods-of-exce0What's the essential difference between the two HandleException() methods of Exception Handling Application Block (Ent Lib 4.1)Jason Bunting2009-02-13T21:03:52Z2009-11-18T04:51:49Z
<p>In the most recent version (4.1, released October 2008) of The Microsoft Enterprise Library's Exception Handling Application Block, there are two HandleException() method signatures, and I am a bit lost on the intent for these, especially since neither the documentation, intellisense, nor the QuickStart apps intimate any meaningful difference.</p>
<p>Here are the two signatures:</p>
<pre><code>bool HandleException(Exception exceptionToHandle, string policyName);
bool HandleException(Exception exceptionToHandle, string policyName, out Exception exceptionToThrow);
</code></pre>
<p>All of the examples I have found use the first, as in this example straight out of the XML documentation comments on the actual method:</p>
<pre><code>try
{
Foo();
}
catch (Exception e)
{
if (ExceptionPolicy.HandleException(e, name)) throw;
}
</code></pre>
<p>And here, from the same source (the XML doc comments for the method), is an example of using the second:</p>
<pre><code>try
{
Foo();
}
catch (Exception e)
{
Exception exceptionToThrow;
if (ExceptionPolicy.HandleException(e, name, out exceptionToThrow))
{
if(exceptionToThrow == null)
throw;
else
throw exceptionToThrow;
}
}
</code></pre>
<p>So, my question is, what does using the second one give you that the first does not? This should probably be obvious to me, but my head is a mess today and I don't really want to keep banging my head against the proverbial wall any longer. :)</p>
<p>No speculations, please; I hope to hear from someone that actually knows what they are talking about from experience using this.</p>
http://stackoverflow.com/questions/1467946/domain-driven-design-aggregate-root-sub-aggregate-roots/1468147#14681472Answer by Jason Bunting for Domain Driven Design: Aggregate root & Sub Aggregate rootsJason Bunting2009-09-23T19:37:33Z2009-09-23T19:37:33Z<p>I don't know enough to "know," but it sounds good to me - besides, who is "in charge" of determining such things? This industry is so full of subjectivity when it comes to buzzwords and the application thereof to a given implementation.</p>
<p>For me, the most important core principle of DDD is whether or not you have kept the application true to the perspective of the business people and follows the ubiquitous language as closely as possible. I can't tell that from your description, but you should be able to make that judgment well enough.</p>
<p>Don't get too caught up in "perfection," just the fact that you are attempting to use DDD is admirable, and if you are doing it as best you know how given the knowledge about it that you posses, I don't see why it would be an invalid approach. </p>
<p>Obviously, there will be those that disagree, but I wouldn't be too hard on yourself. As long as you can look back at this implementation in a month or two and see where it could've been done better, you are probably just fine. :)</p>
http://stackoverflow.com/questions/1463867/javascript-double-dollar-sign/1463951#1463951-2Answer by Jason Bunting for JavaScript Double Dollar SignJason Bunting2009-09-23T04:26:55Z2009-09-23T04:26:55Z<p>Just as others have said, <code>$$</code> is an arbitrary identifier.</p>
<p>The JavaScript toolkit <a href="http://mochikit.com" rel="nofollow"><strong>MochiKit</strong></a> reserves a function identified by the same to <a href="http://mochikit.com/doc/html/MochiKit/Selector.html" rel="nofollow"><strong>select elements using CSS selector syntax</strong></a>, much like jQuery does, except without wrapping all the matching elements in a special object.</p>
<p>So, yeah - it's nothing particularly special, in and of itself.</p>
http://stackoverflow.com/questions/1402008/what-is-wrong-with-my-mvc-application-500-on-content-and-scripts0What is wrong with my MVC application?! (500 on Content and Scripts)Jason Bunting2009-09-09T20:51:15Z2009-09-10T21:05:31Z
<p>For anything under the Scripts or Content folders in my ASP.NET MVC application, I am getting the following error:</p>
<blockquote>
<p>The page cannot be displayed because an internal server error has occurred</p>
</blockquote>
<p>That's the response in its entirety (excepting the headers) - nothing else. I am hosting this on GoDaddy, and have not had problems with this application before. What did I do to screw this up?! Working on 4 hours of sleep isn't helping matters...</p>
http://stackoverflow.com/questions/1402008/what-is-wrong-with-my-mvc-application-500-on-content-and-scripts/1407716#14077161Answer by Jason Bunting for What is wrong with my MVC application?! (500 on Content and Scripts)Jason Bunting2009-09-10T21:05:31Z2009-09-10T21:05:31Z<p>This would be appropriate here:</p>
<blockquote>
<p>"It takes considerable knowledge just to realize the extent of your own ignorance."</p>
<pre><code> -Thomas Sowell
</code></pre>
</blockquote>
<p>So, when struggling to get a Flash-based, JavaScript-configured component to work in my web app, I added a <em>staticContent</em> node to my web.config, with a <em>mimeMap</em> node as a child:</p>
<pre><code><configuration>
...
<system.webServer>
...
<staticContent>
<mimeMap fileExtension=".mp4" mimeType="video/mpeg" />
</staticContent>
</system.webServer>
</configuration>
</code></pre>
<p>When I commented-out the entire <em>staticContent</em> node, everything worked just fine. I didn't know that adding a <em>mimeMap</em> here would cause all of the default <em>mimeMap</em>s (specified within the server's ApplicationHost.config) to be overridden, because that seems to be exactly what is going on...Then again, I am merely guessing - either way, not very easy to figure out.</p>
<p><strong>Thank you to everyone that responded, I appreciate it!</strong></p>
http://stackoverflow.com/questions/129335/how-do-you-redirecttoaction-using-post-instead-of-get/1343182#13431820Answer by Jason Bunting for How do you RedirectToAction using POST instead of GET?Jason Bunting2009-08-27T19:06:41Z2009-08-27T19:06:41Z<p>For your particular example, I would just do this, since you obviously don't care about actually having the browser get the redirect anyway (by virtue of accepting the answer you have already accepted):</p>
<pre><code>[AcceptVerbs(HttpVerbs.Get)]
public ActionResult Index() {
// obviously these values might come from somewhere non-trivial
return Index(2, "text");
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Index(int someValue, string anotherValue) {
// would probably do something non-trivial here with the param values
return View();
}
</code></pre>
<p>That works easily and there is no funny business really going on - this allows you to maintain the fact that the second one really only accepts HTTP POST requests (except in this instance, which is under your control anyway) and you don't have to use TempData either, which is what the link you posted in your answer is suggesting.</p>
<p>I would love to know what is "wrong" with this, if there is anything. Obviously, if you want to really have sent to the browser a redirect, this isn't going to work, but then you should ask why you would be trying to convert that regardless, since it seems odd to me.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/59766/how-do-you-get-javascript-jquery-intellisense-working-in-vs-2008/59770#5977035Answer by Jason Bunting for How do you get JavaScript/jQuery Intellisense Working in VS 2008?Jason Bunting2008-09-12T19:06:09Z2009-07-23T19:10:56Z<p>At the top of your external js file, add the following:</p>
<pre><code>/// <reference path="jQuery.js"/>
</code></pre>
<p>Make sure the path is correct, relative to the file's position in the folder structure, etc.</p>
<p>Also, any references need to be at the top of the file, before <em>any</em> other text, including comments - literally, the very first thing in the file. Hopefully future version of VS will work regardless of where it is in the file, or maybe they will do something altogether different...</p>
<p>Once you have done that and <em>saved the file</em>, hit CTRL+SHIFT+J to force VS to update Intellisense.</p>
http://stackoverflow.com/questions/1167064/how-can-i-programmatically-create-pdf-bookmarks-from-pdf-file0How can I programmatically create PDF bookmarks from PDF file?Jason Bunting2009-07-22T17:56:11Z2009-07-23T05:44:34Z
<p>So, I have used Pdf995's PDF print driver from a web browser to print web pages and eventually use PdfEdit995 to join these various PDF files into one large PDF. </p>
<p>Now I have a lot of large PDF documents that I wish to add bookmarks to, but am hoping there is a relatively easy way of doing this programmatically (using C#, preferably) - basically, I want to find, within each PDF, text that is large enough to qualify as a header, and use that text as the bookmark. </p>
<p>Any tips/advice/direction? Thanks!</p>
http://stackoverflow.com/questions/1016593/blank-asp-net-mvc-template/1016608#10166081Answer by Jason Bunting for Blank Asp.net MVC templateJason Bunting2009-06-19T06:30:26Z2009-06-19T07:36:20Z<p>I don't know of any currently available, but at the least you can create the template you want by creating a custom <a href="http://msdn.microsoft.com/en-us/library/6db0hwky.aspx" rel="nofollow"><strong>Visual Studio Template</strong></a>.</p>
<p><strong>Essentially, after deleting all of the files you don't want, do a File | Export Template in Visual Studio, follow the wizard to the promised land.</strong></p>
<p>If you end up doing that, I am sure others would love to have it. I have just been too lazy to do it myself, and haven't really been creating a lot of new MVC projects, just working on the same one for months. :)</p>
<p><hr /></p>
<p>UPDATE: To respond to your comment: Although I haven't really looked too deeply into it, I don't know why you wouldn't be able to include in your project template access to the test project wizard. I cracked open the default ASP.NET MVC project template metadata file and found this near the bottom:</p>
<pre><code><WizardExtension>
<Assembly>Microsoft.VisualStudio.Web.Extensions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35</Assembly>
<FullClassName>Microsoft.VisualStudio.Web.Mvc.TemplateWizard</FullClassName>
</WizardExtension>
</code></pre>
<p>If they can do it, I don't know why you wouldn't be able to as well. I am interested in looking into this more, but at the moment I am heading to bed - I am already up WAY too late considering I have a horrible chest cold. :)</p>
http://stackoverflow.com/questions/976343/how-can-i-check-if-a-javascript-eventhandler-has-been-set/976371#9763710Answer by Jason Bunting for How can i check if a JavaScript-Eventhandler has been set?Jason Bunting2009-06-10T15:30:51Z2009-06-10T15:30:51Z<p>Check, like this:</p>
<pre><code>if(typeof someNode.onclick == "function") {
// someNode has an event handler already set for the onclick event...
}
</code></pre>
<p>By the way, if you are using a library, you should say so - if you are, it might be easier/cleaner and would differ based on which library you are using...</p>
http://stackoverflow.com/questions/947352/javascript-closure-and-data-visibility/947410#9474102Answer by Jason Bunting for Javascript Closure and Data VisibilityJason Bunting2009-06-03T21:39:03Z2009-06-03T22:27:36Z<p>Well, I don't care to get into a religious war over how to create objects in JavaScript, since some people feel strongly that there is a right and wrong way to do it.</p>
<p>However, I want to point out something in your second set of code that isn't too savory - namely, the fact that you are assigning things new properties on the object contained in the <code>this</code> keyword - do you realize what that object is? It isn't an empty object unless you use instantiation syntax like this:</p>
<pre><code>var c = new create();
</code></pre>
<p>When you do that, the <code>this</code> keyword inside the body of the constructor function is assigned a brand new object, as though the first line in the body were something like:</p>
<pre><code>this = {};
</code></pre>
<p>But when you call <code>create()</code> as a function, as you do in that example, you are altering the scope outside of the function's definition (as alluded-to by @seanmonster in the comments).</p>
http://stackoverflow.com/questions/921894/visual-studio-2008-crashes-when-i-open-a-javascript-file/926757#9267570Answer by Jason Bunting for Visual Studio 2008 crashes when I open a Javascript file?Jason Bunting2009-05-29T15:57:19Z2009-05-29T15:57:19Z<p>Since this is a different "answer" than my last, I am creating another post/entry.</p>
<p>I did experience this from time to time on a project I was on last year. I was using <a href="http://www.MochiKit.com" rel="nofollow" title="MochiKit makes JavaScript suck less"><strong>MochiKit</strong></a> as my toolkit, so take that into consideration.</p>
<p>Basically, I had some code like this in a file called common.js, which ran in the global scope:</p>
<pre><code>if(typeof(DomEvent) == "undefined") {
DomEvent = {};
var domEventNames = [
"onabort", "onblur", "onchange", "onclick", "ondblclick", "onerror", "onfocus",
"onkeydown", "onkeypress", "onkeyup", "onload", "onmousedown", "onmousemove",
"onmouseout", "onmouseover", "onmouseup", "onreset", "onresize", "onscroll",
"onselect", "onsubmit", "onunload"
];
// forEach is a MochiKit function; functionality should be obvious
forEach(domEventNames, function(eventName) {
DomEvent[eventName] = eventName;
});
}
</code></pre>
<p>So, it basically dynamically builds an object assigned to the variable <code>DomEvent</code> and creates properties on that object that are have the same name as the value it holds (string representations of common browser events).</p>
<p>Now, I wanted Intellisense to help me with the API in other files, so in other files, I would have the following line in the top of the file:</p>
<pre><code>/// <reference path="common.js"/>
</code></pre>
<p>That tells Visual Studio to "import" the API from that JavaScript file for use with Intellisense in the file this declaration is used in. </p>
<p>So I speculated that since the code in the common.js file, which I showed above, was building a global variable's value dynamically, Visual Studio was barfing on it. I felt fairly good about this hypothesis because the JavaScript code itself is sound, and Visual Studio would only crash <em>if</em> I used that XML comment to assist Intellisense. If I removed it, there wasn't a problem.</p>
<p>Hope that helps you or someone else.</p>
http://stackoverflow.com/questions/921894/visual-studio-2008-crashes-when-i-open-a-javascript-file/923214#9232141Answer by Jason Bunting for Visual Studio 2008 crashes when I open a Javascript file?Jason Bunting2009-05-28T21:08:49Z2009-05-28T21:08:49Z<p>Do you have <a href="http://code.msdn.microsoft.com/PowerCommands" rel="nofollow" title="http://code.msdn.microsoft.com/PowerCommands">PowerCommands for Visual Studio 2008</a> installed? If so, check this post for help:</p>
<blockquote>
<p><a href="http://blog.jasonbunting.com/PermaLink,guid,d578f8c3-e975-4fca-8100-404db4de8af2.aspx" rel="nofollow" title="FIX: PowerCommands for Visual Studio 2008 Crashes IDE">FIX: PowerCommands for Visual Studio 2008 Crashes IDE</a></p>
</blockquote>
<p>The exact same thing happened to me when I was opening some JavaScript files.</p>
http://stackoverflow.com/questions/579963/can-i-get-specific-metadata-from-a-funct-object0Can I get specific metadata from a Func<T, object>?Jason Bunting2009-02-24T00:15:20Z2009-05-25T18:54:03Z
<p>Consider the following code:</p>
<pre><code>string propertyName;
var dateList = new List<DateTime>() { DateTime.Now };
propertyName = dateList.GetPropertyName(dateTimeObject => dateTimeObject.Hour);
// I want the propertyName variable to now contain the string "Hour"
</code></pre>
<p>Here is the extension method:</p>
<pre><code>public static string GetPropertyName<T>(this IList<T> list, Func<T, object> func) {
//TODO: would like to dynamically determine which
// property is being used in the func function/lambda
}
</code></pre>
<p>Is there a way to do this? I thought that maybe this other method, using <code>Expression<Func<T, object>></code> instead of <code>Func<T, object></code> would give me more power to find what I need, but I am at a loss at how.</p>
<pre><code>public static string GetPropertyName<T>(this IList<T> list, Expression<Func<T, object>> expr) {
// interrogate expr to get what I want, if possible
}
</code></pre>
<p>This is the first time I have done anything this deep with Linq, so maybe I am missing something obvious. Basically I like the idea of passing in lambdas, so that I get compile-time checking, but I don't know that my idea on how I can use them in this particular case will work.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/855126/what-is-the-best-way-to-profile-javascript-execution/855640#8556401Answer by Jason Bunting for What is the best way to profile javascript execution?Jason Bunting2009-05-13T01:17:15Z2009-05-13T01:17:15Z<p>Although Firebug has been mentioned, one additional thing you would want to look at with Firebug is a plugin for Firebug called <a href="http://fireunit.org/" rel="nofollow"><strong>FireUnit</strong></a>; John Resig talks about it in this blog post:</p>
<blockquote>
<p><a href="http://ejohn.org/blog/function-call-profiling/" rel="nofollow"><strong>JavaScript Function Call Profiling</strong></a></p>
</blockquote>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/220188/how-can-i-determine-if-a-dynamically-created-dom-element-has-been-added-to-the-do3How can I determine if a dynamically-created DOM element has been added to the DOM?Jason Bunting2008-10-20T22:38:38Z2009-05-12T03:11:37Z
<p><a href="http://www.w3.org/TR/REC-html40/interact/scripts.html" rel="nofollow"><strong>According to spec</strong></a>, only the <code>BODY</code> and <code>FRAMESET</code> elements provide an "onload" event to attach to, but I would like to know when a dynamically-created DOM element has been added to the DOM in JavaScript.</p>
<p>The super-naive heuristics I am currently using, which work, are as follows:</p>
<ul>
<li>Traverse the <strong>parentNode</strong> property of the element back until I find the ultimate ancestor (i.e. parentNode.parentNode.parentNode.etc until parentNode is null)<br /><br /></li>
<li>If the ultimate ancestor has a defined, non-null <strong>body</strong> property<br /><br />
<ul>
<li>assume the element in question is part of the dom</li>
</ul></li>
<li>else<br /><br />
<ul>
<li>repeat these steps again in 100 milliseconds</li>
</ul></li>
</ul>
<p>What I am after is either confirmation that what I am doing is sufficient (again, it is working in both IE7 and FF3) or a better solution that, for whatever reason, I have been completely oblivious to; perhaps other properties I should be checking, etc.</p>
<p><hr /></p>
<p>EDIT: I want a browser-agnostic way of doing this, I don't live in a one-browser world, unfortunately; that said, browser-specific information is appreciated, but please note which browser you know that it <em>does</em> work in. Thanks!</p>
http://stackoverflow.com/questions/220188/how-can-i-determine-if-a-dynamically-created-dom-element-has-been-added-to-the-do/850995#8509952Answer by Jason Bunting for How can I determine if a dynamically-created DOM element has been added to the DOM?Jason Bunting2009-05-12T03:10:34Z2009-05-12T03:10:34Z<p>UPDATE: For anyone interested in it, here is the implementation I finally used:</p>
<pre><code>function isInDOMTree(node) {
// If the farthest-back ancestor of our node has a "body"
// property (that node would be the document itself),
// we assume it is in the page's DOM tree.
return !!(findUltimateAncestor(node).body);
}
function findUltimateAncestor(node) {
// Walk up the DOM tree until we are at the top (parentNode
// will return null at that point).
// NOTE: this will return the same node that was passed in
// if it has no ancestors.
var ancestor = node;
while(ancestor.parentNode) {
ancestor = ancestor.parentNode;
}
return ancestor;
}
</code></pre>
<p>The reason I wanted this is to provide a way of synthesizing the <code>onload</code> event for DOM elements. Here is that function (although I am using something slightly different because I am using it in conjunction with <a href="http://www.mochikit.com/" rel="nofollow"><strong>MochiKit</strong></a>):</p>
<pre><code>function executeOnLoad(node, func) {
// This function will check, every tenth of a second, to see if
// our element is a part of the DOM tree - as soon as we know
// that it is, we execute the provided function.
if(isInDOMTree(node)) {
func();
} else {
setTimeout(function() { executeOnLoad(node, func); }, 100);
}
}
</code></pre>
<p>For an example, this setup could be used as follows:</p>
<pre><code>var mySpan = document.createElement("span");
mySpan.innerHTML = "Hello world!";
executeOnLoad(mySpan, function(node) {
alert('Added to DOM tree. ' + node.innerHTML);
});
// now, at some point later in code, this
// node would be appended to the document
document.body.appendChild(mySpan);
// sometime after this is executed, but no more than 100 ms after,
// the anonymous function I passed to executeOnLoad() would execute
</code></pre>
<p>Hope that is useful to someone.</p>
<p>NOTE: the reason I ended up with this solution rather than <a href="http://stackoverflow.com/questions/220188/how-can-i-determine-if-a-dynamically-created-dom-element-has-been-added-to-the-do/220224#220224"><strong>Darryl's answer</strong></a> was because the getElementById technique only works if you are within the same document; I have some iframes on a page and the pages communicate between each other in some complex ways - when I tried this, the problem was that it couldn't find the element because it was part of a different document than the code it was executing in.</p>
http://stackoverflow.com/questions/850285/jsonarray-in-silverlight-to-javascript/850295#8502950Answer by Jason Bunting for JsonArray in silverlight to javascriptJason Bunting2009-05-11T21:58:21Z2009-05-11T22:24:23Z<p>Assuming somevalues is truly an array, you do it like this:</p>
<pre><code>for(var i = 0; i < somevalues.length; i++) {
// do something with somevalues[i]
}
</code></pre>
<p>What you did was tell JavaScript to iterate over the properties of the <code>somevalues</code> object, which is similar, but not the same, as the iteration using a regular <code>for</code> loop.</p>
<p><hr /></p>
<p>EDIT: I am willing to bet your variable, <code>somevalues</code> is a string. Just do <code>alert(somevalues)</code> and see what happens.</p>
http://stackoverflow.com/questions/825616/how-can-i-reconstruct-url-route-in-asp-net-mvc-from-saved-data2How Can I Reconstruct URL/Route in ASP.NET MVC From Saved Data?Jason Bunting2009-05-05T16:03:16Z2009-05-05T18:16:17Z
<p>My unfamiliarity with the ASP.NET MVC framework and the plumbing thereof has brought me here, and I appreciate the patience it will take for anyone to read and consider my question!</p>
<p>Okay, here is the scenario: I have an application that has numerous pages with grids that display data based on searches, drilling down from other data, reports based on context-specific data (i.e. they are on a details page for Foo, then click on a link that shows a table of data related to Foo), etc. </p>
<p>From any and all of these pages, which are all over the app, the user can save the "report" or grid by giving it a name and a description. This doesn't really save the data, displayed in the grid, so much as saves the parameters that define what the grid looks like, saves the parameters that were used to <em>get</em> the data, and saves the parameters that define "where" in the app they are (the action, controller, route) - basically a bunch of metadata about the report/grid and how to construct it.</p>
<p>All of these saved reports are available in a single list, displaying the name and description, on a certain page in the app, with each linking to a generic URL, like "/Reports/Saved/248" (where 248 is an example of the report's ID). </p>
<p><em>Here is the part I need help on:</em></p>
<p>When I get to the action via the url "/Reports/Saved/248" and pull the metadata out of the database for that particular report, how can I redirect that data and the request to the same action, controller and route used to display the view that the report was originally saved from? Essentially, I want the user to view the report in the same view, with the same URL as it was saved from. If possible, it would be nice for me to be able to basically "call" that same action as though I am making a method call.</p>
<p><hr /></p>
<p>UPDATE: Unfortunately, our report pages (i.e. the pages these grids appear on) are NOT using RESTful URLs - for example, we have what we call an Advanced Search page, which takes a rather large number of potential parameters (nearly 30) that come from a form containing select lists, textboxes, etc. When the user submits that page, we do a POST to an action which accepts a complex type that the model binder builds for us - that same action is what I want to call when the user selects a saved Advanced Search from the database. That example epitomizes my problem.</p>
<p>Thanks </p>
http://stackoverflow.com/questions/821516/browser-independent-way-to-detect-when-image-has-been-loaded/821693#8216931Answer by Jason Bunting for Browser-independent way to detect when image has been loadedJason Bunting2009-05-04T19:52:54Z2009-05-04T20:13:50Z<p><a href="http://www.w3.org/TR/REC-html40/interact/scripts.html" rel="nofollow"><strong>According to the W3C spec</strong></a>, <em>only</em> the BODY and FRAMESET elements provide an "onload" event to attach to. Some browsers support it regardless, but just be aware that it is not required to implement the W3C spec.</p>
<p>Something that might be pertinent to this discussion, though not necessarily the answer you are in need of, is this discussion:</p>
<blockquote>
<p><a href="http://code.google.com/p/google-web-toolkit/issues/detail?id=863" rel="nofollow"><strong>Image.onload event does not fire on Internet Explorer when image is in cache</strong></a></p>
</blockquote>
<p><hr /></p>
<p>Something else that <em>may be related</em> to your needs, though it may not, is this info on supporting a synthesized "onload" event for <em>any dynamically-loaded</em> DOM element:</p>
<p><a href="http://stackoverflow.com/questions/220188/how-can-i-determine-if-a-dynamically-created-dom-element-has-been-added-to-the-do"><strong>How can I determine if a dynamically-created DOM element has been added to the DOM?</strong></a></p>
http://stackoverflow.com/questions/813383/how-can-i-construct-an-object-using-an-array-of-values-for-parameters-rather-tha/813978#8139781Answer by Jason Bunting for How can I construct an object using an array of values for parameters, rather than listing them out, in JavaScript?Jason Bunting2009-05-02T01:58:31Z2009-05-04T04:10:35Z<p>Hacks are hacks are hacks, but perhaps this one is a bit more elegant than some of the others, since calling syntax would be similar to what you want and you wouldn't need to modify the original classes at all:</p>
<pre><code>Function.prototype.build = function(parameterArray) {
var functionNameResults = (/function (.{1,})\(/).exec(this.toString());
var constructorName = (functionNameResults && functionNameResults.length > 1) ? functionNameResults[1] : "";
var builtObject = null;
if(constructorName != "") {
var parameterNameValues = {}, parameterNames = [];
for(var i = 0; i < parameterArray.length; i++) {
var parameterName = ("p_" + i);
parameterNameValues[parameterName] = parameterArray[i];
parameterNames.push(("parameterNameValues." + parameterName));
}
builtObject = (new Function("parameterNameValues", "return new " + constructorName + "(" + parameterNames.join(",") + ");"))(parameterNameValues);
}
return builtObject;
};
</code></pre>
<p>Now you can do either of these to build an object:</p>
<pre><code>var instance1 = MyClass.build(["arg1","arg2"]);
var instance2 = new MyClass("arg1","arg2");
</code></pre>
<p>Granted, some may not like modifying the Function object's prototype, so you can do it this way and use it as a function instead:</p>
<pre><code>function build(constructorFunction, parameterArray) {
var functionNameResults = (/function (.{1,})\(/).exec(constructorFunction.toString());
var constructorName = (functionNameResults && functionNameResults.length > 1) ? functionNameResults[1] : "";
var builtObject = null;
if(constructorName != "") {
var parameterNameValues = {}, parameterNames = [];
for(var i = 0; i < parameterArray.length; i++) {
var parameterName = ("p_" + i);
parameterNameValues[parameterName] = parameterArray[i];
parameterNames.push(("parameterNameValues." + parameterName));
}
builtObject = (new Function("parameterNameValues", "return new " + constructorName + "(" + parameterNames.join(",") + ");"))(parameterNameValues);
}
return builtObject;
};
</code></pre>
<p>And then you would call it like so:</p>
<pre><code>var instance1 = build(MyClass, ["arg1","arg2"]);
</code></pre>
<p>So, I hope those are useful to someone - they allow you to leave the original constructor functions alone and get what you are after in one simple line of code (unlike the two lines you need for the currently-selected solution/workaround.</p>
<p>Feedback is welcome and appreciated.</p>
<p><hr /></p>
<p>UPDATE: One other thing to note - try creating instances of the same type with these different methods and then checking to see if their constructor properties are the same - you may want that to be the case if you ever need to check the type of an object. What I mean is best illustrated by the following code:</p>
<pre><code>function Person(firstName, lastName) {
this.FirstName = firstName;
this.LastName = lastName;
}
var p1 = new Person("John", "Doe");
var p2 = Person.build(["Sara", "Lee"]);
var areSameType = (p1.constructor == p2.constructor);
</code></pre>
<p>Try that with some of the other hacks and see what happens. Ideally, you want them to be the same type.</p>
<p><hr /></p>
<p>CAVEAT: As noted in the comments, this will not work for those constructor functions that are created using anonymous function syntax, i.e. </p>
<pre><code>MyNamespace.SomeClass = function() { /*...*/ };
</code></pre>
<p><em>Unless</em> you create them like this:</p>
<pre><code>MyNamespace.SomeClass = function SomeClass() { /*...*/ };
</code></pre>
<p>The solution I provided above may or may not be useful to you, you need to understand exactly what you are doing to arrive at the best solution for your particular needs, and you need to be cognizant of what is going on to make my solution "work." If you don't understand how my solution works, spend time to figure it out.</p>
<p><hr /></p>
<p>ALTERNATE SOLUTION: Not one to overlook other options, here is one of the other ways you could skin this cat (with similar caveats to the above approach), this one a little more esoteric:</p>
<pre><code>function partial(func/*, 0..n args */) {
var args = Array.prototype.slice.call(arguments, 1);
return function() {
var allArguments = args.concat(Array.prototype.slice.call(arguments));
return func.apply(this, allArguments);
};
}
Function.prototype.build = function(args) {
var constructor = this;
for(var i = 0; i < args.length; i++) {
constructor = partial(constructor, args[i]);
}
constructor.prototype = this.prototype;
var builtObject = new constructor();
builtObject.constructor = this;
return builtObject;
};
</code></pre>
<p>Enjoy!</p>
http://stackoverflow.com/questions/815261/how-to-use-jquery-to-decode-the-return-json-object/815276#8152760Answer by Jason Bunting for How to use jquery to decode the return json object?Jason Bunting2009-05-02T17:39:40Z2009-05-02T17:39:40Z<p>This may be it, I don't know because I know nothing about that plugin, but you may need to take a look at the response type you are setting on the server-side of things; you should set the HTTP response to have a content/MIME type of something like "text/plain", "text/javascript" or "application/javascript" - see if that fixes your problem.</p>
http://stackoverflow.com/questions/812828/javascript-function-objects/814108#8141082Answer by Jason Bunting for Javascript function objectsJason Bunting2009-05-02T04:00:42Z2009-05-02T04:00:42Z<p>Okay, so - where to start? :) Here is the partial function to begin with, you will need this (now and in the future, if you spend a lot of time hacking JavaScript):</p>
<pre><code>function partial(func /*, 0..n args */) {
var args = Array.prototype.slice.call(arguments, 1);
return function() {
var allArguments = args.concat(Array.prototype.slice.call(arguments));
return func.apply(this, allArguments);
};
}
</code></pre>
<p>I see a lot of things about your code that make me cringe, but since I don't have time to really critique it, and you didn't ask for it, I will suggest the following if you want to rid yourself of the hack you are currently using, and a few other things:</p>
<h2>The setDynamicSelectElements() function</h2>
<p>In this function, you can change this line:</p>
<pre><code>onclick = function() { selectList(ySelectArgs[0], ySelectArgs[1], ySelectArgs[2]) }
</code></pre>
<p>To this:</p>
<pre><code>onclick = function() { selectList.apply(null, ySelectArgs); }
</code></pre>
<h2>The selectList() function</h2>
<p>In this function, you can get rid of this code where you are using eval - don't ever use eval unless you have a good reason to do so, it is very risky (go read up on it):</p>
<pre><code>if (fnFollowing) {
fnFollowing = eval(fnFollowing)
configureSelectList.clickEvent = fnFollowing
}
</code></pre>
<p>And use this instead:</p>
<pre><code>if(fnFollowing) {
fnFollowing = window[fnFollowing]; //this will find the function in the global scope
}
</code></pre>
<p>Then, change this line:</p>
<pre><code>var oDiv = setDiv(sListName, sQuery, 'dynamicSelect', configureSelectList);
</code></pre>
<p>To this:</p>
<pre><code>var oDiv = setDiv(sListName, sQuery, 'dynamicSelect', partial(configureSelectListAlternate, fnFollowing));
</code></pre>
<p>Now, in that code I provided, I have "configureSelectListAlternate" - that is a function that is the same as "configureSelectList" but has the parameters in the reverse order - if you can reverse the order of the parameters to "configureSelectList" instead, do that, otherwise here is my version:</p>
<pre><code>function configureSelectListAlternate(fnOnClick, oDiv) {
configureSelectList(oDiv, fnOnClick);
}
</code></pre>
<h2>The configureSelectList() function</h2>
<p>In this function, you can eliminate this line:</p>
<pre><code>if(!fnOnClick) fnOnClick=configureSelectList.clickEvent
</code></pre>
<p>That isn't needed any longer. Now, I see something I don't understand:</p>
<pre><code>if (!oDiv) oDiv = configureSelectList.Container;
</code></pre>
<p>I didn't see you hook that Container property on in any of the other code. Unless you need this line, you should be able to get rid of it.</p>
<p>The setDiv() function can stay the same.</p>
<p><hr /></p>
<p>Not too exciting, but you get the idea - your code really could use some cleanup - are you avoiding the use of a library like jQuery or <a href="http://www.mochikit.com" rel="nofollow"><strong>MochiKit</strong></a> for a good reason? It would make your life a lot easier...</p>
http://stackoverflow.com/questions/812828/javascript-function-objects/812901#8129010Answer by Jason Bunting for Javascript function objectsJason Bunting2009-05-01T19:36:45Z2009-05-01T23:26:19Z<p>Maybe you are looking for <a href="http://stackoverflow.com/questions/321113/how-can-i-pre-set-arguments-in-javascript-function-call-partial-function-applic"><strong>Partial Function Application</strong></a>, or possibly currying?</p>
<p>Here is a quote from <a href="http://www.uncarved.com/blog/not%5Fcurrying.mrk" rel="nofollow"><strong>a blog post on the difference</strong></a>:</p>
<blockquote>
<p>Where partial application takes a function and from it builds a function which takes fewer arguments, currying builds functions which take multiple arguments by composition of functions which each take a single argument.</p>
</blockquote>
<p>If possible, it would help us help you if you could simplify your example and/or provide actual JS code instead of pseudocode.</p>
http://stackoverflow.com/questions/813370/convert-a-json-object-to-nested-form-fields/813672#8136721Answer by Jason Bunting for Convert a JSON object to nested form fields?Jason Bunting2009-05-01T23:14:30Z2009-05-01T23:14:30Z<p>So, I have no clue why you want to do what you say you want to do, and I hope you will fill us all in, but this code should be close enough for you to be able to tweak it (this is based on <a href="http://stackoverflow.com/questions/264430/how-can-i-get-a-list-of-the-differences-between-two-javascript-object-graphs"><strong>some code of mine that I use to find differences in JavaScript object graphs</strong></a>):</p>
<pre><code>function doStrangeThing(obj) {
var propertyChanges = [];
var objectGraphPath = [];
(function(obj, refObj) {
if ( obj.constructor == Object || (obj.constructor != Number &&
obj.constructor != String && obj.constructor != Date && obj.constructor != Boolean &&
obj.constructor != RegExp && obj.constructor != Function)) {
for (var property in obj) {
objectGraphPath.push((objectGraphPath.length > 0) ? "[" + property + "]" : property);
if (obj[property].constructor != Function) {
if (!refObj[property]) refObj[property] = {};
arguments.callee(obj[property], refObj[property]);
}
objectGraphPath.pop();
}
} else if (obj.constructor != Function) {
if (obj != refObj) {
propertyChanges.push("\"" + objectGraphPath.join("") + "\":\"" + obj.toString() + "\"");
}
}
})(obj, {});
return "{" + propertyChanges.join(",") + "}";
}
</code></pre>
<p>Here is what I did to test it:</p>
<pre><code>doStrangeThing({'a':{'b':{'c':'1200'}}, 'z':'foo', 'bar':{'baz':'1', 'id':2}});
</code></pre>
<p>Which results in this value:</p>
<pre><code>{"a[b][c]":"1200","z":"foo","bar[baz]":"1","bar[id]":"2"}
</code></pre>
<p>Hope that is useful to you in some way...</p>
http://stackoverflow.com/questions/18428/what-considerations-should-be-made-before-reinventing-the-wheel10What considerations should be made before reinventing the wheel?Jason Bunting2008-08-20T17:48:17Z2009-04-18T10:27:10Z
<p>All too often I see other <a href="http://refactormycode.com/codes/360-balance-html-tags" rel="nofollow">people reinventing the wheel</a>, and when I do, I wonder what factors played into their decision to do so. </p>
<p>There are times I reinvent the wheel consciously, merely because I am interested in the mental exercise, and other times without realizing it because of a lack of research.</p>
<p>What are considerations you use before making the decision to reinvent the wheel?</p>
http://stackoverflow.com/questions/321113/how-can-i-pre-set-arguments-in-javascript-function-call-partial-function-applic/321527#3215279Answer by Jason Bunting for How can I pre-set arguments in JavaScript function call? (Partial Function Application)Jason Bunting2008-11-26T17:39:12Z2009-03-26T19:13:22Z<p>First of all, you need a partial - <a href="http://stackoverflow.com/questions/218025/what-is-the-difference-between-currying-and-partial-application"><strong>there is a difference between a partial and a curry</strong></a> - and here is all you need, <em>without a framework</em>:</p>
<pre><code>function partial(func /*, 0..n args */) {
var args = Array.prototype.slice.call(arguments, 1);
return function() {
var allArguments = args.concat(Array.prototype.slice.call(arguments));
return func.apply(this, allArguments);
};
}
</code></pre>
<p>Now, using your example, you can do exactly what you are after:</p>
<pre><code>partial(out, "hello")("world");
partial(out, "hello", "world")();
// and here is my own extended example
var sayHelloTo = partial(out, "Hello");
sayHelloTo("World");
sayHelloTo("Alex");
</code></pre>
<p>The <code>partial()</code> function could be used to implement, but <em>is not</em> currying. Here is a quote from <a href="http://www.uncarved.com/blog/not%5Fcurrying.mrk" rel="nofollow"><strong>a blog post on the difference</strong></a>:</p>
<blockquote>
<p>Where partial application takes a function and from it builds a function which takes fewer arguments, currying builds functions which take multiple arguments by composition of functions which each take a single argument.</p>
</blockquote>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/640651/is-there-a-reason-to-not-use-net-framework-defined-exception-classes-in-your-own4Is there a reason to NOT use .NET Framework-defined exception classes in your own code?Jason Bunting2009-03-12T21:54:19Z2009-03-12T22:21:11Z
<p>So, we are using the <a href="http://msdn.microsoft.com/en-us/library/dd203116.aspx" rel="nofollow">Enterprise Library 4.1 Exception Handling Application Block</a> to deal with logging/handling our exceptions in a multiple-project application. We have a few custom exceptions and are throwing some exceptions whose classes are defined in the .NET framework's standard class libraries (e.g. ArgumentException, InvalidOperationException, ArgumentNullException, etc.). </p>
<p>Today, our team lead decided that he didn't want us to use the latter, since the .NET framework would throw those types of exceptions, and in order to facilitate filtering with the application block's policies, we should use only custom exceptions, going so far as to practically duplicate .NET standard class library exceptions with custom versions, as in <em>Custom</em>ArgumentException, <em>Custom</em>InvalidOperationException, etc.</p>
<p>My question is, what is wrong with this approach? I couldn't put my finger on it at the time, but it smelled wrong to me and I haven't been able to shake my uneasy feelings about it. Am I worried about something that really isn't that big of a deal? I guess it just feels like the tail wagging the dog a bit here...</p>
http://stackoverflow.com/questions/139142/whata-good-way-to-organize-external-javascript-files/140662#1406621Answer by Jason Bunting for What'a Good Way to Organize External Javascript File(s)Jason Bunting2008-09-26T16:53:12Z2009-02-06T17:56:40Z<p>UPDATE: I explain this a bit more in depth in <a href="http://blog.jasonbunting.com/PermaLink,guid,5a2506a1-64c6-416d-af16-f33390de54fd.aspx" rel="nofollow"><strong>a blog post</strong></a>.</p>
<p>Assuming you mean .aspx pages when you indicate "HTML pages," here is what I do:</p>
<p>Let's say I have a page named foo.aspx and I have JavaScript specific to it. I name the .js file foo.aspx.js. Then I use something like this in a <strong>base</strong> page class (i.e. all of my pages inherit from this class):</p>
<pre><code>protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
string possiblePageSpecificJavaScriptFile = string.Format("{0}.js", this.TemplateControl.AppRelativeVirtualPath);
if (File.Exists(Server.MapPath(possiblePageSpecificJavaScriptFile)) == true)
{
string absolutePath = possiblePageSpecificJavaScriptFile.Replace("~", Request.ApplicationPath);
absolutePath = string.Format("/{0}", absolutePath.TrimStart('/'));
Page.ClientScript.RegisterClientScriptInclude(absolutePath, absolutePath);
}
}
</code></pre>
<p>So, for each page in my application, this will look for a *.aspx.js file that matches the name of the page (in our example, foo.aspx.js) and place, within the rendered page, a script tag referencing it. (The code after the <code>base.OnLoad(e);</code> would best be extracted, I am simply trying to keep this as short as possible!)</p>
<p>To complete this, I have a registry hack that will cause any *.aspx.js files to collapse underneath the *.aspx page in the solution explorer of Visual Studio (i.e. it will hide underneath the page, just like the *.aspx.cs file does). Depending on the version of Visual Studio you are using, the registry hack is different. Here are a couple that I use with <strong>Windows XP</strong> (I don't know if they differ for Vista because I don't use Vista) - copy each one into a text file and rename it with a .reg extension, then execute the file:</p>
<h3>Visual Studio 2005</h3>
<pre><code>Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.aspx\.js]
@=""
</code></pre>
<h3>Visual Studio 2008</h3>
<pre><code>Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.aspx\.js]
@=""
</code></pre>
<p>You will probably need to reboot your machine before these take effect. Also, the nesting will only take place for newly-added .js files, any that you have which are already named *.aspx.js can be nested by either re-adding them to the project or manually modifying the .csproj file's XML.</p>
<p>Anyway, that is how I do things and it really helps to keep things organized. For JavaScript files containing commonly-used JavaScript, I keep those in a root-level folder called JavaScript and also have some code in my base page class that adds those references. That should be simple enough to figure out. Hope this helps someone.</p>
http://stackoverflow.com/questions/50386/good-features-for-an-orm/50403#5040322Answer by Jason Bunting for Good Features for an ORMJason Bunting2008-09-08T18:48:51Z2009-02-04T17:37:07Z<p>For the love of all that's holy (and the women and the children), do everything possible to convince them not to go with a custom O/RM solution. Why are people wanting to re-invent the wheel when there are perfectly-good, open-source wheels already in existence?!?!</p>
http://stackoverflow.com/questions/129335/how-do-you-redirecttoaction-using-post-instead-of-get/1343182#1343182Comment by Jason Bunting on How do you RedirectToAction using POST instead of GET?Jason Bunting2009-11-14T07:25:49Z2009-11-14T07:25:49ZFor the idiots down-voting this: why? I don't have a problem with getting a down-vote per se, but at least tell me why and what is wrong with my answer instead of merely voting it down and leaving no feedback.http://stackoverflow.com/questions/1463867/javascript-double-dollar-sign/1463951#1463951Comment by Jason Bunting on JavaScript Double Dollar SignJason Bunting2009-11-14T07:24:25Z2009-11-14T07:24:25ZI'd love to know why the *&@#$!! people are down-voting me on this; if you are going to down-vote, at least be nice enough to mention WHY.http://stackoverflow.com/questions/130396/are-there-constants-in-javascript/130398#130398Comment by Jason Bunting on Are there constants in Javascript?Jason Bunting2009-11-10T19:09:43Z2009-11-10T19:09:43ZLOL - yeah, since the question has nothing to do with Firefox, you are being a bit pedantic (read: ridiculous). Are you going to search this entire website for "FireFox" and correct everyone? ;)
Feel free to correct the mistake yourself, no comment needed - this is a wiki after all!http://stackoverflow.com/questions/51339/how-can-you-handle-an-in-sub-query-with-linq-to-sql/51417#51417Comment by Jason Bunting on How can you handle an IN sub-query with LINQ to SQL?Jason Bunting2009-10-14T01:04:43Z2009-10-14T01:04:43ZQuick and to the point - great answer. Even though building the inner query in a separate statement is definitely clear, might as well know how to do it inline. Thanks!http://stackoverflow.com/questions/1483822/how-to-include-cluetip-in-a-greasemonkey-scriptComment by Jason Bunting on How to include cluetip in a GreaseMonkey scriptJason Bunting2009-09-27T16:31:11Z2009-09-27T16:31:11ZCan you post the script to <a href="http://userscripts.org/" rel="nofollow">userscripts.org</a> or somewhere else and let us know what website this is for? I would like to debug it myself, but I am too lazy to do all the work. I have written quite a number of complex GM scripts in the past, but it has been a while.http://stackoverflow.com/questions/230973/how-to-convert-all-strings-in-liststring-to-lower-case-using-linq/231016#231016Comment by Jason Bunting on How to Convert all strings in List<string> to lower case using LINQ?Jason Bunting2009-09-18T02:55:16Z2009-09-18T02:55:16ZAlthough I am writing this almost a year later, and although I am not Daok, I will tell you why your answer is "wrong" - you said "Kyralessa's solution is your best option" when it isn't - my solution is cleaner and clearer.http://stackoverflow.com/questions/1402008/what-is-wrong-with-my-mvc-application-500-on-content-and-scripts/1402049#1402049Comment by Jason Bunting on What is wrong with my MVC application?! (500 on Content and Scripts)Jason Bunting2009-09-09T21:05:35Z2009-09-09T21:05:35ZNope, that's not it.http://stackoverflow.com/questions/1402008/what-is-wrong-with-my-mvc-application-500-on-content-and-scripts/1402047#1402047Comment by Jason Bunting on What is wrong with my MVC application?! (500 on Content and Scripts)Jason Bunting2009-09-09T21:04:09Z2009-09-09T21:04:09ZNope, that doesn't help - the response is directly from IIS on those files themselves.http://stackoverflow.com/questions/139142/whata-good-way-to-organize-external-javascript-files/143553#143553Comment by Jason Bunting on What'a Good Way to Organize External Javascript File(s)Jason Bunting2009-09-05T07:00:40Z2009-09-05T07:00:40ZInline scripts, however, are not cached by the browser, so this solution isn't so great after all...http://stackoverflow.com/questions/85815/how-to-tell-if-a-javascript-function-is-defined/1338243#1338243Comment by Jason Bunting on How to tell if a Javascript function is definedJason Bunting2009-08-27T19:11:53Z2009-08-27T19:11:53ZAs a best practice and general rule, never use "eval" unless you have some insanely good reasons. Very bad idea, very bad. No room here to tell you why, but you should go read up on it.http://stackoverflow.com/questions/141002/javascript-error-elementname-has-no-properties/141101#141101Comment by Jason Bunting on Javascript error: [elementname] has no propertiesJason Bunting2009-08-17T23:29:26Z2009-08-17T23:29:26Z@mwilcox - what? I don't understand why your comment is relevant; not to mention setTimeout is an extremely valuable function in JavaScript. Your statement is rather useless since you give no backup reasons or qualifications. A last resort for what? And how do they help when dealing with plugins? Your comment is out of context and seemingly pointless.http://stackoverflow.com/questions/440943/how-can-we-get-dynamicdata-working-with-efpocoadapterComment by Jason Bunting on How can we get DynamicData working with EFPocoAdapter?Jason Bunting2009-08-06T21:13:59Z2009-08-06T21:13:59ZHi ashish; no, we ended up ditching the it early on, shortly after this question was written. We were working against Oracle and the Oracle provider wasn't that great at giving us everything we needed and we decided against further-complicating our application's architecture and implementation with yet another layer.
I think the idea of the EFPocoAdapter is great and would try to use it again if I were in charge of designing everything and had to use EF. Otherwise, I would probably stick with HNibernate until EF 2.0 is released and proves it is worth your time...but that's just my opinion!http://stackoverflow.com/questions/604814/asp-net-mvc-actionlinks-and-shared-hosting-aliased-domainsComment by Jason Bunting on ASP.Net MVC ActionLink's and Shared Hosting Aliased DomainsJason Bunting2009-08-03T17:04:47Z2009-08-03T17:04:47ZI am dealing with this now as well, I loathe it. If I have time, I hope to come up with a better solution...http://stackoverflow.com/questions/1167064/how-can-i-programmatically-create-pdf-bookmarks-from-pdf-file/1169782#1169782Comment by Jason Bunting on How can I programmatically create PDF bookmarks from PDF file?Jason Bunting2009-07-23T12:44:37Z2009-07-23T12:44:37ZThanks for the response - I will check into all of these; from what I can tell, iTextSharp or ABCpdf will be what I end up using, although that Acrobat plug-in sounds worth a try too.http://stackoverflow.com/questions/1104213/javascript-should-i-use-or-char-to-define-string/1104226#1104226Comment by Jason Bunting on JavaScript: should i use ' or " char to define string?Jason Bunting2009-07-09T17:07:18Z2009-07-09T17:07:18ZWhen I see single quotes in JavaScript it makes me cringe, unless they are using it for something regarding proper English grammar...I would rather just escape double quotes than use singles. I guess I spent too much time in C, C++ and C# using single quotes always means the char data type to me, not a string.