"תוצרת הארץ" - מופע הצדעה לנתן אלתרמן ותרצה אתר
יום שישי, 9 באוקטובר 2026
12:00
עוד בתיאטרון חיפה
כל האירועים בתיאטרון חיפהסופ״ש בחיפה
כל אירועי הסופ״ש בעיר"תוצרת הארץ" - מופע הצדעה לנתן אלתרמן ותרצה אתר
$(document).on('click', '.show_actor_link', function (e) {
e.preventDefault();
var actorId = $(this).data('actor-id');
$.get('/Actor/Actor', { Id: actorId }, function (html) {
$('#actorModal').html(html).fadeIn();
$('#actorModal').find('.popup_close').on('click', function (e) {
e.preventDefault();
$('#actorModal').fadeOut().empty();
});
});
});
$(function () {
var firstActorId = $('.show_actor_link').first().data('actor-id');
if (firstActorId) {...