Posts by Thiago Bueno Fiorenza • 36 points
4 posts
-
0
votes4
answers5695
viewsA: Get list of changed files in working directory (Working directory)
To know which branch files are not yet in master, you can use this command: git diff --name-only master This is useful to know which files should go into production, for example.…
gitanswered Thiago Bueno Fiorenza 36 -
1
votes1
answer55
viewsA: Doubt about Javascript or jquery for Collapse in viewport
See if this code meets your problem: jQuery(function($){ $("#collapseExample").removeClass('in'); if ($(document).width() > 768) { $("#collapseExample").addClass('in'); } });…
-
1
votes1
answer344
viewsA: How to make this menu open with a smooth animation? com css, html, js
Simply use the jQuery slideToggle function :) var open = false; $('#button-social-menu').click(function(){ $('#social-menu-itens').slideToggle( "slow" ); });
-
0
votes1
answer104
viewsA: How to get the current value of a select in a Row using the JS or Jquery click event
I don’t understand why you’re using the bind click. Just change doesn’t solve your problem? This way below it no longer brings the value of select? $("#div-documentos").on("change",…