Questions tagged as 'jquery'

1
answer

How to put a link in jquery table that opens a pdf using generic handler?

good morning: I have the following code: generic handler public void ProcessRequest(HttpContext context) { string nombreArchivo,tipo; // int id = 12725; NOTA:"Si hago asi no marca error y si me muestra el pdf" int id = int.Parse(cont...
asked by 27.06.2016 / 17:48
2
answers

Stop SetTimeOut if the item is no longer clicked before the time out acts

I'm doing a virtual keyboard and I want to make that when I hold down a vowel for at least 500ms, I'll open an article that shows the different types of accents. However, I want your behavior to be realistic. If, for example, I stop pressing the...
asked by 11.07.2016 / 01:17
1
answer

Problem with loading jquery plugin in Angular (ngroute)

I'm wanting to use owl slider in some directive, or in some angled view but it's not working properly, since the HTML is rendered but the jQuery is not acting. A Owl slider, I put it in a directive, but it's not loading me. When I put it out...
asked by 12.07.2016 / 06:12
2
answers

How can I validate from jquery a form that is repeated several times within a while cycle?

I am trying to validate a form that has inputs (radio type) that are repeated through a while cycle while data is being found in the db. I can not validate these dynamic forms using jQuery because if I let it validate only the input th...
asked by 28.09.2016 / 17:56
1
answer

Find is not a function

I'm working with node js and in the model I get this error    TypeError: $ .find is not a function I use jquery to do the find models.Account.authenticate = function(login, password, cb){ var hashpass = common.hash(password, 'user.sal...
asked by 21.07.2016 / 20:48
1
answer

Simulate ajax synchronous in a loop

We already know that ajax is asynchronous and the only way to do it synchronously is by setting the async: false option. What I want to do is something like that for (var fact in facturas ) { sendEmailAJAX(facturas[fact]); co...
asked by 04.04.2017 / 17:47
1
answer

Restart time with jquery from a website

$(".intime2").delay(2000).fadeIn(0); setInterval(function() { $('.outtime40').fadeOut(0); }, 40000); I need to be able to restart the time by going over a div in a jquery so that the time-delay functions are restarted...
asked by 01.04.2016 / 02:53
1
answer

Collection Nested Backbone

I ask for your help to help me get the value of a key that is nested, when I render, it shows me the first level but I do not know how to get to the more internal nodes, the model is: { "ciudadDepartamento": "Bogotá", "estadoDepartamento": t...
asked by 15.05.2016 / 21:50
2
answers

AJAX response problem with Symfony2 (PHP)

I have a problem with the code: $cadenaScroll_respuesta.="<li> <div id='usuario-respond'><div id='imagen-usuario-respond' ><ul> <li id='nombreUsuario'> <b>".$respuesta->getUsuario()." </b></li>...
asked by 23.05.2016 / 20:48
1
answer

How to consume a web service in jQuery

I have a client in C # that consumes a web service by passing several parameters. What I'm looking to do is translate this call that is made in C # and make it in jQuery. I have searched several forums but the information is not complete....
asked by 26.04.2016 / 21:22