Brandon Aaron wrote: > > Have you tried to > just simplify things and see if you can maybe narrow down the issue. > Perhaps a simplified test case will shed some light on the issue and > make it easier for the list to dig into.
Ok, I removed all the effects as well, still no difference: http://osxcode.com/feedsearch/index.test3.php The whole HTML: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>OS X Code (r,s) - jMe - Feed Aggregator - OS X, Web 2.0 & Programming</title> <link rel="stylesheet" type="text/css" href="defaultstyle.css" /> <script type="text/javascript" src="jquery.pack.js"></script> <script type="text/javascript"> function showgreenpage(pagename){ if (pagename != currentpage){ $("#"+currentpage+"_page").html($("#greenboxcontent").html()); $("#greenboxcontent").html($("#"+pagename+"_page").html()); $("#"+pagename+"_page").html(""); currentpage = pagename; generatetoollinks(); } } function generatetoollinks(){ var myoutput = ''; for(page in mypages) { if (currentpage == page){ var myclass = "toollinksbg"; var myaction = " "; } else { var myclass = "toollinksbgs"; var myaction = ' onclick="showgreenpage(\''+page+'\');" '; } myoutput = myoutput+'<div class="'+myclass+'"> javascript:void(null); '+page+' </div>'; } $("#toollinks").html(myoutput); } function showfeedinfos(feedid){ if ($("#f_item_"+feedid+" .feedinfo").html() == ''){ $.get("getfeedinfo.php", {feedid: feedid}, function(feedinfo){ $("#f_item_"+feedid+" .feedinfo").html(feedinfo); }); } else { $("#f_item_"+feedid+" .feedinfo").html(""); } } $(document).ready(function(){ mypages = new Object(); mypages["items"] = "Items"; mypages["feeds"] = "Feed List"; currentpage = "items"; generatetoollinks(); }); </script> </head> <body> <div id="toollinks"></div> <div id="greenbox"> <div id="greenboxcontent"> original content </div> </div> <div id="items_page" class="hiddeninfo"></div> <div id="feeds_page" class="hiddeninfo"> <div id="f_item_31"> javascript:void(null); pics/infoicon.gif <div class="feedinfo"></div> </div> </div> </body> </html> I have simple no idea why this isn't working ... and I really don't think I'm doing anything special, it just wont work. :-( Fredi -- View this message in context: http://www.nabble.com/How-can-this-not-work--%28Safari-Problem%29-tf2721195.html#a7606665 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
