How to do an update status (ajax) with Jquery? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T21:39:40Zhttp://stackoverflow.com/feeds/question/882194http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/882194/how-to-do-an-update-status-ajax-with-jquery0How to do an update status (ajax) with Jquery?show_lol2009-05-19T11:31:18Z2009-05-20T18:19:52Z
<p>How to do an update status like what are you doing now (facebook + ajax) with Jquery?</p>
<p>I found a tutorial that very similar to this, but they using mootools, is there a tutorial that use Jquery?</p>
<p>I am a new to javascript and jquery, I need your guys help and advice</p>
<p>EDIT:</p>
<p>The mootool example can be found from here:</p>
<p><a href="http://nettuts.com/tutorials/php/twitter-emulation-using-mootools-12-and-php/" rel="nofollow">http://nettuts.com/tutorials/php/twitter-emulation-using-mootools-12-and-php/</a></p>
http://stackoverflow.com/questions/882194/how-to-do-an-update-status-ajax-with-jquery/882217#8822171Answer by Natrium for How to do an update status (ajax) with Jquery?Natrium2009-05-19T11:36:27Z2009-05-19T11:36:27Z<p><a href="http://www.webresourcesdepot.com/dynamic-dragn-drop-with-jquery-and-php" rel="nofollow">here is a nice example to do some simple jquery-ajax with PHP</a></p>
http://stackoverflow.com/questions/882194/how-to-do-an-update-status-ajax-with-jquery/882271#8822712Answer by Tomas Lycken for How to do an update status (ajax) with Jquery?Tomas Lycken2009-05-19T11:51:16Z2009-05-19T11:51:16Z<p>Basically what you want to do is to make a <a href="http://docs.jquery.com/ajax" rel="nofollow">jQuery <code>POST</code></a> request to the server with the contents of your form. (Take a closer look at the examples to understand how it works...) Store the posted data in your database, send a response to the client and use a callback function to update the page by re-loading the specific fields that should be updated.</p>
<p>I haven't seen any tutorials to create this specific functionality, but if you play around a little with jQuery and your server-side language-of-choice you should be able to figure it out pretty quickly.</p>
http://stackoverflow.com/questions/882194/how-to-do-an-update-status-ajax-with-jquery/882310#8823101Answer by Cherian for How to do an update status (ajax) with Jquery?Cherian2009-05-19T12:00:25Z2009-05-19T12:38:44Z<p>you probably want to do this..</p>
<pre><code>$("div").html("<span class='red'>Hello <b>Again</b></span>");
</code></pre>
<p>or</p>
<pre><code>$("p").text("<b>Some</b> new text.");
</code></pre>
<p>Checkout
<a href="http://docs.jquery.com/Attributes/html#val" rel="nofollow">JQuery Docs</a></p>
http://stackoverflow.com/questions/882194/how-to-do-an-update-status-ajax-with-jquery/882327#8823271Answer by harshath.jr for How to do an update status (ajax) with Jquery?harshath.jr2009-05-19T12:03:16Z2009-05-19T12:03:16Z<p>@Tomas and @Natrium have basically told you what you need to know.</p>
<p>Since you say you are new to javascript and jQuery, I'd recommend you to check out <a href="http://docs.jquery.com/Main_Page" rel="nofollow">http://docs.jquery.com/Main_Page</a></p>
<p>For Ajax specific documentation, check out <a href="http://docs.jquery.com/Ajax" rel="nofollow">http://docs.jquery.com/Ajax</a></p>
<p>To learn the basics of jQuery (even if you don't know a lot of javascript), I recommend the book "Learning jQuery" <a href="http://www.packtpub.com/learning-jquery-1.3/book/mid/220409c024ep" rel="nofollow">http://www.packtpub.com/learning-jquery-1.3/book/mid/220409c024ep</a></p>
http://stackoverflow.com/questions/882194/how-to-do-an-update-status-ajax-with-jquery/884172#8841720Answer by KyleFarris for How to do an update status (ajax) with Jquery?KyleFarris2009-05-19T17:51:58Z2009-05-20T18:19:52Z<p>If you were to follow the mootools example exactly as they have it, the javascript code would simply need to be changed to this to work (basically the same way) in jQuery:</p>
<pre><code>$(function() {
//make the ajax call to the database to save the update
$.ajax({
url: '<?php echo $_SERVER['PHP_SELF']; ?>',
method: 'POST',
beforeSend: function() {
$('submit').attr('disabled','disabled');
},
complete: function(xhr,status) {
$('submit').disabled = 0;
$('#message').removeClass('success').removeClass('failure');
$('#message').fadeIn(3000);
},
success: function(data,status) {
//update message
$('#message').text('Status updated!').addClass('success').fadeIn('medium');
//store value, clear out box
var status = $('#status').val();
$('#status').val('');
//add new status to the statuses container
var element = $('<div class="status-box">');
element.html(status + '<br /><span class="time">A moment ago</span>');
$('#statuses').prepend(element);
//place the cursor in the text area
$('#status').focus();
},
error: function(xhr, status, error) {
//update message
$('#message').text('Status could not be updated. Try again.').addClass('failure').fadeIn('medium');
}
});
});
</code></pre>