I had a similar question posted here a few hours ago, just now I got the answer that I should look into using AJAX to do this. Since I want to complete this part of the site today I can't afford to learn AJAX from the basics to do this now.. This shouldn't be something difficult and I thougt that I would be able to do this but I'm not skilled enough...
I have a form, when you click submit, it posts to twitter.com/statuses/update.xml and I need to be able to do so without being redirected there.
Is there an easy way to do this or do I need to learn AJAX?
Thankfull for any answer at all..!
edit:
I'm using this to submit:
$(function() {
$("#skikka").click(function() {
var dendar =
"http://" +
$("#usernam").val() + ":" + $("#passwo").val() +
"@twitter.com/statuses/update.xml";
$("#formen").attr("action", dendar);
$("#formen").submit();
alert(dendar);
return false;
});
});