Search Results

3
votes

Javascript - loading/busy indicator or transparent div over page on event click

Javacript to show a curtain: function CalculateAmountOnClick () { var curtain = document.body.appendChild( document.createElement('div') ); curtain.id = "curtain"; curtain.onk …
2
votes

Javascript - loading/busy indicator or transparent div over page on event click

I'm going to make some heavy assumptions here, but it sounds to me what is happening is that because you are directly locking the browser up with intense processing immediately after having set up …
2
votes

Change of class does not result in the new class’s rules being applied in IE6??

Guess one: Rendering bug 1 Make sure that you have triggered hasLayout on the elements. You can do this by giving them a height or, if that isn't a posibility then position = relative & …
7
votes

Styling horizontal rules

The classic way of doing this is creating a wrapper around the <hr> and styling that. But I have come up a CSS trick for image replacing the element without the need for extra markup: …
11
votes

Python script for minifying CSS?

This seemed like a good task for me to get into python, which has been pending for a while. I hereby present my first ever python script: import sys, re css = open( sys.argv[1] , ' …
0
votes

Javascript function to ‘get element by parent class’ and assign

The function changes to: function myFunction(element){ var liArray = document.getElementById("leftlist").childNodes; var i=0, item; while (item = liArray[i++]) { if (item. …
5
votes

Use double classes in IE6 CSS?

IE6 doesn't support multiple class selectors. The reason you see a change with the Orange class is because a.MenuButton.Orange is interpreted by IE6 as a.Orange …
1
vote

JS Test for :target support

You can test for CSS support by adding a rule like #someid:target { visibility:hidden; color:#abcdef; } and then setting the target to #someid, reading if the color is …
3
votes

Placing a small arrow over a letter with css

The arrow is a part of the content and belongs in the HTML. You should be able to remove the JavaScript and CSS and the text should still make sense (let's say you decide to print out the page). …