jQuery("document").ready(function(jQuery){ // scripts the Map List Page --------------------------------------------------------------------------------------------------------- // display alt from actions var ActionBlock=jQuery(".categoryActions"); if (ActionBlock.length != 0) { var icons=ActionBlock.find("img.button"); if (icons.length !=0) { icons.each(function(index) { var alt_text = (jQuery(this).attr("alt")); jQuery(this).before(alt_text); jQuery(this).parents("li").css("width","auto"); jQuery(this).remove(); }); } } });