Tagged Questions
0
votes
2answers
54 views
Securing client->database game
OK, I am creating a game using JavaScript and HTML5. The variables such as map, x, y, level, exp, etc are stored in JavaScript to keep track. On my client page, the JavaScript variables are stored to ...
7
votes
12answers
653 views
What are some good ways for an intermediate programmer to build skills?
Preface: I work mostly in Python, and Web Dev languages (HTML, CSS, Javascript and Jquery, PHP)
I'm proficient at coding but I want to get better. In larger more advanced projects my programming ...
2
votes
2answers
281 views
Should I still make my site work in non-javascript capable browsers?
Apparently less than 1% had javascript off in 2010:
http://developer.yahoo.com/blogs/ydn/posts/2010/10/how-many-users-have-javascript-disabled/
So is it worth it to still support browsing without ...
9
votes
6answers
476 views
How can I write HTML, CSS, and JavaScript to make back-end developers work easier?
When I get a design from a designer, I get it as a PSD (Photoshop) file. I always expect proper layer and folder names, basically a clean and managed PSD. From this desigbn I develop HTML, CSS and ...
1
vote
2answers
152 views
best platform for developing mobile apps in HTML, Javascript etc [closed]
I've just gotten this project to do at my company that basically involves me taking our company's existing web app and converting it to a mobile app. That we can then port to devices such as Android ...
18
votes
1answer
280 views
The Box Model: Internet Explorer vs. W3C
Today, the Internet Explorer Box Model problem is mostly a non-issue. Most web developers place a <!DOCTYPE> tag to enforce standards compliance, and nobody really cares about supporting ...
10
votes
5answers
372 views
Pros and cons of an HTML/JavaScript only web app
I come from an ASP.NET forms background and have found server side coding very powerful in the past. More recently, however, I have been wanting to phase out the server side code of the front-end and ...
2
votes
1answer
184 views
Build tools for php, html, css, js web app development
What are some recommendations for a build tool that would allow me to upload changes to a web server or a repository and minify the js and css automatically, and possibly even run Closure compiler on ...
3
votes
3answers
206 views
How do I prevent useless content load on the page in responsive design?
In responsive design, elements are hidden in the page with @media queries and display: none in CSS.
Ok.
In my design however browsers that have less than 800px in width should avoid loading some ...
14
votes
7answers
730 views
When should JavaScript generate HTML?
I try to generate as little HTML from JavaScript as possible. Instead, I prefer to manipulate existing markup whenever I can and only generate HTML when I need to dynamically insert an element that ...
5
votes
5answers
3k views
Best IDE for HTML, CSS, and Javascript for mac [closed]
I'm currently looking to move to using an IDE for web development. The options I'm considering are:
Aptana Studio
Coda
Expresso
Please base your answers on the following criteria, in descending ...
35
votes
9answers
1k views
How do I get started with HTML5?
What is the recommended workflow to learn HTML5? What tools should I install? What SDK? Where to start? How to test? How to debug? What do I read?
I understand that what is often labelled as "HTML5 ...
4
votes
3answers
281 views
Are there similar sites to jsdo.it and jsfiddle.net?
I'm looking for sites similar to jsdo.it and jsfiddle.net.
I really like jsdo.it, as it provides a nice editor and the ability to fork, but I really can't stand the usability as it really gets to be ...
5
votes
6answers
238 views
when to load partial views
When creating a website, when should you load partial view and when should you do a complete page refresh?
I was looking at github's site and noticed that pretty much the only place they do partial ...
3
votes
2answers
139 views
How would you architect an application which is largely a collection of flowcharts?
I am working with a history teacher on a history app. He has like 200 flowcharts that he wants to put into the app (among other things). The two likeliest-looking ways to do it:
HTML/CSS. The big ...