I have small input field with button. It looks similar like this:

HTML
<input type="text" id="my_input"><span class="btn">Save</span>
JQUERY
$(".btn").click(function(){
// send data to $_POST['#my_input']
});
If user press "save", can i use jquery to assign PHP isset ?
if(isset($_POST['#my_input'])){
//action
}