Running on Chrome I get this error message:
Uncaught SyntaxError: Unexpected token
This is the part of my code which is responsible for the request:
function wetter() {
$.ajax({
'Accept': 'application/json',
type: 'GET',
url: '[here comes the url',
dataType: 'jsonp',
success: function (data) {
//content
}
});
};