Posts by Danielle Rodrigues • 53 points
4 posts
-
1
votes2
answers136
viewsQ: How to take the scroll out of an input date field?
I have an input date field, when I change the date and continue to focus on the field, if I use the scroll, the date changes. I need to disable this scroll when the field has selected.
-
0
votes2
answers58
viewsA: How to use jquery in an Angularjs directive?
angular.module("components").directive("clearTooltip", function () { return { link: function (scope, element) { element.mouseleave(function () { $(this).tooltip("hide"); }); element.on("click",…
-
3
votes2
answers58
viewsQ: How to use jquery in an Angularjs directive?
I tried to put a function in jQuery within a directive, but it’s not working. I searched and found in several places talking about jqLite, but I could not convert jQuery to jqLite.…
-
1
votes0
answers52
viewsQ: How to do ng-model in this case, where I have only one input?
I have this code in .pug: div(class="box-group" ng-controller="filter") div(class="panel box box-primary col-sm-12") div(style="text-align:center") h4 Filtro div(class="form-group col-sm-12") label…