Questions tagged as 'jquery'

1
answer

Access the attributes of a web framework

I want to access the attributes that are loaded in a <iframe> , but I get this error:    Error: Permission denied to access property I understand that it is because of the crossing of domains, but I do not know how to solve it...
asked by 29.01.2017 / 23:36
3
answers

Recover json ajax array

I'm trying to recover the values that passed through an array in json to ajax. this is the code I use: function CompletarEan(cod) { $.ajax({ url: "./Scripts/Phps/Autocompletar.php?pag=autocompletar_Ean&term="+cod, ty...
asked by 04.10.2017 / 21:49
2
answers

restart table when closing modal

I have this code var d = ""; $("#bntParametro").click(function () { var ajaxParam = null; ajaxParam = $.ajax({ type: "POST", url: "sendTophp/consultarParametros.php", }).done(function (param)...
asked by 27.09.2018 / 19:00
3
answers

Do not add selected item from a list box

There are two list boxes, one with templates to choose from and another with templates to invoice. With a button it is about adding to the second list box the selected option of the first one, but it does not do anything. <br><br>...
asked by 10.10.2018 / 07:45
5
answers

removeClass JQUERY does not work

I'm using ASP.NET to make a form, but I need to remove the class disable , I'm using JQUERY , and I need to remove it to several labels that make up my object, but I'm not having much success. The objects that I want to affect are...
asked by 08.06.2018 / 18:15
2
answers

problems fadeToggle toggle of jquery

As you know, the function toggle was obsolete in the version of jquery 3.1 I remember that in previous versions I could do the following $("button").toggle(function(){ $("p").hide()//just an example hide p tags $("div").html("G...
asked by 18.09.2018 / 06:18
3
answers

Mark checkbox with a jquery button

Hello greetings to all my friends. I have a little question. I want to select progressively the checkboxes that appear in the image when I press a button. For example, pressing the button selects the first checkbox, if you press it again, the...
asked by 31.10.2018 / 19:43
1
answer

Why is boostrap 3.3.7 and jquery 3.1.1 not compatible?

What I want to do is put a nav bar in my app, but when I put the jquery in v 3.1.1 and the boostrap in v 3.3.7 I do not deploy the nav bar. Add the boostrap. Css, the boostrap. Js and the jquery from his cdn. I put the jquery first and then the...
asked by 09.04.2018 / 02:10
3
answers

Get the value of a drop-down (select) with JQuery

I have this HTML code to create a combobox from an enumerated Enumerated public enum tipoFormasPago { [Display(Name = "Efectivo")] E, [Display(Name = "Tarjeta")] T, [Display(Name = "Paypal")] P } HTML code &...
asked by 26.05.2017 / 13:32
4
answers

parent children from the second tr

How can I use the following code to change the ids from the second tr or omit the first tr, since the table has an initial tr that shows the names of the columns which do not handle data. parent.children("tbody").children("tr").each(function(e...
asked by 19.01.2018 / 15:21