I used to get my php-params within AJAX like this:
$.ajax({
url: "php/loadPictures.php",
***data: { id: $_GET['id']},***
dataType: 'json',
success: function( data ) {...
As I changed to jQuery 3.x this doesn't work anymore and comes with an error. What else can I do? Thx for helping