Revision: 14166
                            
                                                            
                                    
                                        
Initial Code
                                    
                                    
                                                            
                                    
                                        
Initial URL
                                    
                                    
                                                            
                                    
                                        
Initial Description
                                    
                                    
                                                            
                                    
                                        
Initial Title
                                    
                                    
                                                            
                                    
                                        
Initial Tags
                                    
                                    
                                                            
                                    
                                        
Initial Language
                                    
                                    
                                                    
                        at May 21, 2009 13:42 by adnan
                            
                            Initial Code
//include jQuery.js --  visit: http://jquery.com/
$(function(){
    var maxZ = Math.max.apply(null,$.map($('body > *'), function(e,n){
           if($(e).css('position')=='absolute')
                return parseInt($(e).css('z-index'))||1 ;
           })
    );
    alert(maxZ);
});
                                Initial URL
http://abcoder.com/javascript/a-better-process-to-find-maximum-z-index-within-a-page/
Initial Description
I made an absolute tinny code to find the highest z-index of absolute DIV to show my shouting box and to make it appear absolutely at the top of all html elements. I used selector of â€body > *‘ instead of ‘body *‘. â€body > *‘ means all tags/elements which are found at first depth of whether â€body *‘ selects all tags/elements at any depth. It doesn’t matter what’s is the maximum/highest z-index of an absolute element rather it matters what’s the maximum/highest z-index of the absolute elements which are next to in first depth only to show the shouting box on top most strata. N.B. Shouting box is appended to document.body in this case.
Initial Title
A better process to find maximum z-index within a page
Initial Tags
javascript, jquery
Initial Language
jQuery