Questions tagged as 'jquery'

1
answer

input inserted with "append" is not "recognized"

To try to make a form a little more dynamic! However, when adding new inputs with append of javascript, it is not recognized. And the effect is not realized. The effect in question is the redisplay of the text typed in the input A_1 in...
asked by 17.08.2015 / 04:00
1
answer

PHP Ajax - combobox state - cities

I want to do a select where, in a combobox, I select the state and with that open a new combobox with the respective cities of this state. I have this divided into two files: estado.php //conexao com o banco... $rs = mysql_query("select...
asked by 18.08.2015 / 15:05
2
answers

How do I get value in the td tag in jquery?

How do I get the value 1 and manipulate it, by jquery, that is inside the td tag (I want this value to increase as I click an id = 'add-row' button): <td>1</td>     
asked by 18.10.2015 / 20:36
1
answer

Jquery: Mask does not turn off

I can not type anything inside a textbox field that I put a date mask on, it will not let me delete or type it over, it always stays 11/11/1111 Here are the codes I put: Everything I'm importing: <script src="~/Scripts/jquery-1.10...
asked by 16.07.2015 / 17:21
2
answers

How to validate drop-down with jquery-validation

I'm trying to validate a drop-down list with jquery-validation and I could not, I took an example and tried to adapt my need, I did this: The form that triggers validation: <form class="form-horizontal" id="frmFaseObrigatoria" action=""...
asked by 24.08.2015 / 13:52
1
answer

Checkbox Conflicting with Paging

I'm trying to use bootstrap-table to create some filters in a table, in the first column it has a checkbox , which when selected a JQuery function copies the row of the column and adds it to another table, when it takes the s...
asked by 01.10.2015 / 15:11
1
answer

Button action after clicking - jQuery

I have a button that when clicked it closes the modal, in fact it does an action with CSS causing div to disappear, being just the button to be clicked again and open the modal. But I'm not able to create a new action on the same button,...
asked by 01.10.2015 / 00:57
1
answer

Send form without reloading the page being from different domains

I need to make a method that does not reload the page and send the data to a server in another domain. But I'm having problems with XMLHttpRequest . Does anyone know any method to do this and can send the data to the script PHP that is o...
asked by 13.07.2015 / 18:08
1
answer

pass actionlink parameters to jquery function

How do I pass parameters from an ActionLink from a grid to a jquery function? This is ActionLink: gridPortfolio.Column( format: @<text> @Html.ActionLink("Delete", "DeleteData", new {id = item.CD_PORTFOLIO, par = "PO"}, new { @onClick...
asked by 23.06.2015 / 15:47
1
answer

Retrieve data in form in jQuery

call.js function clienteChange() { var id = $('#idCliente').val(); $.ajax({ url:"/Entregas/clientes.endereco.php?id=" + id, dataType : 'json', success:function(result) { $('[name="cham_endereco[]"]')....
asked by 23.06.2015 / 23:46