Posts by dcalmeida • 136 points
3 posts
-
1
votes3
answers647
viewsA: Popular HTML table from a Combobox
I made a small adaptation on your problem to show a way to popular a table from values of a combobox. $('#especialidade').on('change',function(){ var option =…
-
1
votes1
answer45
viewsA: media querie scss
One way I found to do this is by using @mixin and @for. See the code below. @mixin medias($media){ $x: 100/12; $newWidth: $x; @for $var from 1 to 13 { .col-#{$media}-#{$var} { max-width:…
-
0
votes2
answers199
viewsA: Function load disables Jquery functions . Hide() and . show()
I created a small example similar to your problem, see if you can adapt in your code. See below, I changed the way to call the click event to the two buttons: $(document).ready(function(){…