Questions tagged as 'jquery'

5
answers

Result: [object], [object] when importing a JSON file

I have a problem getting data from a JSON file, when I try to get the data from this file, I get as a result: [object], [object] { "categories": [ { "categori_id": 1, "name": "drinks" }, { "categori_id": 2,...
asked by 19.10.2016 / 14:47
2
answers

Error: Uncaught TypeError: url.indexOf is not a function by Jquery

In the browser, I check in inspect item, and I get the following error:    Uncaught TypeError: url.indexOf is not a function I imagine it's because of a function I use Jquery, which is the following: var baseUrl = '<%= ResolveUrl("~/...
asked by 19.08.2016 / 04:41
2
answers

How to validate array checkbox

What a good day, someone could tell me how it can be done so that when I press the "DOWNLOAD" button if it is empty that does not redirect me to the other page and if at least there is a checkbox activated and press "DOWNLOAD DATA" if you...
asked by 24.08.2016 / 20:32
1
answer

Jquery Zoom Elevate plugin - Can it be implemented with a slideshow and mouse whell? [closed]

I need to find this plugin, having an image with the mouse allows me to zoom IN / OUT, showing a specific area. Here is an example of a page that uses this methodology in the images: link Place the mouse over the image and move the mouse...
asked by 20.12.2016 / 15:31
2
answers

Control of the keyboard with jquery to control numbers?

if (event.shiftKey) event.preventDefault(); } if (event.keyCode == 46 || event.keyCode == 8 || event.keyCode == 9) { } else { if (event.keyCode < 95) { if (event.keyCode < 48 || event.keyCode > 57) {...
asked by 16.12.2016 / 04:02
3
answers

print script tags on a div with jquery

I would like to know how to print script tags in the html with jquery     
asked by 03.08.2016 / 02:06
4
answers

How to put a full-screen background image

How can I make the image cover the entire screen size? I know that the property min-width and min-heigth but they do not make me achieve what I require. this is an example of a slider but I do not want a slider...
asked by 18.08.2016 / 00:33
3
answers

get input value in an HTML table that is generated dynamically?

I have an HTML table that dynamically filled with a table of a BD, to each row that returns I add an input text to add certain information for each row, one row has nothing to do with the others, now it has I have placed a different name for eac...
asked by 26.05.2016 / 20:52
3
answers

conditional Javascript

How can I do the following in a conditional? $(function () { $("[id*='_btnCheck']").click(function () { var buttonName = $(this).attr('id'); ChannelEve...
asked by 13.05.2016 / 00:11
3
answers

How to reload AJAX result without losing its value?

When I show a result with AJAX, how can I do so with a click button to update that result (not the page)? because if I do it with a reload with JAVASCRIPT, I reload the page and lose the result I got from AJAX     
asked by 16.06.2016 / 20:20