User BarelyFitz - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T10:32:05Z http://stackoverflow.com/feeds/user/101157 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/926345/pipe-incoming-email-to-a-script-on-windows-iis-smtp 1 Pipe incoming email to a script on Windows IIS SMTP? BarelyFitz 2009-05-29T14:44:04Z 2009-07-03T20:50:59Z <p>I have a web application running on Windows IIS. This app has a database where each item has a unique key (1, 2, 3...), and a list of email addresses (among other things).</p> <p>I would like users to send email to the server, using an email address that identifies the item, then have the server relay the message to the email addresses for that item. For example, if a user sends email to the following address:</p> <pre><code>item-75@myserver.example.com </code></pre> <p>Then the server would receive the email and pipe it to a script. The script would query the database for item 75 to get a list of email addresses, then re-send the email.</p> <p>I could do this easily on a unix system using sendmail, but I have no idea if a similar setup can be accomplished on a Windows system (or if it would require additional software).</p> http://stackoverflow.com/questions/942011/how-to-prevent-javascript-injection-attacks-within-user-generated-html/942041#942041 3 Answer by BarelyFitz for How to prevent Javascript injection attacks within user-generated HTML BarelyFitz 2009-06-02T21:41:10Z 2009-06-02T21:41:10Z <p>Whitelist for elements and attributes is the <em>only</em> acceptable choice in my opinion. Anything not on your whitelist should be stripped out or encoded (change &lt;>&amp;" to entities). Also be sure to check the values within the attributes you allow.</p> <p>Anything less and you are opening yourself up to problems - known exploits or those that will be discovered in the future.</p> <p>See also: <a href="http://ha.ckers.org/xss.html" rel="nofollow">XSS (Cross Site Scripting) Cheat Sheet</a></p> http://stackoverflow.com/questions/937603/a-jquery-question-about-variables-and-selectors/937750#937750 6 Answer by BarelyFitz for A jQuery question about variables and selectors BarelyFitz 2009-06-02T03:00:51Z 2009-06-02T03:00:51Z <p>A best practice that many people use when they create a variable like this is to name it starting with $, to indicate that it is a jquery object. So you could name the variable $o, and you can directly call other jQuery chain functions after it, without having to put $() around the variable.</p> <pre><code>$o.hide(); </code></pre> <p>It is a good idea to start with the surrounding element for the area you are manipulating, to avoid having to search the entire document. For example, to get all links within a single section of the document (without having to search the whole document):</p> <pre><code>var $o = $('#mysection'); var $links = $('a', $o); // equiv to $o.find('a') </code></pre> <p>Finally, it never hurts to pass a jQuery object back through jQuery:</p> <pre><code>$o === $($o) </code></pre> <p>This has a nice side effect - you can write a function that accepts any of the following as an argument: a selector, an element, or a jQuery object:</p> <pre><code>function myFunc(e) { var $e = $(e); } // All of the following will work: myFunc('#mysection'); myFunc(document.getElementById('mysection')); myFunc($('#mysection a')); </code></pre> http://stackoverflow.com/questions/936465/jquery-ajax-javascript-execution/936763#936763 0 Answer by BarelyFitz for jQuery Ajax JavaScript Execution BarelyFitz 2009-06-01T20:59:41Z 2009-06-01T20:59:41Z <p>When you add HTML to an element using jQuery, first jQuery searches for any SCRIPT elements in the HTML. If the HTML contains SCRIPT SRC="", then jquery attempts to asynchronously fetch the javascript file. This could be causing your delay.</p> http://stackoverflow.com/questions/936580/a-question-about-referencing-functions-in-javascript/936614#936614 3 Answer by BarelyFitz for A question about referencing functions in Javascript BarelyFitz 2009-06-01T20:29:56Z 2009-06-01T20:32:30Z <p>Good question. It shouldn't cause any JavaScript problems.</p> <p>Other things to consider: you are potentially exposing your admin capabilities to the world when you do this, which might be useful to hackers. That's probably not much of a concern, but it is something to be aware of.</p> <h3>See also:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/261599/why-can-i-use-a-function-before-its-defined-in-javascript">Why can I use a function before it’s defined in Javascript?</a></p> </blockquote> http://stackoverflow.com/questions/936241/can-i-tell-anything-about-a-hyperlink-that-was-clicked-in-javascript/936447#936447 0 Answer by BarelyFitz for Can I tell anything about a hyperlink that was clicked in JavaScript? BarelyFitz 2009-06-01T19:51:14Z 2009-06-01T19:51:14Z <p>Another solution:</p> <p>Add an onclick handler to the document. When a user clicks the link, the click event will "bubble" up to the window, and you will have access to the event to determine which link was clicked.</p> <p>This might be useful if you only want the code to run for those links that already have onclick="determine()" - you could set the determine() function to set a variable. Then when the user clicks the link, the determine() function runs to set the variable, and when the document click handler runs you could check for the variable - then you will know that the link had onclick="determine()".</p> <p>Let me know if I can make this a little more complicated for you... :-)</p> http://stackoverflow.com/questions/936241/can-i-tell-anything-about-a-hyperlink-that-was-clicked-in-javascript/936423#936423 1 Answer by BarelyFitz for Can I tell anything about a hyperlink that was clicked in JavaScript? BarelyFitz 2009-06-01T19:44:56Z 2009-06-01T19:44:56Z <p>If you cannot change the onclick="determine()" in your HTML, but you can change the determine() function, then I think your best bet is to:</p> <p>Leave the determine() function blank so it doesn't do anything.</p> <p>Use javascript (as described by other answers) to add a real click handler to each link, and use the event to determine which link was clicked then execute the desired code.</p> http://stackoverflow.com/questions/932518/getting-jquery-to-work-in-jetpack/932772#932772 2 Answer by BarelyFitz for Getting jQuery to work in Jetpack BarelyFitz 2009-05-31T20:16:45Z 2009-05-31T20:16:45Z <p>I'm not familiar with jetpack, but your jquery seems to be quite messed up.</p> <p>If "doc" is an HTML document, then doing $(doc).each() doesn't really make sense. It would only loop once, and "this" would be the same as doc.</p> <p>Then later you are doing $(doc).replace(regexp, ...), but replace() is not a jquery function. You might have wanted to do .html().replace(regexp, ...); HOWEVER, I do not recommend doing this because it will not work - you will just end up replacing any numbers in the document, even if they are part of another URL or the HTML of the page.</p> <p>For more information, refer to this question or google for jquery text nodes: <a href="http://stackoverflow.com/questions/926580/find-text-string-using-jquery/926881#926881">http://stackoverflow.com/questions/926580/find-text-string-using-jquery/926881#926881</a></p> http://stackoverflow.com/questions/932644/help-with-html-select-replacement/932678#932678 2 Answer by BarelyFitz for Help with html select replacement BarelyFitz 2009-05-31T19:29:49Z 2009-05-31T20:01:35Z <p>If you give each control the same z-index, then you will not have control over the stacking order.</p> <p>I would suggest modifying your control to behave more like a real SELECT element: only one can be open at a time, or losing focus causes it to close. Alternately, you can set a high z-index when the control has focus, and a lower one when it does not.</p> <p>Another thing to look out for: try putting some other controls like radio, checkbox, and select under your control. You might find that IE also will not hover over those even if you give them a different z-index (as @grawity explained in his answer). This is why you'll typically see widget demos displayed on top of these elements, as shown here: <a href="http://jqueryui.com/demos/dialog/" rel="nofollow">http://jqueryui.com/demos/dialog/</a></p> <p>A typical hack to fix this is to use an iframe, but that probably deserves a different question altogether.</p> http://stackoverflow.com/questions/931872/whats-the-difference-between-array-and-while-declaring-a-javascript-arr/932392#932392 2 Answer by BarelyFitz for What’s the difference between "Array()" and "[]" while declaring a JavaScript array? BarelyFitz 2009-05-31T16:29:12Z 2009-05-31T16:29:12Z <p>For more information, the following page describes why you never need to use new Array():</p> <p><a href="http://yuiblog.com/blog/2006/11/13/javascript-we-hardly-new-ya/" rel="nofollow">http://yuiblog.com/blog/2006/11/13/javascript-we-hardly-new-ya/</a></p> <blockquote> <p>You never need to use new Object() in JavaScript. Use the object literal {} instead. Similarly, don’t use new Array(), use the array literal [] instead. Arrays in JavaScript work nothing like the arrays in Java, and use of the Java-like syntax will confuse you.</p> <p>Do not use new Number, new String, or new Boolean. These forms produce unnecessary object wrappers. Just use simple literals instead.</p> </blockquote> <p>Also check out the comments - the new Array(length) form does not serve any useful purpose (at least in today's implementations of JavaScript).</p> http://stackoverflow.com/questions/932086/using-jquery-to-insert-javascript-for-quicktime-into-a-div/932366#932366 1 Answer by BarelyFitz for using jquery to insert javascript (for Quicktime) into a <div> BarelyFitz 2009-05-31T16:19:25Z 2009-05-31T16:19:25Z <p>Without knowing the content of your loadplayer.js file, it will be difficult to give you a solution.</p> <p>For example, if the script attempts to do a document.write() after the page has loaded, it will create a new page, overwriting the current page. Is that what you mean when you say the quicktime movie is running full screen?</p> <p>Also it is generally not a good idea to load a SCRIPT element and insert it as HTML. When you add HTML to the page, jQuery finds all the SCRIPT elements and evaluates them in a global context, which might give you unexpected results.</p> http://stackoverflow.com/questions/925953/ie-problem-keyboard-interaction-with-checkbox/927457#927457 0 Answer by BarelyFitz for IE problem: keyboard interaction with checkbox BarelyFitz 2009-05-29T18:27:14Z 2009-05-29T18:27:14Z <p>Unfortunately, IE handles onchange differently than other browsers. IE interprets it to mean "on blur after change". Note that while this isn't very useful, it is technically correct according to the spec: "The onchange event occurs when a control loses the input focus and its value has been modified since gaining focus"</p> <p>You can try using the IE-only event "onpropertychange".</p> <p>Reference: <a href="http://lhorie.blogspot.com/2007/04/fixing-ie7-onchange-bug-on-checkboxes.html" rel="nofollow">http://lhorie.blogspot.com/2007/04/fixing-ie7-onchange-bug-on-checkboxes.html</a></p> http://stackoverflow.com/questions/926580/find-text-string-using-jquery/926881#926881 4 Answer by BarelyFitz for Find text string using JQuery? BarelyFitz 2009-05-29T16:20:21Z 2009-05-29T16:20:21Z <p>Normally jQuery selectors do not search within the "text nodes" in the DOM. However if you use the .contents() function, text nodes will be included, then you can use the nodeType property to filter only the text nodes, and the nodeValue property to search the text string.</p> <pre> $('*', 'body') .andSelf() .contents() .filter(function(){ return this.nodeType === 3; }) .filter(function(){ // Only match when contains 'simple string' anywhere in the text return this.nodeValue.indexOf('simple string') != -1; }) .each(function(){ // Do something with this.nodeValue }); </pre> http://stackoverflow.com/questions/926345/pipe-incoming-email-to-a-script-on-windows-iis-smtp/1080785#1080785 Comment by BarelyFitz on Pipe incoming email to a script on Windows IIS SMTP? BarelyFitz 2009-07-21T13:40:21Z 2009-07-21T13:40:21Z Thanks Nick - if you have any links or other pointers that would be appreciated. http://stackoverflow.com/questions/937603/a-jquery-question-about-variables-and-selectors/937750#937750 Comment by BarelyFitz on A jQuery question about variables and selectors BarelyFitz 2009-06-02T14:20:17Z 2009-06-02T14:20:17Z Yeah, I'm not a fan of the $ either, but when in Rome... http://stackoverflow.com/questions/936241/can-i-tell-anything-about-a-hyperlink-that-was-clicked-in-javascript/936284#936284 Comment by BarelyFitz on Can I tell anything about a hyperlink that was clicked in JavaScript? BarelyFitz 2009-06-01T20:15:14Z 2009-06-01T20:15:14Z @Beska: if you are not changing the onclick, then this solution might work in IE (because IE has window.event that refers to the most recent event); however, I don't think it will work in other browsers such as Firefox. http://stackoverflow.com/questions/936465/jquery-ajax-javascript-execution Comment by BarelyFitz on jQuery Ajax JavaScript Execution BarelyFitz 2009-06-01T20:00:55Z 2009-06-01T20:00:55Z Is the javascript in your HTML directly included in a SCRIPT element, or does it use SCRIPT SRC=&quot;&quot;? http://stackoverflow.com/questions/936241/can-i-tell-anything-about-a-hyperlink-that-was-clicked-in-javascript/936284#936284 Comment by BarelyFitz on Can I tell anything about a hyperlink that was clicked in JavaScript? BarelyFitz 2009-06-01T19:41:22Z 2009-06-01T19:41:22Z But I thought you indicated that you could not change the onclick=&quot;determine()&quot; in your HTML? In that case this example will not solve the problem - you could just change to onclick=&quot;determine(this)&quot; and call it a day. http://stackoverflow.com/questions/61088/hidden-features-of-javascript/692380#692380 Comment by BarelyFitz on Hidden Features of JavaScript? BarelyFitz 2009-06-01T01:19:32Z 2009-06-01T01:19:32Z Also you can shorten &quot;if (typeof myvar != 'undefined')&quot; to &quot;if (window.myvar)&quot; http://stackoverflow.com/questions/61088/hidden-features-of-javascript/65064#65064 Comment by BarelyFitz on Hidden Features of JavaScript? BarelyFitz 2009-06-01T01:03:34Z 2009-06-01T01:03:34Z Also, property names are strings, and if the string has a character that prevents it from being used through the dot notation, it can be accessed through the index notation. For example, an object property x['funky prop'] could not be accessed as x.funky prop; x['funky.prop'] cannot be accessed as x.funky.prop; http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61260#61260 Comment by BarelyFitz on Hidden Features of JavaScript? BarelyFitz 2009-06-01T00:23:30Z 2009-06-01T00:23:30Z This is a very useful tip. For example, you can set default values as a property of the function. For example: myfunc.delay=100; Then users can change the default value and all function calls will use the new default value. For example: myfunc.delay = 200; myfunc(); http://stackoverflow.com/questions/932967/do-javascript-developers-need-to-know-jquery/932978#932978 Comment by BarelyFitz on Do javascript developers need to know jquery? BarelyFitz 2009-05-31T23:51:56Z 2009-05-31T23:51:56Z Excellent answer. It's almost like the distinction between knowing a programming language, vs. knowing how to program: the latter lets you be successful no matter what language is in use. A further question could be, do you understand <i>how</i> jquery works - for example, do you understand the underlying JavaScript mechanisms that jQuery uses to chain functions together. Finally, do you understand the strengths and weaknesses of jQuery and how it compares to the other frameworks. The more frameworks you have used in actual practice, the better you'll understand why they made certain choices. http://stackoverflow.com/questions/932086/using-jquery-to-insert-javascript-for-quicktime-into-a-div/932366#932366 Comment by BarelyFitz on using jquery to insert javascript (for Quicktime) into a <div> BarelyFitz 2009-05-31T20:05:33Z 2009-05-31T20:05:33Z Yes - if you can change that code, have it produce a string, which you then add to the div using .html() http://stackoverflow.com/questions/931872/whats-the-difference-between-array-and-while-declaring-a-javascript-arr/932392#932392 Comment by BarelyFitz on What’s the difference between "Array()" and "[]" while declaring a JavaScript array? BarelyFitz 2009-05-31T19:10:20Z 2009-05-31T19:10:20Z @Alan Storm: at least for Number, String, and Boolean he says &quot;these forms produce unnecessary object wrappers&quot;, but I guess that wouldn't apply to Array. http://stackoverflow.com/questions/931872/whats-the-difference-between-array-and-while-declaring-a-javascript-arr/931906#931906 Comment by BarelyFitz on What’s the difference between "Array()" and "[]" while declaring a JavaScript array? BarelyFitz 2009-05-31T19:02:29Z 2009-05-31T19:02:29Z Also new Array('foo') would create an array with a single element, however, this can only be used when the arg is non-numeric. http://stackoverflow.com/questions/931872/whats-the-difference-between-array-and-while-declaring-a-javascript-arr/931906#931906 Comment by BarelyFitz on What’s the difference between "Array()" and "[]" while declaring a JavaScript array? BarelyFitz 2009-05-31T19:01:02Z 2009-05-31T19:01:02Z @cdmckay: sorry, I misunderstood your comment. To clarify: new Array(arg) - if arg is numeric this creates an empty array with length=arg; new Array(arg1, arg2) - creates a new array and initializes the array elements. So if you want to create an array with one numeric element like [5], you cannot do it using new Array(5). But really you should never use new Array() so this is a moot point. http://stackoverflow.com/questions/932086/using-jquery-to-insert-javascript-for-quicktime-into-a-div/932366#932366 Comment by BarelyFitz on using jquery to insert javascript (for Quicktime) into a <div> BarelyFitz 2009-05-31T18:39:48Z 2009-05-31T18:39:48Z Your loadplayer.js just calls QT_WriteOBJECT() so you'll have to include that as well. As mentioned above, if that calls document.write() then that would explain your problem. http://stackoverflow.com/questions/932086/using-jquery-to-insert-javascript-for-quicktime-into-a-div/932366#932366 Comment by BarelyFitz on using jquery to insert javascript (for Quicktime) into a <div> BarelyFitz 2009-05-31T18:38:19Z 2009-05-31T18:38:19Z FYI you can use document.getElementById() when you are using jQuery, but usually it's best to stick with one method of interacting with the DOM (to avoid confusion). Also jQuery library provides a layer of protection from browser differences. In your example, when you hide the player, doing $('#player').hide() would be better and more concise.