Questions tagged as 'jquery'

2
answers

How can I get the value inside this td

Hello. I need to get the value inside a <td> through its selector. This <td> contains the total value of a purchase (within a checkout). Using the console: document.querySelector(".monetary") In this case I g...
asked by 30.03.2016 / 17:25
1
answer

Scroll to the next section

I already researched in several places but until now I have not found how to do this effect. What I need is for the scroll to look exactly like this site: link That is, whenever the user scrolls the site will go to the next section....
asked by 17.03.2016 / 17:26
1
answer

Jquery - Check when a class is removed by the developer tool

How do I check when a class is removed by the developer tool with jquery?     
asked by 04.08.2015 / 20:35
1
answer

DropDownList in Cascade MVC 4

View: <asp:Content ID="Javascript" ContentPlaceHolderID="HeadContent" runat="server"> <script type="text/javascript"> $(document).ready(function () { $("#estados").change(function () { va...
asked by 23.06.2015 / 14:44
1
answer

Ajax Address Search with PHP

I have a form with the list of clients. When selecting the client, I want it to automatically fill in the address, number, neighborhood and city fields. I have Ajax, but I do not know how to work out the return of it. var id = $('#cliente')...
asked by 09.06.2015 / 19:22
1
answer

.each () terminate when the div is closed

I have the following problem, I have divs that have a dynamic amount of divs inside. <div class="grid-f"> <div class="col-4"></div> <div class="col-4"></div> <div class="col-4"></div> <div c...
asked by 04.02.2016 / 14:16
2
answers

Select text automatically

I'm trying to create a function that traverses any text by selecting letter by letter as the effect of you move the mouse by selecting a text slowly. I used select() but it selects all the text. Example: function SelectText(e...
asked by 19.11.2015 / 11:48
1
answer

Deezer API - JSON request error with $ .getJSON

When I try to perform a simple search in the Deezer API (Public Search API without Authentication Key) I get the following error message as a return: XMLHttpRequest cannot load http://api.deezer.com/search?q=Bang. No 'Access-Control-Allow-Or...
asked by 20.11.2015 / 06:19
1
answer

Click event on an SVG

I have a map of Brazil, in an SVG, where I would like to present a div to each state when clicking on it. I managed to work with color change with hover using ID of each state of Brazil: function highlight_map_states(){...
asked by 13.04.2015 / 23:53
1
answer

Reversing jquery effect

I'm learning Jquery. And I made the following code $(document).ready(function(){ $('html').click(function(){ $('.box').css("background-color", "#666"); $('.box').animate({"width":"400px"}, 1000);...
asked by 04.04.2015 / 05:06