Good day, these points are about planning in general but I think they're particularly applicable to planning software projects. I'd be interested to read what you think about them:
Hi, there are two issues that I think can make javascript objects uglier and harder to organise than they need to be. They are:
1 - Defining the prototype separate from the constructor function,...
Hi, I'm trying to make a sort of quick-page-designer where, for example, you can choose whether a menu bar is above the banner-header, or below it or fixed at the top of the page when you scroll.
...
Hi, I was thinking of asking a question on one of the code forums, and offering a monetary prize for the best answer(s). Would this be ok? I couldn't find anything about it in the FAQs
I think the submit input is, when clicked, submitting the form (and therefore refresshing the page). I tried your code but changed the input type='submit' to an input type='button' and it seems to...
Your question interested me and I was going to spend some time solving it for fun, but having read your last post I've decided to solve another problem for you:
One annoying thing with html is the lack of resizable layout panels. By this I mean boxes where one takes up a fixed size and the other takes up the rest of the container; or where one box is...
Arrays have an indexOf() method to find the position (if any) of a value in that array. In older browsers, e.g. ie8 and before, this doesn't exist so you'll have to add it, but...
Hi, some browsers use document.body.scrollTop and some use document.documentElement.scrollTop, but if you set both you should be right. Here's an example I tested in ff, opera, chrome, safari,...