Tagged Questions
2
votes
2answers
201 views
Client side web development, general question
I'm a novice web developer, mostly worked with ASP.NET. On the server side, everything is very well documented and whenever there is an error, you get an explanatory error message. But on the client ...
2
votes
4answers
304 views
Why Have People Started Deeming it Necessary to Separate JS hooks from CSS hooks in HTML?
Edit: Point of clarificatioon, IDs and classes as separate hooks is just one form of the applied idea in question which is to never use the same hooks for CSS as you do in JS. I've also seen people ...
1
vote
1answer
129 views
Why do we program each file separately and place them in separate folders and how do all these file come together?
I was wondering how the cover flow effect is coded. I used this link which gave me the code on how it all worked out : http://luwes.co/labs/js-cover-flow/. I am completely new to complex programs so ...
-1
votes
2answers
410 views
What are some interview questions I can expect for a technical evaluation? [closed]
I am 20 years old and I've been doing some web development work for about 2 years or so. I have an interview for a Junior Web Developer position and the company knows that but I'll still be going ...
1
vote
1answer
142 views
'Windows' in a browser using html/css/js [closed]
I'm about to make a html/css/js/jquery page and I want it to contain collapsible, movable boxes/divs. Each box will typically contain a table or a graph and the idea is that the user should be able to ...
2
votes
1answer
181 views
What is the most performant CSS property for transitioning an element?
I'm wondering whether there is a performance difference between using different CSS properties to translate an element. Some properties fit different situations differently.
You can translate an ...
5
votes
1answer
277 views
What is the proper way to create a cross-fade effect?
When creating an image slider, using a cross fade is one of more popular effects. Various sliders use differing techniques to create such an effect. Major techniques I've found so far are:
Method 1: ...
2
votes
2answers
1k views
Less vs Stylus vs Sass [closed]
I'd like to start using a CSS pre-processor to cut down development time. Which one of these is the fastest from this perspective?
5
votes
3answers
2k views
front end development test - html/css/jquery/javascript
We are continually revamping our front end developer test that we do in-house after a candidate has passed an online test. The online test has questions such as:
How does a for loop start?
What is ...
1
vote
2answers
1k views
Is it better to use multiple html pages or just change content on the same page using JavaScript?
Is it better to use multiple html pages and link them together with href or just change content on the same page using JavaScript? I am thinking of how to layout a page and I don't have a lot of ...
0
votes
6answers
315 views
Should i expect real world questions from interviewing agency ? [closed]
I started coding almost a year ago. By "coding" I mean HTML(5), CSS(3), and only few times I implemented some AJAX and JavaScript. I am interviewing for a position that expects me to know HTML, CSS, ...
19
votes
1answer
772 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 ...
3
votes
3answers
814 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 ...
3
votes
1answer
462 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 ...
26
votes
5answers
1k views
Referencing external javascript vs. hosting my own copy
Say I have a web app that uses jQuery. Is it better practice to host the necessary javascript files on my own servers along with my website files, or to reference them on jQuery's CDN (example: ...