166
votes
12answers
259k views
Change an element's CSS class with JavaScript
How can I change a CSS class of an HTML element in response to an onClick event using JavaScript?
144
votes
20answers
101k views
Simulators/emulators for mobile browser testing?
I'm doing development of a web application aimed at mobile devices. What software can I use to simulate/emulate mobile browser environments?
I'm specifically looking for a way to test on Mobile ...
124
votes
20answers
30k views
What is an elegant way to force browsers to reload cached CSS/JS files?
I have noticed that some browsers (in particular, Firefox and Opera) are very zealous in using cached copies of .css and .js files, even between browser sessions. This leads to a problem when you ...
119
votes
5answers
10k views
Convert RGB-->RGBA
I have a hex color, e.g. #F4F8FB (or rgb(244, 248, 251)) that I want converted into an as-transparent-as-possible rgba color (when displayed over white). Make sense? I'm looking for an algorithm, or ...
77
votes
11answers
19k views
Google's Imageless Buttons
There have been a few articles recently about Google's new imageless buttons:
http://stopdesign.com/archive/2009/02/04/recreating-the-button.html
http://stopdesign.com/eg/buttons/3.0/code.html
...
73
votes
9answers
50k views
Best jQuery rounded corners script?
I've been looking at various scripts for adding automatic rounded corners to a div using jQuery but there are loads of plugins available, none of which seem perfect.
So, does anybody know of a script ...
65
votes
9answers
6k views
How to show popup message like in stackoverflow
I would like to add a popup message like the one that appears on stackoverflow when I am not logged in and I try to use voting buttons.
What is the best method for achieving that?
Is it done using a ...
65
votes
3answers
45k views
Determine if an element has a CSS class with jQuery
I'm working with jQuery and looking to see if there is an easy way to determine if the element has a specific CSS class associated with it.
I have the id of the element, and the CSS class that I'm ...
46
votes
9answers
50k views
Dynamically retrieve Html element (X,Y) position with JavaScript
I want to know how to get X and Y postion of HTML elements such as img, div in JavaScript.
thanks
46
votes
18answers
36k views
Autosizing textarea using prototype
I'm currently working on an internal sales application for the company I work for, and I've got a form that allows the user to change the delivery address.
Now I think it would look much nicer, if ...
43
votes
16answers
34k views
HTML table with fixed headers?
Is there a cross-browser CSS/JavaScript technique to display a long HTML table such that the column headers stay fixed on-screen and do not scroll with the table body. Think of the "freeze panes" ...
40
votes
4answers
2k views
HTML5 Boilerplate vs. HTML5 Reset
Hey everyone — HTML5 Boilerplate and HTML5 Reset are two HTML, CSS, and JavaScript templates with a lot of modern best practices built-in. Their goals are largely the same:
Fast, robust, ...
40
votes
18answers
4k views
What Cross-Browser issues have you faced?
While developing for multiple sets of browsers, what issues have you faced while development due to differences in browser implementation?
To start with I am listing some of those which i faced:
A ...
39
votes
1answer
533 views
+500
Can prettify.js be extended to support Mathematica?
The mathematica.SE is currently in private beta and will open to the public in a few days. Stack Overflow and related sites use prettify.js, however Mathematica is not a supported language. It would ...
39
votes
16answers
62k views
I need my html table's body to scroll and its head to stay put
I am writing a page where I need an html table to maintain a set size. I need the headers at the top of the table to stay there at all times but I also need the body of the table to scroll no matter ...
38
votes
16answers
32k views
Is there a way to make text unselectable on an html page?
I'm building an html UI with some text elements, such as tab names, which look bad when selected. Unfortunately, it's very easy for a user to double-click a tab name, which selects it by default in ...
37
votes
7answers
6k views
How to remove the space between inline-block elements?
Given this HTML:
<p>
<span> Foo </span>
<span> Bar </span>
</p>
and this CSS:
span {
display:inline-block;
width:100px;
}
as a result, there ...
36
votes
3answers
13k views
Can jQuery get all CSS styles associated with an element?
Is there a way in jQuery to get all CSS from an existing element and apply it to another without listing them all?
I know it would work if they were a style attribute with attr(), but all of my ...
36
votes
7answers
2k views
Header message just like at Stack Overflow
This is the first time I visited stack overflow and I saw a beautiful header message which displays a text and a close button.
The header bar is fixed one and is great to get the attention of the ...
34
votes
14answers
74k views
JQuery Popup Bubble
I'm trying to make a "bubble" that can popup when the onmouseover event is fired and will stay open as long as the mouse is over the item that threw the onmouseover event OR if the mouse is moved into ...
33
votes
11answers
764 views
Is there a way to break long numbers (“$100000000”) into more readable triads (“$100 000 000”) with CSS?
I have a page with lots of big number values. Millions and billions of dollars going everywhere. And it is hard to read these numbers, so my client asks me to break them into more readable chunks of ...
33
votes
6answers
5k views
Load and execution sequence of a web page?
I did some web based projects. But I don't think too much about the load and execution sequence of an ordinary web page. But now I need to know detail. It's hard to find the result from Google or SO. ...
33
votes
4answers
15k views
Cross-browser way to flip html/image via Javascript/CSS?
Is there a library/simple way to flip an image?
Flip image like this:
AABBCC CCBBAA
AABBCC -> CCBBAA
I'm not looking for animations, just flip the image.
I've googled to no avial and ...
32
votes
29answers
2k views
Whats the most impressive thing you've seen done with JavaScript? [closed]
I've realised that while JavaScript has a bad reputation, its actually a surprisingly powerful client-side language - the trouble is that the overwhelming majority of JavaScript written is quirky ...
31
votes
5answers
3k views
Javascript/CSS rollover menus are patented and subject to licensing?
Very interesting finding that a client brought to my attention today regarding javascript style rollover menus. They got a call from their legal dept that they need to change the manner in which their ...
31
votes
16answers
62k views
Print <div id=printarea></div> only?
How do I print the indicated div (without manually disabling all other content on the page)?
I want to avoid a new preview dialog, so crating a new window with this content is not useful...
The page ...
30
votes
8answers
7k views
Concatenate and minify JavaScript on the fly OR at build time - ASP.NET MVC
As an extension to this question here Linking JavaScript Libraries in User Controls I was after some examples of how people are concatenating and minifying JavaScript on the fly OR at build time. I ...
30
votes
15answers
3k views
What is better: CSS hacks or browser detection?
Commonly when I look around the Internet, I find that people are generally using CSS hacks to make their website look the same in all browsers. Personally, I have found this to be quite time consuming ...
29
votes
4answers
2k views
How to access CSS generated content with JavaScript
I generate the numbering of my headers and figures with CSS's counter and content properties:
img.figure:after {
counter-increment: figure;
content: "Fig. " counter(section) "." counter(figure);
...
29
votes
12answers
8k views
What are some good css and js minimizers for production code?
I'm looking for some applications or websites that minimize css and js files. Ideally, they could batch them all or if not, one at a time.
Thanks!
Brian
29
votes
9answers
46k views
Padding or margin value in pixels as integer using jQuery
jQuery has height() en width() functions that returns the height or width in pixels as integer...
How can I get a padding or margin value of an element in pixels and as integer using jQuery?
My ...
29
votes
7answers
8k views
Multiple javascript/css files: best practices?
I have about 7 Javascript files now (thanks to various jQuery plugins) and 4-5 CSS files. I'm curious as to what's the best practice for dealing with these including where in the document they should ...
28
votes
11answers
24k views
Why use definition lists (DL,DD,DT) tags for HTML forms instead of tables?
I've come across a few examples recently that do things like:
<dl>
<dt>Full Name:</dt>
<dd><input type="text" name="fullname"></dd>
<dt>Email ...
28
votes
6answers
15k views
word wrap in css / js
I'm looking for a cross-browser way of wrapping long portions of text that have no breaking spaces (e.g. long URLs) inside of divs with pre-determined widths.
Here are some solutions I've found ...
27
votes
11answers
6k views
CSS Grid System for Forms (Multi-Column)
For future reference here is the final result with pixel perfect precision:
The CSS code:
._25 {
width: 21%;
display: inline;
float: left;
margin-left: 2%;
margin-right: 2%;
}
...
27
votes
10answers
19k views
how can I make a div stick to the top of the screen once it's been scrolled to?
I would like to create a div, that is situated beneath a block of content but that once the page has been scrolled enough to contact its top boundary, becomes fixed in place and scrolls with the page. ...
26
votes
5answers
983 views
How can you flip website upside down in IE ? (for the April 1st)
We are making April 1st prank in our office, and wanted to flip our corporate website upside down for several hours tomorrow :)
My patch works everywhere but not in IE... Can anyone help ?
...
26
votes
3answers
3k views
How to disable resizable property of TextArea?
I want to disable the resizable property of a TextArea.
Currently, I can resize a TextArea by clicking on the bottom right corner of the TextArea and dragging the mouse. Is it possible to disable ...
26
votes
11answers
25k views
What is the single best javascript lightbox script currently available?
What is the best javascript lightbox script currently available?
I'm working on a project and am a bit baffled at the number of lightbox scripts out there.
The one I need should:
not allow flash ...
25
votes
6answers
9k views
jQuery CSS plugin that returns computed style of element to pseudo clone that element?
I'm looking for a way using jQuery to return an object of computed styles for the 1st matched element. I could then pass this object to another call of jQuery's css method.
For example, with width, I ...
25
votes
10answers
39k views
Fixed positioning in Mobile Safari
Is it possible to position an element fixed relative to the viewport in Mobile Safari? As many have noted, position: fixed doesn't work, but Gmail just came out with a solution that almost is what I ...
25
votes
6answers
16k views
How to create a <style> tag with Javascript
I'm looking for a way to insert a <style> tag into an HTML page with javascript.
The best way I found so far:
var divNode = document.createElement("div");
divNode.innerHTML = ...
24
votes
4answers
3k views
Dynamically loading css stylesheet doesn't work on IE
I dynamically load a css stylesheet (with a little help from jQuery) like this:
var head = document.getElementsByTagName('head')[0];
$(document.createElement('link'))
.attr({ type: 'text/css', ...
23
votes
5answers
365 views
What method would be best to build this complex graph
After 15 years doing UI development, there's very little I look at and think, "how on earth do I do that." This is one of those times.
A graphic designer has sold my clients on a very complex ...
23
votes
8answers
3k views
Wanted: offline IDE for developing Html / JavaScript on Android Tablet
I don't know if this is the right place to ask this question, so if I'm wrong please redirect me to the right stack exchange site.
In a few days I'm getting my new Motorola Xoom and I would like to ...
23
votes
2answers
6k views
How to make Visual Studio stop “compiling” .js and .css files
I use Visual Studio as my editor for .css and .js files.. It REALLY SUCKS especially with .js files since it insists on indenting them in a very weird way, but I find it convenient that the first ...
22
votes
7answers
3k views
Getting ready to learn html5
I'm a desktop application developer, and I plan learning html5, but as it's not released, there are (almost) no published books and not too much infomation for beginners on the web... I feel I should ...
22
votes
8answers
30k views
How can I scale an entire web page with CSS?
Using Firefox, you can enlarge an entire web page by simply pressing CTRL +. What this does is proportionally enlarge the entire web page (fonts, images, etc).
How can I replicate the same ...
22
votes
8answers
7k views
How to debug CSS/Javascript hover issues
I often find myself wanting to debug CSS layout issues that involve DOM changes caused by Javascript in reaction to a hover event or different CSS rules applying due to the :hover selector.
Normally, ...
22
votes
15answers
51k views
HTML table with fixed headers and a fixed column?
Is there a CSS/JavaScript technique to display a long HTML table such that the column headers stay fixed on-screen and the first coloumn stay fixed and scroll with the data.
I want to be able to ...