Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
185 views

When should I use my own namespace and when should I extend native js objects?

I am in the process of refactoring my code. I'm having trouble deciding on how exactly to implement a couple utility functions I have. Specifically, if certain functions are better off in my ...
4
votes
4answers
233 views

Save or destroy data/DOM elements? Which takes more resources?

I've been getting more and more into high-level application development with JavaScript/jQuery. I've been trying to learn more about the JavaScript language and dive into some of the more advanced ...
1
vote
5answers
112 views

JavaScript file inclusion. Should I not link in <head>?

I'm watching Douglas Crockfords "Theory of the DOM" and he mentioned that the location of my script tags can greatly affect the load time of my applications. Furthermore, he asserts that a script tag ...
1
vote
6answers
179 views

Access Modifiers … Why?

Ok so I was just thinking to myself why do programmers stress so much when it comes down to Access Modifiers within OOP. Lets take this code for example / PHP! class StackOverflow { private var ...
0
votes
1answer
43 views

CakePHP App-Structure: one DB & App vs. multiple DBs & Apps

I have a brief conceptional question: Recently, I started to develop an app in which I can (on the fly) create clients who, in turn, can create projects that have lots of other stuff (own logins, ...
0
votes
2answers
72 views

iOS Project Structure for Presentation App

I'm gonna build presentation app, which will present a brand product. Presentation will have multiple slides (states) with common background. In some slides I can go back to previous slide My ...