I have the following code: <form method='post'> <input type='submit' name='bid' value='Licitar'> When the user clicks the submit button, I want to update the WordPress post meta, in order to change the actual bid value. I'd also like to update, without reloading the page, the following div: <div class='vehicle-value-box'>".auctionplugin_get_latest_bid($post->ID).",00€</div> How can I do both? I ha