Hey there, I'm facing an issue with JavaScript.
Please check out my website . What I want is that when I select "Option One", even after reloading the website, it should stay selected as "Option One" and not revert back to "Select...".
Any ideas on how to achieve this?
Thanks!
EDIT: Here's my PHP script:
<?php
if (isset($_POST['mySelect']))
{
$value = $_POST['mySelect'];
if ($value == 1) {
echo "blabla";
}
elseif ($value == 2) {
echo "hello";
}
}