Questions tagged as 'jquery'

2
answers

Returning linked data

With the help of Milrak Pereira Pessoa and Wéllingthon M. de Souza, I edited my code ... I have a product code and it has 5 types and 5 descriptions. I'm trying to bring to the user the types and descriptions within the blank table. However, the...
asked by 20.10.2017 / 21:47
2
answers

Uncheck radio type input

I have two inputs of type radio . Here is the code below: <input type="radio" id="isgift0" name="isgift" value="0" class="arredondado" /> <label for="isgift0">Teste 1</label> <input type="radio" id="isgif...
asked by 27.10.2017 / 21:11
1
answer

Da to know the response time of an AJAX request with jQuery?

I wanted to know if there is a function that returns the AJAX request time in microseconds, as I need to get this value for the project I'm developing.     
asked by 29.07.2017 / 00:32
1
answer

Creating dynamic thumbs

How to site such as Youtube, Netflix and many other sites do this function? Are the thumbs created at the time of the mousemove / mouseenter in the progress bar, or have they already been created before and the player only displays? If they are...
asked by 28.11.2016 / 23:45
1
answer

How to apply html to text found in javascript?

I need to make use of regex in javascript The situation is this: I need to get the text that is with you inside the element with the text class. After picking up this text, I have to look at it if it contains certain words or expressions....
asked by 15.12.2016 / 13:19
1
answer

identify a click outside the div with jquery

Well I know how to identify a click on an element. I do this: // Fecha Sidenav $("#Close_Sidenav").click(function() { $("#mySidenav").hide(); }); But I need $("#mySidenav").hide() to run when I click on the Close_Sidenav e...
asked by 17.12.2016 / 11:04
1
answer

Code Improvement

I'm doing a college job, to show the benefit of user interactivity with jquery. The way I did it was: Content is responsible for the part of displaying the image and doing some onclick function. However, in content exchange I have to return the...
asked by 09.12.2016 / 18:24
1
answer

How to feed notifications in real time as a logged in user?

I'm wanting a system that keeps updating the logged in user to go showing the messages he receives. Taking into account that this system will have 250-500 concurrent users there, what is the best way to search the data in the database and update...
asked by 24.11.2016 / 18:05
3
answers

how to execute a specific button in a list of 5 identical buttons

I'm doing a dashboard with users and need an edit button. When the edit button runs it just makes code appear and disappear, but wanted to know if it's possible to execute jQuery code and select the button id. <aid="1" class="edit">E&l...
asked by 07.10.2016 / 12:34
1
answer

Problem with each jquery

I'm getting via JSON a array , I run it with .each() JQUERY , so I set my html, and put it in div within my page. Having said all this and done this: $.getJSON('http://localhost:8000/produtos', function(data) {...
asked by 10.10.2016 / 14:47