That was the issue, boy I feel stupid :P It figures that it was something tiny!
Thanks! :) Ⓙⓐⓚⓔ wrote: > > trailing commas only work in firefox! > user: user, > > has a trailing comma! > > > > On 2/11/07, Moiph <[EMAIL PROTECTED]> wrote: >> >> Hi, >> I'm trying to get some simple things to work using jquery, and everything >> currently works the way I'd like it to in Firefox. However, in Opera, >> Safari, and Internet Explorer, nothing works right -- and I haven't been >> able to figure out where the hang up is. >> >> My entire jquery code can be found here: >> http://www.moiph.com/javascript/index.js but a snippet is below: >> >> $(document).ready(function() { >> $("a.lastfm").click(function() { >> var type = $(this).attr("id"); >> var user = $("#user").val(); >> >> $("div.lastfmContent").html("Loading..."); >> >> $.get("parser.php", >> { >> type: type, >> user: user, >> }, >> >> refreshLastFM >> ); >> }); >> }); >> >> >> function refreshLastFM(data) { >> $("div.lastfmContent").html(data); >> $("div.lastfmContent").slideDown("slow"); >> } >> >> In IE and in Opera, "loading..." does not even display. >> >> I'm using the latest (1.1.1) compressed JQuery. >> >> Any help would be much appreciated! >> >> Thanks, >> Pat >> -- >> View this message in context: >> http://www.nabble.com/Issues-with-non-FF-browsers-tf3212115.html#a8920010 >> Sent from the JQuery mailing list archive at Nabble.com. >> >> >> _______________________________________________ >> jQuery mailing list >> [email protected] >> http://jquery.com/discuss/ >> > > > -- > Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ > _______________________________________________ > jQuery mailing list > [email protected] > http://jquery.com/discuss/ > > -- View this message in context: http://www.nabble.com/Issues-with-non-FF-browsers-tf3212115.html#a8920264 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
