Issue with jQuery $.get in IE - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T05:33:48Z http://stackoverflow.com/feeds/question/821816 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie 3 Issue with jQuery $.get in IE Wickethewok 2009-05-04T20:14:07Z 2009-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 -2 Answer by Jonathan Tran for Issue with jQuery $.get in IE Jonathan Tran 2009-05-04T20:30:39Z 2009-05-04T20:30:39Z <p>When all else fails, restart ;-)</p> http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie/821990#821990 0 Answer by Chetan Sastry for Issue with jQuery $.get in IE Chetan Sastry 2009-05-04T20:47:52Z 2009-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#822156 1 Answer by R. Bemrose for Issue with jQuery $.get in IE R. Bemrose 2009-05-04T21:31:09Z 2009-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#822348 0 Answer by rball for Issue with jQuery $.get in IE rball 2009-05-04T22:14:17Z 2009-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#822446 0 Answer by NVRAM for Issue with jQuery $.get in IE NVRAM 2009-05-04T22:38:32Z 2009-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> &lt;input type="button" id="login_submit" value="Login" /&gt; </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#822467 0 Answer by Will Dean for Issue with jQuery $.get in IE Will Dean 2009-05-04T22:43:34Z 2009-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#822516 1 Answer by rball for Issue with jQuery $.get in IE rball 2009-05-04T22:54:01Z 2009-05-04T22:54:01Z <p>In your response type use:</p> <p>header("content-type:application/xml;charset=utf-8");</p>