Issue with jQuery $.get in IE - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T05:33:48Zhttp://stackoverflow.com/feeds/question/821816http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie3Issue with jQuery $.get in IEWickethewok2009-05-04T20:14:07Z2009-05-04T22:54:01Z
<p>I have a login form which appears at the top of all of my pages when the user is logged out. My current jQuery/javascript code works in Firefox 3 but not IE 7. The code queries a page which simply returns the string "true" or "false" depending on whether the login was successful or not. Inside my $.ready() function call I have the following...</p>
<pre><code>$('#login_form').submit(function() {
var email = $('input#login_email').val();
var pw = $('input#login_password').val()
$.get('/user/login.php', { login_email: email, login_password: pw }, function(data) {
alert('get succeeded');
if(data == 'true') {
$('#login_error').hide();
window.location = '/user/home.php';
alert('true');
}
else {
$('#login_error').show();
alert('false');
}
});
alert('called');
return false;
});
</code></pre>
<p>In FF, I am successfully transferred to the intended page. In IE, however, the below alerts "called" and nothing else. When I refresh the page, I can see that I am logged in so the $.get call is clearly going through, but the callback function doesn't seem like its being called (ie. "get succeeded" is not popping up). I also don't appear to be getting any javascript error messages either.</p>
<p>Why isn't this working in IE?</p>
<p>Thanks</p>
<p><strong>EDIT:</strong> Since a couple people asked, whenever I enter a correct email/password or an incorrect one, nothing in the callback function happens. If I manually refresh the page after entering a correct one, I am logged in. Otherwise, I am not.</p>
<p><strong>EDIT 2:</strong> If I alert out <code>data</code> in the callback function nothing happens in IE (I do not get an alert popup). In FF, it alerts <code>true</code> for valid email/pw combos and <code>false</code> for invalid ones. I am using jQuery 1.3.2.</p>
<p><strong>EDIT 3:</strong> Ok, guys, I tried R. Bemrose's thing down there and I'm getting a "parseerror" on the returned data. I'm simply echoing 'true' or 'false' from the other PHP script. I also tried 'yes' and 'no', but that still gave me a parse error. Also, this works in Chrome in addition to FF.</p>
http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie/821910#821910-2Answer by Jonathan Tran for Issue with jQuery $.get in IEJonathan Tran2009-05-04T20:30:39Z2009-05-04T20:30:39Z<p>When all else fails, restart ;-)</p>
http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie/821990#8219900Answer by Chetan Sastry for Issue with jQuery $.get in IEChetan Sastry2009-05-04T20:47:52Z2009-05-04T20:47:52Z<p>IE uses cached data for get requests. Maybe that's your problem? What happens if you try different user id, password?</p>
<p>In any case, isn't it a better idea to send password in POST? :)</p>
http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie/822156#8221561Answer by R. Bemrose for Issue with jQuery $.get in IER. Bemrose2009-05-04T21:31:09Z2009-05-04T21:31:09Z<p>As stupid as this sounds... perhaps IE7 is being anal retentive about the missing semicolon on the <code>var pw</code> line?</p>
<p>Probably not, but the only way I can think of getting more information is to convert it to an $.ajax call in order to add an error hook and see which error type it think is happening. Oh, and to check out the exception object.</p>
<pre><code>$.ajax({
type: 'GET',
url: '/user/login.php',
data: { login_email: email, login_password: pw },
success: function(data) {
alert('get succeeded');
if(data == 'true') {
$('#login_error').hide();
window.location = '/user/home.php';
alert('true');
}
else {
$('#login_error').show();
alert('false');
}
},
error: function(xhr, type, exception) {
alert("Error: " + type);
}
});
</code></pre>
<p>If the error type is parse, IE may be complaining because the data coming back has extra commas at the end of comma separated arrays/lists.</p>
http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie/822348#8223480Answer by rball for Issue with jQuery $.get in IErball2009-05-04T22:14:17Z2009-05-04T22:14:17Z<p>Instead of:</p>
<p>if(data == 'true')</p>
<p>try:</p>
<p>if(data)</p>
<p>then in your server just return either a 1 (or true) and a empty value.</p>
http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie/822446#8224460Answer by NVRAM for Issue with jQuery $.get in IENVRAM2009-05-04T22:38:32Z2009-05-04T22:38:32Z<p>What you've posted (at least after Edit 2) looks good. I think the problem is in what you <em>haven't</em> posted. </p>
<p>First, have you checked your server logs to ensure that it's sending back what you presume?</p>
<p>If so, I'd recommend dropping the submit mechanism and using a 'button' type with an 'onclick' handler, and not 'submit' button w/a 'onsubmit' handler...</p>
<pre><code> <input type="button" id="login_submit" value="Login" />
</code></pre>
<p>Then switch the submit handler:</p>
<pre><code> $('#login_form').submit(function() { ... });
</code></pre>
<p>from the form to the button with:</p>
<pre><code> $('#login_button').click(function() { ... });
</code></pre>
<p>If that doesn't help, can you post the HTML for the form, too?</p>
<p><strong>[Edit 3]</strong> - try adding the 4th 'type' parameter of "text" to the $.post() call.</p>
http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie/822467#8224670Answer by Will Dean for Issue with jQuery $.get in IEWill Dean2009-05-04T22:43:34Z2009-05-04T22:43:34Z<p>Have you used Fiddler to have a good look at what's actually being transferred? (<a href="http://www.fiddler2.com" rel="nofollow">http://www.fiddler2.com</a>) </p>
http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie/822516#8225161Answer by rball for Issue with jQuery $.get in IErball2009-05-04T22:54:01Z2009-05-04T22:54:01Z<p>In your response type use:</p>
<p>header("content-type:application/xml;charset=utf-8");</p>