Skip to content

Instantly share code, notes, and snippets.

@gbmoretti
Created September 13, 2013 19:40
Show Gist options
  • Save gbmoretti/6555122 to your computer and use it in GitHub Desktop.
Save gbmoretti/6555122 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('.enviar').click(function() {
var matricula = $(this).data('matricula');
var ano = $(this).data('ano');
postPopup('form[name=relatorio]','cadastroDeOcorrencias.php?aluno=' + matricula + '&ano=' + ano);
$('#relatorio').submit();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment