NOVOSTI

Odaberite novost s desne strane.
jQuery(document).ready(function($){ $('.novosti-lista .elementor-post__title a').on('click', function(e){ e.preventDefault(); var postUrl = $(this).attr('href'); $.ajax({ url: postUrl, type: 'GET', success: function(data){ var content = $(data).find('.elementor-widget-container').html(); var title = $(data).find('.entry-title').text(); $('#novosti-sadrzaj').html('

' + title + '

' + content); } }); }); });