Warning: Declaration of PortfolioWalker::start_el(&$output, $category, $depth, $args) should be compatible with Walker_Category::start_el(&$output, $data_object, $depth = 0, $args = Array, $current_object_id = 0) in /home/webundso/public_html/webundso.ch/wp-content/themes/rivers/library/includes/portfolio_walker.php on line 4

Warning: Declaration of PortfolioWalker2::start_el(&$output, $category, $depth, $args) should be compatible with Walker_Category::start_el(&$output, $data_object, $depth = 0, $args = Array, $current_object_id = 0) in /home/webundso/public_html/webundso.ch/wp-content/themes/rivers/library/includes/portfolio_walker.php on line 37
Fixing IE7 Z-Index Issues with jQuery - webundso GmbH - Internet-Agentur für TYPO3 und WordPress

Fixing IE7 Z-Index Issues with jQuery

Fixing IE7 Z-Index Issues with jQuery | Vance Lucas.

IE7 löst den IE6 als Hassbrowser nahtlos ab ….

Nachtrag: Der modifizierte Code, dass nur beim IE7 der Inline-Style reingeschrieben wird.

1
2
3
4
5
6
7
8
9
10
jQuery(function() {
var zIndexNumber = 1000;
if(jQuery.browser.version = jQuery.browser.msie
&& parseInt(jQuery.browser.version) == 7){
  jQuery('div').each(function() {
  jQuery(this).css('zIndex', zIndexNumber);
  zIndexNumber -= 10;
 });
 }
});

Tags:

Kommentieren?