Ajax post function not work in ie. It works in all the other browsers. Below is my code.
<script>
$(document).ready(function()
{
$(".asu").click(function()
{
var day = $(this).text()
day = day.substring(0, 2);
$.post('events.php',{day:day}, function(data)
{
$("aside").html(data);
});
});
});
</script>