Как я могу вставить две переменные в URL в коде?Я уже вставил переменную filtertype в конце URL.Слово «слизняк» в URL должно быть заменено переменной слаг.
$('body').on('click','.profile-filter',function(e) {
e.preventDefault();
var filtertype = $(this).data("filtertype");
var slug = $(this).data("slug");
$.ajax({
type: 'GET',
url: '/profile/timeline/post/slug/?' +filtertype,
success: function (data) {
$('#profile_content').html(data);
},
error: function (xhqr, data) {
_toastr_new(data, "top-full-width", "error", false, '.toastr-notify', 0);
}
});
});