Questions tagged as 'jquery'

3
answers

Exchanging CSS classes with simple JQuery function

I have a dropdown menu and in the corner of <li> I have an icon of Font Awesome that symbolizes an upside-down arrow ( fa fa-level-up pull-right ) and when the user clicks on that <li> and opens the dropdow...
asked by 08.08.2017 / 00:21
2
answers

Find out if something has changed in the form using jQuery

Hello, I would like to know if there is any method in jQuery that returns whether there were changes to the initial form or not. For example, I have 3 empty fields, and so I modify one of them. jQuery return something to me ... Thank you.   ...
asked by 23.06.2015 / 21:13
2
answers

Change table structure using JQUERY

I'm not very knowledgeable about JS, but I need to solve a problem using Jquery. I am making a list of contacts using Bootstrap and a plugin called Bootstrap-Table that manages the filtering and paging issue and assembles the table automatica...
asked by 26.06.2015 / 23:23
3
answers

Exchanging link as input text

I need to create a input of text that as I enter a quantity it changes the link of a button, but only a part of the link. Ex :. I have this link: link I want that whenever the person places 1,2,3,4 ... in the input it changes the va...
asked by 08.07.2015 / 14:29
2
answers

Div or image appears only inside another

I would like to put a div or an image (preferably div, if it is possible) inside another one, for example, I wanted the Div not to appear outside the other if it is surpassing behind. href="https://i.stack.imgur.com/XBKF2.png"> In the examp...
asked by 07.07.2016 / 16:22
3
answers

How to define an attribute to the parent form of a given input?

I have the following form: <form id="excluir" class="form-horizontal" role="form" method="POST"> <input type="hidden" name="_token" value="s59zI8Ehg0dw2CVnmqpfGgyyuHKJDHSF"> <input type="hidden" name="_method" value="DEL...
asked by 19.12.2016 / 03:44
1
answer

How to remove a single element having several with the same id

I'm using a jQuery to flip an element and would like the feature to remove the cloned element. When I try to remove the element, for some reason, it does not work because <button> is between <span class='input-group-btn'>...
asked by 08.05.2015 / 18:46
2
answers

Taking text of the different inputs

I need to get different input text, I have already tried and right for some, below a list of those that worked. lbl_DteHora_Reu slc_Local_Reu slc_Palavra_Reu slc_QuebraGelo_Reu slc_Louvor_Reu HTML: <label class="item i...
asked by 29.09.2015 / 14:03
2
answers

How to validate mail with Jquery and Ajax [duplicate]

I have form where I log in to access a restricted area of my website, but now I need to validate the typed e-mail, / em> that I currently have and could not perform validation. What I have is this: <!-- language: lang-js -->...
asked by 30.11.2015 / 14:15
1
answer

How to put the Ajax return [form] inside a div?

$.ajax({ url: 'executa.php', type: 'POST', data: {emailDestino: emailDestino}, dataType: 'html', success: function(data) { $('#notifyInscrito').appendTo(data); } }); I'm going there in the executa.php...
asked by 26.11.2015 / 01:59