Posts by Bruno Mangini Alves • 11 points
2 posts
-
0
votes2
answers16273
viewsA: Git push permission and error 403
Check the repository for ADMIN privileges. If you are for example like READ, you can only pull.
gitanswered Bruno Mangini Alves 11 -
1
votes2
answers8681
viewsA: How to add and remove required input with jQuery?
$(document).ready(function() { $("#formulario").on('change', function() { if(this.value == 'empresa' || this.value == 'candidato'){ $("#empresa").attr("required", "req"); …