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/

Reply via email to