Hi!
I got a kind of admin-panel where I want to be able to change customers order status live without refreshing or changing page. I have figured out that I need to use Javascript, AJAX or jQuery for this but since I have no experience for that and have no time to learn all that I'm asking you for help to achive this.
My code:
<form>
<select name="status">
<option value="0">Ej verifierad</option>
<option value="1">Väntar på betalning</option>
<option value="2">Postas ASAP</option>
<option value="3">POSTAD!</option>
<option value="4">Annulerad</option>
</select>
</form>
The order status is kept in a MySQL database.
Please note that I will have many forms at one page and only want the update the one that is changen but directly when I change it.
Thanks in advance for answers.