Questions tagged as 'jquery'

1
answer

Element with onClick and onDblClick

I have a list and in this list I am trying to distinguish a click from a double click I initially used HTML : <a class = "alinhar1" href="#" ondblclick="list.oneDblClick();" onClick="list.oneClick();"> But whenever I double c...
asked by 04.06.2015 / 12:53
1
answer

How to know when Collapsible expands or closes?

I have a collapsible , and when it is expanded I want to add elements in it, and when it is collapsed I want to delete the elements. I am currently using the following form: <div id="expansorTurma" data-role="collapsible"> <h4 i...
asked by 05.06.2015 / 00:29
1
answer

How to use inverted function in this case of jquery?

// Aplicando CSS na Página de Eventos $(".descr-eventos").on('mouseover', function(){ $(this).find('.link-evento').addClass('blank'); }, function(){ $(this).find('.link-evento').removeClass('blank'); }); I want when I remove the mou...
asked by 20.07.2015 / 14:51
1
answer

Load combobox with $ .getJSON data

I'm doing a method that goes in the DB does a query and returns the codes. With these codes I load Combobox with their respective items. There are times when it fits right in, there are times when it does not fill ... Any ideas?...
asked by 20.05.2015 / 23:04
1
answer

Repeat query with javascript

I need to update a div constantly and however this code below only updates once, I would like instructions how to do it always update to a certain time so that the same action be repeated countless times. <!DOCTYPE html> <html>...
asked by 25.05.2015 / 00:39
1
answer

Upload error [function.move-uploaded-file]: failed to open stream: Permission denied [duplicate]

I'm trying to make a record where I have uploads of images and need to save all this content in different tables. The text part is saving perfectly however the photo part is still not saving. Here is the PHP code that saves the data...
asked by 26.06.2015 / 18:14
1
answer

Is it possible to get the name and value of all sessions by javascript?

I'm creating several sessions, and would like to get the name and value of all of them through JavaScript. Home When creating two Sessions in Asp.Net MVC, for example: Session["usuario"] = "user"; Session["tipo"] = "comum"; I'd like to get...
asked by 24.06.2015 / 23:31
1
answer

jLinq - Perform dynamic query picking values from 'Select'

I'm using jLinq to search for a Array of Objetos I would like this search to be dynamic, taking the values of Selects My example: <select id="firt"><option>Select 1</option></select> <selec...
asked by 24.06.2015 / 20:03
1
answer

Hover problem in system rating

Good evening, And the following made a rating system for my site it is working well just missing something that I am not able to do. I have a rating of 1 to 10 which looks like 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5 and 5 this is just working wa...
asked by 04.05.2015 / 23:41
1
answer

For + slideToggle in Jquery does not work

Can anyone explain why my code does not work? I do not know exactly how many divs will generate, but the maximum is 25. So I wanted each click button to specifically open the div "glue" attached to it. In my thinking, I put a...
asked by 06.05.2015 / 20:34