You can use .load()
with a selector like this:
$(function() { //run when the document's ready, elements are loaded
$("#myButton").click(function() {
$("#osvezi").load(location.href + " #osvezi > *");
});
});
This responds to an element with id="mybutton"
being clicked and refetches the page but only that portion. Alternatively, if moduli/skupina_artiklov/osvezi.php
is accessible directly, you can just load that directly (more efficient!) this:
$(function() {
$("#myButton").click(function() {
$("#osvezi").load("moduli/skupina_artiklov/osvezi.php");
});
});