User RedWolves - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T21:51:51Zhttp://stackoverflow.com/feeds/user/648http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/4783/interview-questions-for-an-intern7Interview Questions for an InternRedWolves2008-08-07T14:39:05Z2009-12-04T17:20:27Z
<p>I have a potential intern coming in tomorrow for his second interview. Following Joel Spolsky's advice from "Smart & Get Things Done" this is where we get a little technical and make sure the kid can do the things he says he can do.</p>
<p>We are a ASP.NET, C# (1.1 - 3.5) shop that uses XHTML/CSS, jQuery, SQL Server 2000/2005 primarily for our web sites.</p>
<p>What are some quality technical questions you would ask or assume would get asked on an interview to gauge if you knew your stuff?</p>
<p><strong>Update:</strong> This is for a SECOND interview the candidate already passed a phone interview where he was asked what sites you read to stay on top etc. The purpose of this interview tomorrow is to see if they really have the knowledge. So I am looking for some questions where they can work through some code on a whiteboard or something.</p>
http://stackoverflow.com/questions/32315/what-is-web-3-09What is Web 3.0?RedWolves2008-08-28T13:46:23Z2009-11-30T11:21:53Z
<p>My boss asked me this yesterday just to gauge my response. Apparently, some of our clients are asking for "Web 3.0"</p>
<p>I told him I really didn't know.</p>
<p>He said when he's asked around the consensus is that it's microformats, etc. Frankly no one really knew either. (probably get a varied response now to "what is web 2.0?" still)</p>
<p>I watched a demo video of <a href="http://www.43folders.com/2008/08/27/ubiquity" rel="nofollow">Mozilla's Ubiquity</a> this morning and thought to myself "wow this could possibly be what Web 3.0 is all about"</p>
<p>What does Web 3.0 mean to you? How should we as developers prepare for the Web 3.0 world?</p>
http://stackoverflow.com/questions/1673936/jquery-slidedown-with-easing/1674425#16744250Answer by RedWolves for jQuery slideDown with easingRedWolves2009-11-04T15:12:59Z2009-11-04T15:12:59Z<p>You can use the animate method with jQueryUI and the <a href="http://ralphwhitbeck.com/demos/jqueryui/effects/easing/" rel="nofollow">easing effects</a> like this:</p>
<pre><code>$(".demo").animate({height: "hide"}, 1500, "easeInQuad", function(){});
</code></pre>
http://stackoverflow.com/questions/1674141/converting-jquery-objects-back-to-xmldocument/1674317#16743170Answer by RedWolves for Converting jQuery objects back to xmldocumentRedWolves2009-11-04T14:56:57Z2009-11-04T14:56:57Z<p>Can you convert $(this) back to native DOM using <a href="http://docs.jquery.com/Core/get#index" rel="nofollow">$(this).get(0)</a>?</p>
<p>Then at least you'd be passing in the native element then a jQuery Collection.</p>
http://stackoverflow.com/questions/1668281/jquery-color-picker/1668318#16683181Answer by RedWolves for JQuery Color PickerRedWolves2009-11-03T16:08:57Z2009-11-03T16:08:57Z<p><a href="http://www.eyecon.ro/colorpicker/" rel="nofollow">http://www.eyecon.ro/colorpicker/</a></p>
http://stackoverflow.com/questions/1654723/can-i-use-regular-functions-with-jquery-variables/1654980#16549802Answer by RedWolves for Can I use regular functions with jQuery variables?RedWolves2009-10-31T17:16:12Z2009-10-31T17:16:12Z<p>Remember jQuery is JavaScript and can be used in with regular JavaScript.</p>
<p>Since $(this).attr("href"); is returning a sting you can use it in any Javascript function that accepts a string variable.</p>
http://stackoverflow.com/questions/1654619/is-jquery-ui-a-jquery-plugin/1654954#16549540Answer by RedWolves for Is jQuery UI a jQuery Plugin?RedWolves2009-10-31T17:05:50Z2009-10-31T17:05:50Z<p>jQuery UI is an official jQuery project which provides UI plugins, widgets, effects, interactions and theming. </p>
http://stackoverflow.com/questions/1653171/jquery-slideup-doesnt-seem-to-be-sliding-smoothly/1653199#16531991Answer by RedWolves for jquery slideup doesn't seem to be sliding smoothlyRedWolves2009-10-31T02:24:54Z2009-10-31T02:24:54Z<p>Did you try setting the speed? </p>
<p><a href="http://jsbin.com/odiji/edit" rel="nofollow">http://jsbin.com/odiji/edit</a></p>
<p>Explore the example above where I set the speed to be 5000 which will slide the element over 5 seconds.</p>
http://stackoverflow.com/questions/1653055/jquery-cookie-plugin-gettign-an-error-saying-jquery-is-not-defined/1653156#16531563Answer by RedWolves for jquery.cookie plugin, gettign an error saying jquery is not defined?RedWolves2009-10-31T01:57:12Z2009-10-31T01:57:12Z<p>Make sure you have jQuery declared before jQuery.cookie.js </p>
<p>You can't use the jQuery object until it's declared and thus why it does matter the order.</p>
http://stackoverflow.com/questions/1653009/how-do-i-set-a-jquery-tooltip-from-a-database-on-server-side/1653020#16530201Answer by RedWolves for How do I set a jquery tooltip from a database on server side?RedWolves2009-10-31T00:56:59Z2009-10-31T00:56:59Z<p>I usually set a literal control to print out the value from the server I want the jQuery code to have.</p>
<p>So something like this:</p>
<pre><code>$("div").html("<asp:literal id='litServerData" runat="server"></asp:literal>");
</code></pre>
<p>Then in your codebehind you set the literal to the data you want your jQuery code to have.</p>
<p>Of course this only works if your jQuery is on the aspx page. If not you can have a script block at the top of the page that sets a variable to the literal control value and then call your external script.</p>
http://stackoverflow.com/questions/9435/planning-and-building-a-mobile-enabled-site-for-your-main-site2Planning and Building a mobile enabled site for your main site.RedWolves2008-08-13T03:23:55Z2009-09-26T16:46:01Z
<p>We are in the initial planning stages of building out a mobile site for one of our clients. This mobile site will be in addition to the main site that we have already built for them. We've determined that the content is going to be a small subsection of the main site and will target the main audience that is expected to use the site.</p>
<p>While looking through some sample mobile sites we noticed that a lot of site that have WAP in the url are actually just simplified HTML files. <a href="http://wap.mlb.com" rel="nofollow">http://wap.mlb.com</a> is not really WAP enabled but simple HTML.</p>
<p>My question is WAP a think of the past? With smartphones and the iPhone having the ability to render sites as is do we need to worry about WML and WAP or will a stripped down html version be enough? </p>
<p>Also can you recommend a blog or tutorial or answer below how best to check for mobile devices? Do we as the programmer need to know each variation of user agent in order to redirect them to our mobile site? </p>
<p>Finally, would you program a mobile site for the iPhone/Touch Safari browser or just leave the site as is?</p>
http://stackoverflow.com/questions/1140456/can-prototype-or-jquery-return-an-http-status-code-on-an-ajax-request/1301947#13019471Answer by RedWolves for Can Prototype or JQuery return an HTTP status code on an AJAX requestRedWolves2009-08-19T18:55:40Z2009-08-19T18:55:40Z<p>I was able to make remote domains work by creating a server side proxy file to pass the status code through. I used the <a href="http://madskristensen.net/post/Get-the-HTTP-status-code-from-a-URL.aspx" rel="nofollow">code on this post</a> to create a asp.net page that would just set the status code of the page to the web request status code.</p>
<p>I then used the ajax example that Chermosillo provided like so.</p>
<pre><code>$.ajax({
url: 'URLTestProxy.aspx?url=http://some.url.com',
type: 'POST',
complete: function(transport) {
if(transport.status == 200) {
alert('Success');
} else {
alert('Failed');
}
}
});
</code></pre>
<p>This way here you can get around the same origin policy and still get the status code of the remote url.</p>
http://stackoverflow.com/questions/1288763/why-use-jquery/1288869#12888690Answer by RedWolves for Why use JQuery?RedWolves2009-08-17T16:07:49Z2009-08-17T16:07:49Z<ul>
<li><a href="http://trends.builtwith.com/?tech=1396821d-a9ec-430a-a805-cc5c05faec37" rel="nofollow">1 out of 5 web sites right now are using jQuery.</a> </li>
<li>easily handles cross-browser quirks</li>
<li>Huge community of developers contributing plugins and tutorials</li>
<li><a href="http://events.jquery.com" rel="nofollow">Huge Conference dedicated to jQuery</a></li>
<li>jQuery's motto of "write less do more" is exaclty as it says you have the power to write amazing things in short amounts of code.</li>
<li>Book have been written on jQuery, Learning jQuery, jQuery in Action and the upcoming jQuery Cookbook.</li>
</ul>
<p>Other benefits:</p>
<ul>
<li>Microsoft has partnered with jQuery to include it in <a href="http://www.learningjquery.com/2009/07/setting-up-visual-studio-intellisense-for-jquery" rel="nofollow">ASP.NET MVC and provides intellisense documentation files.</a></li>
<li>Some of the top web sites in the world are using jQuery, Digg, Netflix</li>
<li>Google CDN allows you to link to jQuery on Google's CDN to provide faster downloads of the jQuery library.</li>
</ul>
http://stackoverflow.com/questions/1111429/are-there-any-real-benefits-to-using-a-rdbms-vs-flat-files-on-a-simple-web-doc-s/1111457#1111457-1Answer by RedWolves for Are there any real benefits to using a RDBMS vs. flat files on a simple Web doc system (or basic CMS)?RedWolves2009-07-10T19:17:32Z2009-07-10T19:17:32Z<p>What would be cool with a simple site that was feed via JSON and jQuery is that the site wouldn't need to load on each click. Just the relevant data would change. You could then use hashes in the location bar to keep track of where you were (ex. <a href="http://localhost/#about" rel="nofollow">http://localhost/#about</a>)</p>
<p>The problem being if they are editing the raw JSON file they can mess it up pretty quick. I think your admin tools would have to generate the JSON files based on the input so that you can ensure nothing breaks. The admin tools would be more entailed then the site (though isn't that always the case with dynamic sites)</p>
http://stackoverflow.com/questions/1104569/using-jquery-to-display-database-information-on-a-hover/1104696#11046960Answer by RedWolves for Using JQuery to display database information on a hoverRedWolves2009-07-09T15:37:49Z2009-07-09T15:37:49Z<p>Hopefully this condensed description helps and should go along with the code xandy posted:</p>
<blockquote>
<p>I would create a dynamic page that
serves JSON. The page would take the
key info to be able to pull that data
back. I would then create a hover
event which would pass info to the
JSON about the product being hovered.
When the data came back I would
populate that info into a DIV or use a
modal or tooltip plugin to display the
info.</p>
</blockquote>
http://stackoverflow.com/questions/1104478/learning-advanced-css/1104508#11045082Answer by RedWolves for Learning advanced CSSRedWolves2009-07-09T15:09:04Z2009-07-09T15:09:04Z<p><a href="http://rads.stackoverflow.com/amzn/click/0321303474" rel="nofollow">The Zen of CSS Design</a> was key when I was first learning how to use CSS for layout instead of tables.</p>
http://stackoverflow.com/questions/1100507/shoud-these-two-jquery-functions-produce-the-same-behavior/1100550#11005503Answer by RedWolves for Shoud these two JQuery functions produce the same behavior?RedWolves2009-07-08T21:08:13Z2009-07-08T21:08:13Z<p>I created a sample page and dropped your example code in and it worked as expected. Perhaps there is another issue on the page? Can you post a link to the actual site?</p>
<p>Here is the code I used:</p>
<pre><code><!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script src="scripts/script.js" type="text/javascript"></script>
</head>
<body>
<div id="myLink_931">Click Me</div>
<div class="931">HI</div>
</body>
</html>
</code></pre>
<p>and the script file:</p>
<pre><code>(function($) {
$(document).ready(function() {
$("#myLink_931").click(function() {
var class_name = $(this).attr("id").split('_')[1];
$("." + class_name).toggle();
});
});
})(jQuery);
</code></pre>
http://stackoverflow.com/questions/1099759/does-the-order-of-the-elements-in-the-jquery-wrapped-set-always-match-the-order-t/1099791#10997911Answer by RedWolves for Does the order of the elements in the jQuery wrapped set always match the order the elements appear in the markup?RedWolves2009-07-08T18:26:52Z2009-07-08T18:26:52Z<p>jQuery will match your query top down so the matched set will always be the same.</p>
http://stackoverflow.com/questions/1098788/waiting-for-images-loading-with-jquery/1099744#10997440Answer by RedWolves for Waiting for images loading with JQueryRedWolves2009-07-08T18:17:01Z2009-07-08T18:17:01Z<p>From the <a href="http://docs.jquery.com/Events/load" rel="nofollow">docs</a>:</p>
<blockquote>
<p>Note: load will work only if you set
it before the element has completely
loaded, if you set it after that
nothing will happen. This doesn't
happen in $(document).ready(), which
jQuery handles it to work as expected,
also when setting it after the DOM has
loaded.</p>
</blockquote>
<p>Can you put it in a $(document).ready()?</p>
http://stackoverflow.com/questions/1099317/its-not-refreshing-databinding-the-page-how-to-refresh-linq-datasource/1099373#10993730Answer by RedWolves for It's not refreshing/databinding the page. How to refresh linq datasource?RedWolves2009-07-08T17:11:33Z2009-07-08T17:11:33Z<p>You are calling <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.executenonquery.aspx" rel="nofollow">ExecuteNonQuery</a> which should be used for updating the database Insert, Delete, Update.</p>
<p>Try using <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.executereader%28VS.71%29.aspx" rel="nofollow">ExecuteReader</a> which will return the results in a SqlDataReader object.</p>
http://stackoverflow.com/questions/1073588/what-is-datacontracttranslator/1073602#10736021Answer by RedWolves for What is DataContractTranslator?RedWolves2009-07-02T10:21:55Z2009-07-02T10:21:55Z<p><a href="http://www.babel-lutefisk.net/2008/02/wcf-data-contract-translation.html" rel="nofollow">Take a look at this write up</a></p>
http://stackoverflow.com/questions/1073530/jquery-javascript-array-handling/1073553#10735535Answer by RedWolves for jQuery javascript array handlingRedWolves2009-07-02T10:06:10Z2009-07-02T10:06:10Z<p>I think your are trying to iterate through the selection with a for loop instead of using the jQuery Core function <a href="http://docs.jquery.com/Core/each#callback" rel="nofollow">$.each()</a></p>
<pre><code>$(".resultlist").children().each(function(i){
if ($(this).hasClass("selected")){
listindex = i;
}
});
</code></pre>
<p>The code above should do almost the exact same as what your code is trying to do.</p>
http://stackoverflow.com/questions/1073423/jquery-plugin-check-version/1073470#10734704Answer by RedWolves for jQuery Plugin Check VersionRedWolves2009-07-02T09:43:21Z2009-07-02T09:43:21Z<p>Here is a check I used to make sure the user was using at least v. 1.3.2 of jQuery.</p>
<pre><code>if (/1\.(0|1|2|3)\.(0|1)/.test($.fn.jquery)
|| /^1.1/.test($.fn.jquery)
|| /^1.2/.test($.fn.jquery))
{
//Tell user they need to upgrade.
}
</code></pre>
http://stackoverflow.com/questions/1073441/objective-stackoverflow/1073453#10734531Answer by RedWolves for objective stackoverflowRedWolves2009-07-02T09:39:50Z2009-07-02T09:39:50Z<p><a href="http://stackoverflow.com/about">http://stackoverflow.com/about</a></p>
http://stackoverflow.com/questions/1052857/possible-jquery-memory-issues-with-foo-remove/1052879#10528791Answer by RedWolves for Possible jQuery memory issues with $('#foo').remove() ?RedWolves2009-06-27T14:01:13Z2009-06-27T14:01:13Z<p>The issue of a memory leak seemed to already been brought up to the jQuery team <a href="http://groups.google.com/group/jquery-dev/browse%5Fthread/thread/4a99f6e9b2e33057/45ce657a48afd43a" rel="nofollow">http://groups.google.com/group/jquery-dev/browse_thread/thread/4a99f6e9b2e33057/45ce657a48afd43a</a></p>
http://stackoverflow.com/questions/1046234/securing-elmah-while-yet-making-it-possible-to-access-it-via-rss-reader3Securing ELMAH while yet making it possible to access it via RSS ReaderRedWolves2009-06-25T20:58:54Z2009-06-26T21:21:54Z
<p>We use ELMAH error exception logging in our application. I'd like to keep ELMAH secure from regular users while still making it available to administrators/developers of the application. </p>
<p>When you set security with forms authentication in the web.config you then lose the ability to access the RSS feed. I'd like to be able to secure ELMAH but yet still pass through authentication to the axd to be able to access the RSS feed (i.e. /elmah.axd/rss) from a RSS reader. </p>
<p>Thinking that http authentication would be proper as then I can probably get to the rss feed with the following url syntax <a href="http://username:password@somedomain.com/elmah.axd/rss" rel="nofollow">http://username:password@somedomain.com/elmah.axd/rss</a> I assume you would need to set authentication mode="windows" on that specific path in the web.config. One issue pops up though is how do you set credentials on a virtual file?</p>
<p>Looking at Google brings back this <a href="http://www.codeproject.com/KB/web-security/basicauthen.aspx" rel="nofollow">article on CodeProject</a> on how to set up authentication passthrough with cookies. Is this a good solution to my problem? </p>
<p>Is there another way that is better to be able to access the RSS feed while still being secure?</p>
<p>Thanks. </p>
http://stackoverflow.com/questions/1046234/securing-elmah-while-yet-making-it-possible-to-access-it-via-rss-reader/1051334#10513344Answer by RedWolves for Securing ELMAH while yet making it possible to access it via RSS ReaderRedWolves2009-06-26T21:21:54Z2009-06-26T21:21:54Z<p><a href="http://msdn.microsoft.com/en-us/library/aa479391.aspx" rel="nofollow">Supporting HTTP Authentication and Forms Authentication in a Single ASP.NET Web Site</a></p>
<p>Basically you add a dll called MADAM to your project adjust your web.config and configure which file(s) you want to authenticate as Basic instead of Forms:</p>
<pre><code><configuration>
<configSections>
<sectionGroup name="madam">
<section name="userSecurityAuthority" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<section name="formsAuthenticationDisposition" type="Madam.FormsAuthenticationDispositionSectionHandler, Madam" />
</sectionGroup>
</configSections>
...
<madam>
<userSecurityAuthority ... />
<formsAuthenticationDisposition>
<discriminators all="[true|false]">
...
</discriminators>
</formsAuthenticationDisposition>
</madam>
...
<system.web>
<httpModules>
<add name="FormsAuthenticationDisposition" type="Madam.FormsAuthenticationDispositionModule, Madam" />
<add name="AuthenticationModule" type="MADAM Authentication Module Type" />
</system.web>
</configuration>
</code></pre>
<p>This was easy to set up and solved my problem of being able to authenticate elmah.axd and still be able to subscribe to the RSS feed with Basic authentication credentials.</p>
<p>Side note MADAM is written by the same guy that wrote ELMAH, coincidence?</p>
http://stackoverflow.com/questions/1040328/force-png-to-download-instead-of-opening-in-browser-with-iis0Force PNG to download instead of opening in browser with IISRedWolves2009-06-24T19:09:36Z2009-06-25T13:10:08Z
<p>I need to be able to have a subdirectory of images all PNG's to be downloaded instead of opened in the browser window. I am using IIS for the web server.</p>
<p>Is there a way to force a PNG to be downloadable?</p>
http://stackoverflow.com/questions/1040328/force-png-to-download-instead-of-opening-in-browser-with-iis/1043815#10438151Answer by RedWolves for Force PNG to download instead of opening in browser with IISRedWolves2009-06-25T13:10:08Z2009-06-25T13:10:08Z<p>All solutions I have tried make it so that it'll download in other browsers except IE. IE is trying to be "helpful" and decides what it thinks would best server the client, in this case is display the png file in the browser.</p>
<p>There is always the programatic way of doing this as been pointed out. But I wasn't looking to go that route.</p>
<p>In the end I individually zipped up the 67 PNG files and linked to those. It's not pretty but it works.</p>
<p>Thanks all for the help.</p>
http://stackoverflow.com/questions/967580/what-has-been-the-easiest-project-you-have-been-involved-into/967592#9675920Answer by RedWolves for What has been the easiest project you have been involved into?RedWolves2009-06-08T23:57:06Z2009-06-08T23:57:06Z<p>Sometimes the questions interviewers ask you is to catch you off guard. It's more telling about someone when they are have to think on their feet then to ask someone questions that they are always prepared for.</p>
http://stackoverflow.com/questions/1634224/how-can-i-start-designing-my-program-on-paper-without-over-engineering-things/1634236#1634236Comment by RedWolves on How can I start designing my program on paper without over engineering things?RedWolves2009-11-04T16:08:37Z2009-11-04T16:08:37Zdot points are usually followed by word lines.http://stackoverflow.com/questions/1674141/converting-jquery-objects-back-to-xmldocumentComment by RedWolves on Converting jQuery objects back to xmldocumentRedWolves2009-11-04T15:19:31Z2009-11-04T15:19:31ZYou should move your edit into an answer and then accept it in a couple of days so that this question becomes closed.http://stackoverflow.com/questions/1662583/jqmodal-close-reopen-issueComment by RedWolves on jqModal close, reopen issueRedWolves2009-11-02T17:43:17Z2009-11-02T17:43:17ZHave you tried jQuery UI's Dialog widget? <a href="http://jqueryui.com/demos/dialog/#modal-form" rel="nofollow">jqueryui.com/demos/dialog/#modal-form</a>http://stackoverflow.com/questions/1654826/how-to-find-any-string-in-a-page-using-jquery/1654862#1654862Comment by RedWolves on How to find any string in a page using jQuery.RedWolves2009-10-31T17:02:28Z2009-10-31T17:02:28ZCool, is there a link you can provide to see what other nodeType's you can test for?http://stackoverflow.com/questions/1653171/jquery-slideup-doesnt-seem-to-be-sliding-smoothlyComment by RedWolves on jquery slideup doesn't seem to be sliding smoothlyRedWolves2009-10-31T03:00:39Z2009-10-31T03:00:39ZCan you provide a link to the page that shows the problem?http://stackoverflow.com/questions/1652948/error-creating-a-previous-and-next-date-link-for-jqueryui-datepicker-usComment by RedWolves on Error creating a '< previous' and 'next >' (date) link for jQueryUI datepicker using setdateRedWolves2009-10-31T01:50:47Z2009-10-31T01:50:47ZCan you update the question with what refreshSchedule() is doing? It seems there should also be another input button in the HTML? Can you update that as well?http://stackoverflow.com/questions/44903/is-there-any-way-to-repopulate-an-html-selects-options-without-firing-the-change/44935#44935Comment by RedWolves on Is there any way to repopulate an Html Select's Options without firing the Change event (using jQuery)?RedWolves2009-09-28T18:04:13Z2009-09-28T18:04:13ZShouldn't this be a comment instead of an answer?http://stackoverflow.com/questions/1140456/can-prototype-or-jquery-return-an-http-status-code-on-an-ajax-request/1149020#1149020Comment by RedWolves on Can Prototype or JQuery return an HTTP status code on an AJAX requestRedWolves2009-08-19T17:04:39Z2009-08-19T17:04:39ZNull or blank are the values I get not 200 or 500 etc. http://stackoverflow.com/questions/1140456/can-prototype-or-jquery-return-an-http-status-code-on-an-ajax-request/1140532#1140532Comment by RedWolves on Can Prototype or JQuery return an HTTP status code on an AJAX requestRedWolves2009-08-19T17:02:36Z2009-08-19T17:02:36ZIn your jQuery code the transport.status always returns 0 not the actual status number as expected for remote domain requests. It'll return 200 if it's on the same domain but if you try to go across domains you get a 0.http://stackoverflow.com/questions/1121090/jquery-div-fade-in-and-outComment by RedWolves on Jquery: Div Fade in and out RedWolves2009-07-13T18:12:35Z2009-07-13T18:12:35ZExact Duplicate <a href="http://stackoverflow.com/questions/1117273/show-and-hide-div-every-1min" rel="nofollow" title="show and hide div every 1min">stackoverflow.com/questions/1117273/…</a>http://stackoverflow.com/questions/1111429/are-there-any-real-benefits-to-using-a-rdbms-vs-flat-files-on-a-simple-web-doc-s/1111457#1111457Comment by RedWolves on Are there any real benefits to using a RDBMS vs. flat files on a simple Web doc system (or basic CMS)?RedWolves2009-07-11T03:43:16Z2009-07-11T03:43:16Zbut he's not talking about a traditional CMS...he's talking about a proprietary system that holds it's data in flat files.http://stackoverflow.com/questions/1100507/shoud-these-two-jquery-functions-produce-the-same-behavior/1100529#1100529Comment by RedWolves on Shoud these two JQuery functions produce the same behavior?RedWolves2009-07-08T21:24:56Z2009-07-08T21:24:56ZFirebug is a Firefox extension that is essential to web development and javascript debugging.http://stackoverflow.com/questions/1100507/shoud-these-two-jquery-functions-produce-the-same-behavior/1100550#1100550Comment by RedWolves on Shoud these two JQuery functions produce the same behavior?RedWolves2009-07-08T21:23:41Z2009-07-08T21:23:41ZFirefox 3.5, IE6, IE7, IE8, Google Chrome.http://stackoverflow.com/questions/1073530/jquery-javascript-array-handling/1073553#1073553Comment by RedWolves on jQuery javascript array handlingRedWolves2009-07-02T10:11:28Z2009-07-02T10:11:28Zno the each method handles that automatically.http://stackoverflow.com/questions/1014203/best-way-to-use-googles-hosted-jquery-but-fall-back-to-my-hosted-library-on-goo/1014251#1014251Comment by RedWolves on Best way to use Google's hosted jQuery, but fall back to my hosted library on Google failRedWolves2009-06-28T13:42:34Z2009-06-28T13:42:34ZThis example will not work. 1) if Google ajax library is not available it'll have to time out first before failing. This may take a while. In my test of disconnecting my computer from the network it just tried and tried and tried and didn't timeout. 2) if (!jQuery) will throw an error because jQuery is not defined so Javascript doesn't know what to do with it.