-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I made a very simple jQuery img rollover function inspired by this one:
http://www.smileycat.com/miaow/archives/000224.php.
It just check all the imgs that contain _off in their name and swap them with an img with the same name but "_on" instead of "_off".
Since I can't use background imgs in my…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
$('.ro').hover(
function(){
t = $(this);
t.attr('src',t.attr('src').replace(/([^.]*)\.(.*)/, "$1_o.$2"));
},
function(){
t = $(this);
t.attr('src',t.attr('src').replace('_o',''));
}
);
I use this code so that (for examle) test.gif with the class…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I'm using Google Maps in my Flex site to create a map. I've got polygons overlayed on the map. When the user rolls over a polygon an infowindow opens identifying the area and the fill Alpha of the area is set to 0. On roll-out, the info window is removed and the fill Alpha is returned to the…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi Everyone,
I'm trying to create a drop down button and its almost working except one little bug. I have several big buttons that change background color when the user hovers over them and one of them, the language button, displays several suboptions inside itself when the user hovers over it. That…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello everyone, hopefully this will be an easy answer for some of you CSS veterans out there.
I'm developing a site for a client. For readability, I'll just give you a link to the website and the css page in question.
HTML
CSS
I'm trying to make a sub menu pop up to the right of the main menu when…
>>> More