I created a div where it has 2 links, when the page loads, both links are hidden and when I click "fetch" they should appear. The detail, problem is that they appear and disappear! Why might this be happening?
Follow the code:
<input type="submit" name="buscar" id="busca" value="Buscar">
$(document).ready (function(){
$("#gerar").hide();
$("#busca").click(function(){
$("#gerar").show();
});
});