Parse JSONP data
Parse JSONP data
I've got an API that is producing JSONP output and I need take the data and read it into an unordered list. Can anyone point me in the right direction? As you can see I'm not sure what to put in the success event to show the data correctly.
- <scirpt type="text/javascript">
- $(document).ready(function(){
- $.ajax({
- dataType: "jsonp",
- url: "https://my.site.com/",
- success: function(data) {
-
- }
- });
- });
- </script>