Posts by Moysés Lacerda • 41 points
3 posts
-
0
votes2
answers217
viewsA: Using Jquery Library with Angularamd
use angular.element instead of $ angular.element serves as an alias for the jQuery function if it is loaded. If it is not loaded it will use the jQlite that comes coupled at the angle. $('xxx')…
-
1
votes2
answers312
viewsA: Sort Vector Increasingly with Angularjs
Here is a way to organize the array for use in JS by creating a function to be passed as a parameter in Sort. var sortByMinimo = function(a, b) { if (a.minimo < b.minimo) { return 1; } if…
-
3
votes2
answers203
viewsA: jQuery - Select option and return values
You must provide a selector for the "on" function: $(function(){ $(document).on('change', 'select', function() { if(($("#men_cod").val())==''){ $("#sms_mensagem").attr("disabled",false);…
jqueryanswered Moysés Lacerda 41