Skip to content

Instantly share code, notes, and snippets.

View sergiaodev's full-sized avatar
🎯
Focusing

Sergio Ramos sergiaodev

🎯
Focusing
View GitHub Profile
@sergiaodev
sergiaodev / post-login.js
Created January 22, 2019 12:35
Function js de post para login
const submeterLogin = () => {
$('form#conteudo').submit(function(event) {
event.preventDefault();
postRequestAjax(getDadosFormLogin(), successLogin(event), errorLogin());
})
}