Right now I'm getting this strange error from IE which is basically
'null' is null or not an object
The line number it gives is completely off so I don't put much credit into that however I think I narrowed it down to where it's coming from.
function openSong(songlink){
$('#smallbox').slideDown();
requestCompleteSong('<tr><td>'+songlink+'</td></tr>');
}
The code above doesn't produce any errors from IE, however when I do an AJAX GET request using jQuery then it seems to throw this error
function openSong(songlink){
$('#smallbox').slideDown();
$.get("getSong.php?fake="+makeid(),{ id: songlink },requestCompleteSong);
}
'songlink' definitely isn't null because the first function I posted works fine. Here is makeid().
function makeid()
{
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for( var i=0; i < 5; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}
Can anybody see why IE is throwing this error?