Suppose I have a list of elements in a view:
<% Dim valor As New List(Of Integer)
For i As Integer = 0 To 5%>
<%valor.Add(i)%>
<% Next%>
I send them to a modal using data in this way:
<a href="#" data-toggle="moda...
I'm working on a code with checkbox and I want the results of which boxes are active or inactive to be displayed in the browser console or stored in an array by pressing the save button to later work with them .
The code I have so far is...
I have an Array Data :
var Data = [{"Nombre": "A","Apellido": "B","Edad": 12},{},{},{},...]
How can I filter the data so that all those with Apellido are equal to B , for example?
I'm doing a questionnaire in HTML and Jquery, when I click on an image that contains a question that is inside a section I want that section to hide and the next section appears, with Jquery I make a selection of the classes that contain the sec...
When executing the code the result always prints the statement of else , even if the condition of if true.
function Calculate()
{
var planetsList = {
"Mercurio": 0,
"Venus": 0,
"Tierra": 1,...
I have this connection
<?php
# Conexion con la Base de Datos
$userdb = 'administrador';
$passworddb = '1234567';
$dbhost= 'dbserver';
$dbname = 'sk_modular';
?>
and I have I'm calling the database to bring me some data...
I want to replace specific tags by using JavaScript.
The labels I want to replace are these <!-- and --> . Between these two labels I have code that will be executed when the page is fully loaded.
This is my code:
func...
Is it possible to clone a Date() in Javascript ? That is, from a date variable, create another variable that has the same date.
In the following code you can see that when comparing fecha_1 and fecha_2 it gives false...
I'm trying to do a kind of filter of an array in JavaScript by means of an html checkbox, when it is checked look for the indexes that start with "Motorola", the subject is like that, find them but show them as -1 or 0, I'm stuck, I do not know...