If on document.ready, I want my form to auto post itself, is this possible?
So when the document has loaded, then it posts itself and takes to the action=”” (in this case is ?upload=true).
I heard about $.post() jquery, but this is just for posting in the background?
Yes,
$.post()in jQuery is for POST requests with AJAX.If you want a form to submit on the document ready event, just invoke the submit itself!