<script type="text/javascript" src="https://code.jquery.com/jquery-3.4.1.min.js">
var select = "task";
function funcSuccess(data){
$("#information").text (data);
}
$(document).read(function() {
$("#task").bind("click", function(){
$.ajax({
url: "handler_selector.php",
type:"POST",
data: select ,
dataType:"html",
succsess: funcSuccsess
});
});
});
</script>