Hallo,
ich habe unter PHP folgende Java-Script Anweisung:
$(\'#projectFilter\').on(\'change\', function() {
var location = "' . get_page_base_url('leads') . '";
var project_id = $("#projectFilter").val();
if (project_id != 0) {
location = location + "?project_id=" + project_id;
}
window.location.href = location;
return false;
});
Nun möchte ich dort beo on chance zusätzlich ein Alert mit einem Hinweis "Gewechselt!". Wie und wo muss ich das einbinden?
Vielen Dank.