Hi,
How to read the Json data in javascript?
I have the data as below:
<script type="text/javascript">
var allDataBanner=[{"id":"2","Title":"image","DisplayOrders":"3","TestURL":"some url"},{"id":"3","Title":"amaze","DisplayOrders":"2","TestURL":"some url"},{"id":"1","Title":"logo","DisplayOrders":"1","TestURL":"some url"}]
</script>
I want to iterate through the data and fetch the values.
How to achieve this in javascript?
Thanks
Go to the complete details ...