User Matt Goddard - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T04:12:55Z http://stackoverflow.com/feeds/user/5185 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1244374/assign-jquery-get-to-a-variable/1244550#1244550 0 Answer by Matt Goddard for Assign jQuery.get() to a variable? Matt Goddard 2009-08-07T12:53:43Z 2009-08-17T13:26:48Z <pre><code>var manageCSV = function() { var x; $.get('output.csv', function(data) { x = data; }); //do what you want with x } </code></pre> <p>x as defined in an earlier answer will be undefined because it's out of scope. </p> <p>You need to use a closure (as above) to contain the var x. which can be used outside of the get() method call.</p> <p>The callback function is needed because the call to retrieve output.csv is asynchronous and will only be called when output.csv is retrieved.</p> <p>HTH</p> <p>Matt</p> http://stackoverflow.com/questions/1108441/javascript-framework/1108471#1108471 6 Answer by Matt Goddard for Javascript framework Matt Goddard 2009-07-10T08:52:53Z 2009-07-10T15:18:57Z <p>Cross browser JavaScript frameworks: Browser support (from what i can discover pls update in comments)</p> <ul> <li>Prototype Internet Explorer (IE) 6 +, Firefix (FF) 1+, Safari 2+, Opera (o) 9.25+, Chrome (c) 1+</li> <li>script.aculo.us IE 6 +, FF 1+, S 2+, O 9.25+, c 1+</li> <li>jQuery IE 6 +, FF 2+, S 3+, O 9+, C 1+</li> <li>Yahoo! User Interface Library IE 6 +, FF 3+, S 3+, O 9+, C unknown</li> <li>MooTools IE 6 +, FF 1.5+, S 2+, O 9+, C unknown</li> <li>Ext JS IE 6 +, FF 1+, S 2+, O 9.25, C 1+</li> <li>moo.fx</li> <li>Rico</li> <li>Qooxdoo IE 6 +, FF 1.5+, S 3+, O 9+, C 1+</li> <li>The Dojo Toolkit IE 6 +, FF 2+, S 3.2+, O 9.6+, C 1+</li> </ul> <p>I've used </p> <ul> <li>jQuery</li> <li>yUI</li> </ul> <p>but I always go back to jQuery. </p> <p>It worth pointing out that different frameworks have different strengths, so work out what you want and find the best framework for you.</p> http://stackoverflow.com/questions/1074009/javascript-framework-that-primarily-provides-just-document-onready-functionality/1074028#1074028 3 Answer by Matt Goddard for Javascript framework that primarily provides just document/onready functionality Matt Goddard 2009-07-02T12:14:31Z 2009-07-02T12:14:31Z <p>Hi George</p> <p>This was suggested to me yesterday by <a href="http://stackoverflow.com/users/62649/cal-jacobson">Cal Jacobson</a></p> <p><a href="http://ryanmorr.com/archives/ondomready-no-browser-sniffing" rel="nofollow">http://ryanmorr.com/archives/ondomready-no-browser-sniffing</a></p> <p>All the best</p> <p>Matt</p> http://stackoverflow.com/questions/1070418/detecting-the-exact-moment-an-element-appears-in-the-dom 4 Detecting the exact moment an element appears in the DOM Matt Goddard 2009-07-01T17:38:48Z 2009-07-01T18:27:39Z <p>Is it possible to detect the exact moment an element exists in the DOM on page load?</p> <p>Context: On page load i hide an element of my page using jQuery (i.e. If JavaScript is available i want to hide the div) but on poor internet connection you see the panel for a second or so before it disappears.</p> <p>I'd like to hide the element as soon as it's written to the DOM but i don't know how to do this or even if it's possible. I don't want to apply set display:hidden because i want to the panel to appear if JavaScript isn't available.</p> <p>TIA</p> <p>Matt</p> <p>Revision: I'm using jQuery - and my code in executed from within $(document).ready().</p> http://stackoverflow.com/questions/233936/jquery-swapping-elements/234022#234022 8 Answer by Matt Goddard for jQuery Swapping Elements Matt Goddard 2008-10-24T15:26:56Z 2009-03-20T16:23:34Z <p>Hi Zuki</p> <p>First of all give your links a class or Id (I've used a class), which will make it easier to do the swap in</p> <pre><code>&lt;div id="options_1" class="tab" &gt;option 1&lt;/div&gt; &lt;div id="options_2" class="tab"&gt;option 2&lt;/div&gt; &lt;div id="options_3" class="tab"&gt;option 3&lt;/div&gt; $(document).ready(function () { var clickHandler = function (link) { $('.tab').hide(); $('#option_' + link.data.id).show(); $('.selected').removeClass('selected'); $(this).attr('class','selected'); } $('.link1').bind('click', {id:'1'} ,clickHandler); $('.link2').bind('click', {id:'2'} ,clickHandler); $('.link3').bind('click', {id:'3'} ,clickHandler); }) </code></pre> http://stackoverflow.com/questions/374085/jquery-looking-for-a-better-selectors-syntax/374653#374653 1 Answer by Matt Goddard for jQuery - looking for a better selectors syntax Matt Goddard 2008-12-17T14:18:46Z 2008-12-17T14:18:46Z <p>I agree with Sprintstart</p> <pre><code>var clickHandler = function (link) { $(link.data.action).trigger("edit"); } $('a.editconent').bind('click', {action:'.content'}, clickHander); </code></pre> <p>Then you can be much more target about the jQuery statement which fires the edit event.</p> http://stackoverflow.com/questions/353772/jquery-making-hide-all-show-this-div-image-more-generic/353855#353855 1 Answer by Matt Goddard for jQuery - making hide all/show this div image more generic Matt Goddard 2008-12-09T19:06:24Z 2008-12-10T11:16:06Z <p>I replied to a similar question some months ago <a href="http://stackoverflow.com/questions/233936/jquery-swapping-elements#234022">jQuery Swapping Elements</a> if that helps.</p> <p>Matt</p> <p>Clarrification, where i've got {id:'1'} you should swap in the id of the div you want to show and make a generic class name on the other DIV's to hide them.</p> <p>Remeber that you can apply mulitple classes to an element:</p> <pre><code>&lt;Div class="name1 name2"&gt;&lt;/div&gt; </code></pre> <p>which might help if you have style rules attached to the original divs.</p> http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/229328#229328 16 Answer by Matt Goddard for What do project managers do all day? Matt Goddard 2008-10-23T11:04:00Z 2008-11-07T04:20:02Z <p>As with most jobs, there are some good and bad. If you are interested to know what project managers 'should' do doing all day. I'd suggest giving Scott Burkun's <a href="http://rads.stackoverflow.com/amzn/click/0596517718" rel="nofollow">Making things happen</a> formerly the art of project management a read. Scott's a great writer, I wish more of the project manager's i knew had read this before starting.</p> <p>FYI - The way I've approached project management in the past is to be the best buffer i can between the dev team and the business. I try to give the team enough space to get things done, only by interuppting enough to be able to report project status to the business.</p> <p>Not text book project management but it's worked for me and the project's i've run.</p> http://stackoverflow.com/questions/259126/can-you-change-the-width-of-a-scroll-bar-scrolling-div-in-ie7 3 Can you change the width of a scroll bar (scrolling DIV) in IE7 Matt Goddard 2008-11-03T16:14:44Z 2008-11-03T17:19:50Z <p>Hi</p> <p>Is there any way to change the entire width of the horizontal scroll bar on a scrolling div (including the nudge arrows and the handle).</p> <p>EDIT: I only need an IE7 solution - it's for a scrolling DIV on a touch screen terminal</p> <p>Thanks</p> <p>Matt</p> http://stackoverflow.com/questions/240552/does-visual-studio-2008-support-classic-asp-development 5 Does Visual Studio 2008 support classic ASP development? Matt Goddard 2008-10-27T16:40:27Z 2008-11-03T00:40:18Z <p>Hi</p> <p>Does visual studio 2008 support classic asp development?</p> <p>It's been years since I created a classic ASP website and I was wondering if I can use my current toolset or if I have to resign myself to notepad.</p> <p>Thanks</p> <p>Matt</p> http://stackoverflow.com/questions/246607/how-to-move-over/246649#246649 1 Answer by Matt Goddard for How to move over Matt Goddard 2008-10-29T12:45:42Z 2008-10-29T12:45:42Z <p>Hi Spacemonkeys</p> <p>IMHO, I would suggest not moving to vb.net at all, but instead utilising your C background, and making the move to C#. The reason for this is, you already know the syntax and that VB.net is not enough like VB6, to make it as easy a move as you might expect. Plus you're more "likely" to come into contact with developer's who use the more advanced features of the framework etc.</p> <p>This might be a slightly contriversal statement but i firmly believe that inorder to re-ignite a career it's sometime better take a mental leap to something new. You'll find that everything you've learn prior to this, will cement the new knowlege you'll be acquiring.</p> <p>In addition find a personal project you can get highly motivated about, with a tangible end goal/deliverable, that will make learning your new skills much more fun.</p> <p>Good luck</p> <p>Matt </p> http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/243018#243018 9 Answer by Matt Goddard for Dealbreakers for new programming jobs? Matt Goddard 2008-10-28T11:53:50Z 2008-10-28T11:53:50Z <p>The deal breaker for me is when i look at the books in the office and there is nothing but programming books. </p> <p>For me personally I like to see a good mix of books on the business of software development, efficient development process etc. It tells me that there is at least someone there who want to understand the end to end process.</p> <p>I've worked in several companies where I've had to initiate development processes etc. that i now want to see that the foundations, of sorts, is already there.</p> http://stackoverflow.com/questions/240804/how-to-prioritize-work/240825#240825 1 Answer by Matt Goddard for How to prioritize work? Matt Goddard 2008-10-27T17:52:43Z 2008-10-27T17:52:43Z <p>Hi Ron</p> <p>Ultimately you have to tell your boss that you have too much on, but it's difficult to do without sounding like you're whinging.</p> <p>I would suggest creating a task list, putting them in a schedule and then asking your boss to prioritise the work with you. Hopefully you'll resolve your workload and will be appearing pro-active at the same time.</p> <p>The key is to prioritise....</p> <p>Good luck :)</p> http://stackoverflow.com/questions/179334/conflict-between-google-util-js-and-asp-net-ajax/237932#237932 2 Answer by Matt Goddard for Conflict between Google util.js and ASP.NET AJAX? Matt Goddard 2008-10-26T12:05:03Z 2008-10-26T12:09:12Z <p>Hi Herb</p> <p>We had a similar problem with ASP.net AJAX and jQuery. The problem was down to the $ namespace, so we had to revert back to using the jQuery namespace. </p> <p>Your error sounds similar, so i would look to see if you have an alternative namespace for the google util.js or set one up for yourself.</p> <p>HTH </p> <p>Matt</p> http://stackoverflow.com/questions/49552/what-are-the-ingredients-of-a-great-off-line-tech-group 2 What are the ingredients of a great off-line tech group Matt Goddard 2008-09-08T12:16:07Z 2008-10-23T15:40:34Z <p>For a long while i've been toying with the idea of creating a regional tech group. The aim is to create a gathering which will help teach developers about moving from good to great. I intend to have people talk about vendor independent technologies, practice and processes, with a Q&amp;A session etc.</p> <p>Earlier in the year I ran two events, which were reasonably well attended but didn't quite live up to my vision. In word they weren't the geek feast i envisaged. </p> <p>So I was wondering what ingredients you think would make up a good off-line tech group?</p> <p>p.s. we had beer :)</p> http://stackoverflow.com/questions/134845/href-for-javascript-links-or-javascriptvoid0/229926#229926 2 Answer by Matt Goddard for Href for Javascript links: "#" or "javascript:void(0)"? Matt Goddard 2008-10-23T14:22:33Z 2008-10-23T14:22:33Z <p>Just to pick up the point some of the other have mentioned.</p> <p>It's much better to bind the event 'onload'a or $('document').ready{}; then to put JavaScript directly into the click event. </p> <p>in the case the case that JavaScript isn't available I would use a href to the current URL, and perhaps an anchor to the position of the link. The page is still be usable for the people without JavaScript those who have won't notice any difference.</p> <p>As i have it to hand here is some jQuery which might help:</p> <pre><code>var [functionName] = function() { }; jQuery("[link id or other selector]").bind("click", [functionName]); </code></pre> http://stackoverflow.com/questions/229010/jquery-resize-not-working-at-firefox-chrome-and-safari/229182#229182 1 Answer by Matt Goddard for jQuery resize not working at FireFox, Chrome and Safari Matt Goddard 2008-10-23T10:03:16Z 2008-10-23T10:03:16Z <p>Are you trying to set myDiv to a specific size?</p> <p>Try the JavaScript code below. I used it for resizing a div which holds a flash object based upon a height being returned from the flash file and it seemed to work okay for me.</p> <pre><code>function setMovieHeight(value) { var height = Number(value) + 50; document.getElementById("video").height = height; } </code></pre> <p>the jQuery equivilent should be:</p> <pre><code>function setHeight(value) { var height = number(value) + 50; $('#MyDiv').attr('height') = height; } </code></pre> <p>resize does only seem to apply to the windows object.</p> http://stackoverflow.com/questions/49594/developing-on-your-own/49632#49632 1 Answer by Matt Goddard for Developing on your own Matt Goddard 2008-09-08T12:56:07Z 2008-09-08T12:56:07Z <p>When i worked as a loan developer i use XP, coupled with Joel's getting things done when you're only a grunt article to keep me on the straight and narrow.</p> <p>i treated it as a learning exercise that i could integrate into the team if i could prove that applying 'best practice' had a good ROI. which although is given for good developers is still something that needs to be proved; well at least in my experience.</p> <p>Later i used a customised agile process which fitted better with the politics of the company i worked for.</p> http://stackoverflow.com/questions/1243780/substring-on-a-non-object-in-jquery Comment by Matt Goddard on substring on a non-object in jQuery. Matt Goddard 2009-08-07T09:48:55Z 2009-08-07T09:48:55Z For clarity: A string is an object in JavaScript. For efficiency sake it's better to use substring() as this modifies the string you're acting upon. Where as substr() returns a modified string which you'd have to reassign. http://stackoverflow.com/questions/1108441/javascript-framework/1108446#1108446 Comment by Matt Goddard on Javascript framework Matt Goddard 2009-07-10T09:12:36Z 2009-07-10T09:12:36Z I wonder if the traction of the appeal of the BBC website(s) will push the design community into using Glow? Worth a look though especially if it activly supports older browsers. http://stackoverflow.com/questions/1108441/javascript-framework/1108446#1108446 Comment by Matt Goddard on Javascript framework Matt Goddard 2009-07-10T08:58:50Z 2009-07-10T08:58:50Z I'm out of date BBC Glow (<a href="http://www.bbc.co.uk/glow/" rel="nofollow">bbc.co.uk/glow</a>) HOW COOL http://stackoverflow.com/questions/1108441/javascript-framework/1108446#1108446 Comment by Matt Goddard on Javascript framework Matt Goddard 2009-07-10T08:55:36Z 2009-07-10T08:55:36Z Have the BBC published Glow? (I understood from diffrent BBC blogs that they wouldn't because they had no way of supporting the community. http://stackoverflow.com/questions/1070418/detecting-the-exact-moment-an-element-appears-in-the-dom/1070437#1070437 Comment by Matt Goddard on Detecting the exact moment an element appears in the DOM Matt Goddard 2009-07-01T18:31:29Z 2009-07-01T18:31:29Z in terms of a coding strategy this seems to be the only way. Initially i discounted it because didn't want a script tag in the body of my code. http://stackoverflow.com/questions/1070418/detecting-the-exact-moment-an-element-appears-in-the-dom/1070433#1070433 Comment by Matt Goddard on Detecting the exact moment an element appears in the DOM Matt Goddard 2009-07-01T18:30:15Z 2009-07-01T18:30:15Z I like this answer - should have though about &lt;noscript&gt;. In the back of my mind i've got a query about this being depreciated.. but i could be wrong. http://stackoverflow.com/questions/247342/you-know-youve-been-browsing-stack-overflow-too-much-when/247605#247605 Comment by Matt Goddard on You know you've been browsing Stack Overflow too much when? Matt Goddard 2009-05-11T14:39:59Z 2009-05-11T14:39:59Z I've put the original image back :) http://stackoverflow.com/questions/259126/can-you-change-the-width-of-a-scroll-bar-scrolling-div-in-ie7/259221#259221 Comment by Matt Goddard on Can you change the width of a scroll bar (scrolling DIV) in IE7 Matt Goddard 2008-11-03T16:43:45Z 2008-11-03T16:43:45Z wouldn't that resize the whole window? I want the text etc. to still stay the correct size, but to increase the scroll bar width to be draqgable with a finger. http://stackoverflow.com/questions/259126/can-you-change-the-width-of-a-scroll-bar-scrolling-div-in-ie7 Comment by Matt Goddard on Can you change the width of a scroll bar (scrolling DIV) in IE7 Matt Goddard 2008-11-03T16:42:30Z 2008-11-03T16:42:30Z thanks, I've amended the question http://stackoverflow.com/questions/240552/does-visual-studio-2008-support-classic-asp-development/240566#240566 Comment by Matt Goddard on Does Visual Studio 2008 support classic ASP development? Matt Goddard 2008-10-27T16:45:15Z 2008-10-27T16:45:15Z brillant thanks, I read a post online which seemed to suggest that classic ASP wasn't going to be supported... must of misunderstood http://stackoverflow.com/questions/179334/conflict-between-google-util-js-and-asp-net-ajax/237932#237932 Comment by Matt Goddard on Conflict between Google util.js and ASP.NET AJAX? Matt Goddard 2008-10-26T14:36:04Z 2008-10-26T14:36:04Z Until you mentioned it i'd never heard of javascript templating. I'm quite impressed so thanks for asking the question. http://stackoverflow.com/questions/179334/conflict-between-google-util-js-and-asp-net-ajax Comment by Matt Goddard on Conflict between Google util.js and ASP.NET AJAX? Matt Goddard 2008-10-26T12:11:27Z 2008-10-26T12:11:27Z having looked at Google's jstemplate - i'm not sure i've given you the right answer beneath, sorry. http://stackoverflow.com/questions/233936/jquery-swapping-elements/234022#234022 Comment by Matt Goddard on jQuery Swapping Elements Matt Goddard 2008-10-24T15:49:42Z 2008-10-24T15:49:42Z fantastic - glad i could help :)