I want to pare the JSON URL data in HTML web page and display it on page,I am using following code.
I want to show JSON Data in paragraph div.
<script>
function gContent(){
alert('working');
$.getJSON('http://www.celeritas-solutions.com/pah_brd_v1/productivo/getGroups.php? organizationCode=att&userId1&', function(data) {
alert(data);
$(".paragraph").html(data);
});
}
</script>