All Questions
13,570 questions
0
votes
0
answers
12
views
Compare data in jqxgrid array to an array of data selected in a map
I have modified this jsfiddle with the code I am using located here
Gets the index of a row in the array
I am wanting grab the row indexes that match the const intersection values. Is there any way to ...
1
vote
1
answer
37
views
Drag and Drop Swap in cards is not working
here is my code, and i am trying to Drag a .card (which includes an image),Drop it onto another .card and swap their content so they switch places visually. But it is not happening and also not ...
0
votes
1
answer
38
views
Correct way to generate a nested array from an ajax call for google maps
I'm trying to generate a map of tradespeople nearby to the site visitor. I've figured out most of it and am stuck on the final part mainly due to gaps in knowledge when it comes to arrays, structures ...
-1
votes
1
answer
54
views
How to remove null rows from items array sent by Spotify API [duplicate]
I'm trying to implement an autocomplete feature to get suggestions of playlists from the Spotify API. I'm able to connect and get a response from Spotify, but some of the rows in their response are ...
-3
votes
1
answer
60
views
I can't add buttons with filling from JSON file
I have an html project to which I need to add 4 buttons filled from a JSON file using an array.
The parameters are taken depending on the link id.
<div class="d-flex justify-content-around ...
0
votes
0
answers
65
views
Query data from one table when a condition from another table is met
Currently I have a project in laravel but my programmer partner has disappeared and he is the one who is in charge of the heavy work, because I am less experienced.
I have a problem with a view, I ...
1
vote
0
answers
51
views
Get JQuery to give me the elements of an array from a list
I have an unodered list which uses JQuery to reorder the list. Each list item is made up of several parts:-
switch ($categ) {
case 'P':
$p1 = 'C';
$p2 = 'E';
break;
...
-2
votes
1
answer
59
views
getJSON loop in Jquery dosent return all objects
I have a specific problem.
I have one JSON file that contains all JSON files in a folder.
I am iterating through that in a function where i create an array,
I take that array and send it to another ...
0
votes
2
answers
61
views
set array items into separate variables
I am trying to set each item in an array into their own variables. Here is what the array looks like:
labels = ["label1", "label2", "label3", "label4", "...
-1
votes
1
answer
50
views
JS array is adding the first selected items value plus the new one with it
I have a bootstrap drown down that outputs data dynamically with values of 1-9.
Then I am attempting to grab the data of the selected dropdown item each time one is selected and push it to an array.
...
0
votes
0
answers
113
views
How to pass Array with Dropzone Form Data
I am using DropZone and trying to pass Array with the formData.append() for on("sending") method.
I couldnt find any example where we are passing additional data of List objects(except ...
1
vote
2
answers
65
views
Nan to sum array
I need to sum value of same id.
This is my code
var myarray = [
{"a25": "5000"},{"s36": "125"},{"d44": "15"},{"a25": "...
0
votes
0
answers
61
views
javascript accessing data outside of function [duplicate]
I'm having trouble figuring out how to access my data properly. I have the following code bit
$.each(response.data.tree, function (i) {
//We only want files
if (this.type == 'blob') {
//...
-1
votes
1
answer
130
views
Error on converting Json data to QR code using JS library
I'm trying to convert JSON data into a QR code, so when a user scans it, the JSON data should be displayed. I've been using the jquery.qrcode.min.js library for this. Here's an example of the JSON ...
1
vote
1
answer
62
views
How to populate data from json format into data table and keep datatable properties
I have been able to get data into data table from json format via ajax,But suddenly data table lost some properties that enable it to search and allow pagination on page. But the results can be viewed ...