Call another page with bootstrap button not working

0

This very simple javascript does not work:

function Nova() {
            location.href = 'pme_beneficiarios.html';
        }

This is the button call: <button type="button" class="btn btn-primary add-task" onclick="Nova();">Beneficiário</button>

    
asked by anonymous 06.04.2016 / 14:57

1 answer

1

Try to put the window:

function Nova() {
        window.location.href = 'pme_beneficiarios.html';
}
    
06.04.2016 / 15:28