Solicitação de jQuery Ajax a cada 30 segundos

Eu tenho esse pedaço de código, mas os valores podem mudar enquanto alguém estiver no meu site. Eu precisaria atualizar a div #finance a cada 30 segundos ou mais. Isso pode ser feito?

$(function() {
    $.getJSON(
        "http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20where%20symbol%20in%20(%22%5EFTSE%22)%0A%09%09&format=json&env=http%3A%2F%2Fdatatables.org%2Falltables.env&callback=?",

        function(json){
          $('#finance').text(json.query.results.quote.Change);
            // Patching payload into page element ID = "dog"
        });
});

questionAnswers(3)

yourAnswerToTheQuestion