After implementing this code:
$(document).ready(function() {
$.ajax({
type: "POST",
url: "http://steamcommunity.com/market/priceoverview/?currency=3&appid=730&market_hash_name=StatTrak%E2%84%A2%20P250%20%7C%20Steel%20Disruption%20%28Factory%20New%29",
data: {},
dataType: "jsonp",
crossDomain: true,
success: function(data) {
console.log(data)
} });
});
We encountered the following error message:
Uncaught SyntaxError: Unexpected token :
Despite receiving the correct response from the URL in our console and experimenting with different dataTypes, we are still facing issues. What could possibly be causing this problem?