Questions tagged as 'javascript'

1
answer

Jaax-jquery Status "processing" for Pace.js bar

I'm using pace.js (which is like the top loading bar from youtube) for the loading bar on my web page, and to detect the ajax requests I use: $(document).ajaxStart(function() { Pace.restart(); }); Which executes the pause bar when the reque...
asked by 03.02.2017 / 18:54
1
answer

SyntaxError: unterminated string literal

I have a textarea that is populated with mysql data using .val () It turns out that when writing line breaks or spaces in that textarea, it returns the error SyntaxError: unterminated string literal. so I read here because I have...
asked by 03.02.2017 / 19:43
1
answer

I update a js file on the server but then the file still appears the same [closed]

Hello with the filezilla I have updated a javascript file but then in the console the same error appears and the file appears the same. I'm using wordpress, but I do not think that's the problem, I've closed and reopened the firefox and nothing...
asked by 08.01.2017 / 11:12
4
answers

what is missing so that the result is equal to that of the example

function armarTexto(arreglo){ var resultado=""; for (var i in arreglo){ resultado+= "propiedad"+i+"->"+arreglo[i]+";"; } return resultado; } What is the error?     
asked by 10.01.2017 / 02:32
1
answer

Something similar to XAMPP to use with Electron?

My idea is to create a local Crud with relational databases The SQL Express program allows me to create a server and connect to an existing database. Is there an alternative for Express itself to serve an SQL database? o Is there a...
asked by 08.01.2017 / 23:19
1
answer

Error with IndexedDB Object Store

I'm doing an exercise to learn the IndexedDB API of html5. I am running the following code and it gives me an error that I do not understand what it is. Could you help me solve it? The error he gives me is:    "Uncaught DOMException: Faile...
asked by 16.01.2017 / 12:39
4
answers

Validate dates with JavaScript

I have a problem when validating dates using JavaScript. I have the following form: <tr> <td> <input type="date" name="fecha1" value="<?php echo date($fecha1);?>"> </td> </tr> <tr>...
asked by 16.01.2017 / 18:07
2
answers

Fill a select from mysql with php

I need to show a select with a quantity of data from a table, and that on clicking I can load a value (the id ). I come from VB6 where it was quite easy, here I see that it has some more lap. For aesthetic reasons I got a cod...
asked by 16.01.2017 / 13:44
2
answers

Problem with position relative and responsive

I am developing an interactive map with <div> instead of the <map> tag but I have a problem when it works with responsive. That is to say, when I shrink the explorer the capsules are out of phase and I do not know how I...
asked by 17.01.2017 / 19:48
2
answers

Send data from a table in a modal to a php table using php and jquery

I have a bootstrap modal to which I load data from my database in mysql what I want it to do, is that by clicking on the add button I add the product of the modal row to a table in php in another page and when I gave it to another product, I add...
asked by 16.01.2017 / 01:09