How to do an update status (ajax) with Jquery? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T21:39:40Z http://stackoverflow.com/feeds/question/882194 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/882194/how-to-do-an-update-status-ajax-with-jquery 0 How to do an update status (ajax) with Jquery? show_lol 2009-05-19T11:31:18Z 2009-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#882217 1 Answer by Natrium for How to do an update status (ajax) with Jquery? Natrium 2009-05-19T11:36:27Z 2009-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#882271 2 Answer by Tomas Lycken for How to do an update status (ajax) with Jquery? Tomas Lycken 2009-05-19T11:51:16Z 2009-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#882310 1 Answer by Cherian for How to do an update status (ajax) with Jquery? Cherian 2009-05-19T12:00:25Z 2009-05-19T12:38:44Z <p>you probably want to do this..</p> <pre><code>$("div").html("&lt;span class='red'&gt;Hello &lt;b&gt;Again&lt;/b&gt;&lt;/span&gt;"); </code></pre> <p>or</p> <pre><code>$("p").text("&lt;b&gt;Some&lt;/b&gt; 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#882327 1 Answer by harshath.jr for How to do an update status (ajax) with Jquery? harshath.jr 2009-05-19T12:03:16Z 2009-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#884172 0 Answer by KyleFarris for How to do an update status (ajax) with Jquery? KyleFarris 2009-05-19T17:51:58Z 2009-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: '&lt;?php echo $_SERVER['PHP_SELF']; ?&gt;', 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 = $('&lt;div class="status-box"&gt;'); element.html(status + '&lt;br /&gt;&lt;span class="time"&gt;A moment ago&lt;/span&gt;'); $('#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>