i am using a JavaScript and it have the below code:
<script type="text/javascript">
var count = 0;
jQuery('td').click(function () {
if ($(this).hasClass('process')) {
count = count+100;
alert('count');
}
});
</script>
so if its click the value is added by 100 i check using an alert, now how to access the var count
in my code-behind
}
s, but apart from that - do you want to sendcount
to the server? – Lagasse$.post()
it to the server, which will receive it as it would a normal form input. – Forcefeed