How to add a bookmark in google maps and delete when you keep selected for 5 seconds?
function genera_marcador(lat, lng) {
var marcador = new google.maps.Marker({
position: new google.maps.LatLng(lat, lng),
dr...
I have two High and Low Buttons, I want that at the beginning when all are true you only see the Low button and if one is in FALSE see the High button
<table class="table table-sm" ng-init="GetData()">
<thead>
&...
I'm trying to set up my site so that I skip the login in a view in AngularJS (my view in angle is called /validate#/validateusername/ ) but I could not get it, any suggestions on how I can achieve this?
@Autowired
public void configureGl...
When I try to add an initial value to an input type file from FormControl I get the following error:
ERROR DOMException: Failed to set the 'value' property on
'HTMLInputElement': This input element accepts a filename, which may
...
I have on my controller:
$scope.test= function () {
var list = ["var0","var1","var2","var3"];
var result= 0;
for (var x=0;x<list.length;x++) {
result= result + TestService.loadVariable(list[x])
}
$scope.resu...
How can I hide the word volver and show it when the div that has the class collapse is opened and the word search is hidden, that is, when the div makes collapse , "this open " show the word return if it i...
Trying to capture two values through two input , one is text and the other is for date. I try to do this, with a modal window which appears when I press a button. The code is as follows:
calendarioestu.html
<ion-header-bar class="...
I have the following directive, which I got on the web to use jQuery Validator with Angularjs
app.directive('ngValidate', function () {
return {
require: 'form',
restrict: 'A',
scope: {
ngValidate: '='...