Hello,
I am working on joomla. i use the json code i.e.
<script language="JavaScript1.2">
jQuery.noConflict();
jQuery(function() {
jQuery('.text_area').change(function() {
var traID = jQuery(this).val();
jQuery.getJSON('?option=com_propertyform&view=ajaxdata&format=raw', {
traid: traID
}, function(response) {
if (response) {
console.log(jsonData);
}
});
});
});
</script>
but there is response error "500 Internal Server Error 71 ms". I create view that is ajaxdata. So anybody help me how to get response from that page.