At a loss as to why this simple jQuery AJAX script causes an error in IE7
Posted
by Nathan Pitman
on Stack Overflow
See other posts from Stack Overflow
or by Nathan Pitman
Published on 2010-05-12T22:57:54Z
Indexed on
2010/05/12
23:04 UTC
Read the original article
Hit count: 189
<script type="text/javascript">
$(function(){
$('.update').click(function(){
$.ajax({
type: "POST",
url: "/reporting_results/mark_result",
data: "id="+$(this).attr("id")+"&check="+$(this).val()+"&user_id=<?=$user_id?>&product=<?=$this->uri->segment(3)?>",
});
return true
});
});
</script>
© Stack Overflow or respective owner