<script type="text/javascript">
function testing() {
$.ajax({
type: "POST",
url: "testing.php",
data: "call="+$("#abc").val(),
success: function(msg){
alert( msg );
}
});
}
</script>
<textarea id="abc" cols="" rows=""></textarea>
I want to post the data to testing.php but if i got special characters like & sign. it will create the problem. How do i go about it?
Thank You