Questions tagged as 'jquery'

1
answer

How to make the view that I am loading in the controller run

I have this function in my view $.ajax({<br> type: "POST", url: url, <br> data: {id: id}, }) Where url contains an address to the controlled I am using Codeigniter now in the controller...
asked by 04.11.2016 / 21:09
1
answer

JavaScript arrays object

I'm doing a sales system in php and mysql. The database operations I do with jquery ajax. I save header and detail of the sale separately, the detail is shown in a grid of jqwidgets from which I extract its datasource in as an object of arrays....
asked by 20.10.2016 / 17:43
3
answers

Error CORS jquery, codeigniter, apache

Hi, I have a simple application crud in codeigniter and sql server 2000, in which all queries to the database are made through jquery ajax. I developed it on my local PC windows 8 with xampp, and everything works fine, until I wanted to upload m...
asked by 18.10.2016 / 14:00
1
answer

Jquery and JSON - I can not show the data

I'm learning jquery and trying to understand Json. I have a page called index.php where when loading, a query of all the products is generated by php, it dynamically arms me an amount of divs (.boxes) and shows them to me. The iss...
asked by 18.10.2016 / 15:52
2
answers

Active Class with a NavBar - Bootstrap3

Good morning everyone, the post is to ask for help with a project I am preparing for the institute, we are asked to make a help desk system (handling of attention tickets) and a scorecard (reports in statistical tables, etc.) I am working on...
asked by 14.12.2016 / 20:14
2
answers

Scroll down when I click

I want the scroll to go to the bottom of the site (or at least 100px) when I click on the calendar, to be able to see the reservation options. I'm using the following code, but it does not do anything and in the Chrome debugger it does not sh...
asked by 13.12.2016 / 19:37
3
answers

Remove element from the DOM and List with jquery

I would like to delete the record that I upload with an img X, when I upload the file this is done well, showing a span with the name of the file in a label "<span>"+urls[i].split('/').pop()+"<a id="+idMinuta+" href=\"javascript:Elimi...
asked by 04.10.2016 / 16:22
1
answer

jplayer does not work on safari [closed]

I downloaded the jplayer v2.9.2 with JQuery v1.11.1 which has worked correctly in all browsers, except in safari, I have navigated to find a solution but it does not work for me, this is the code I am using. $(document).ready(function(){ new...
asked by 13.10.2016 / 18:54
2
answers

When I update a Div with jQuery or AJAX I duplicate the page

I'm trying to update a div with jQuery here the javascript code; <script> $(document).ready(function(){ setInterval(loadClima,5000); }); function loadClima(){ $("#coches").load("dashboard.php"); } </script> here I put the di...
asked by 15.10.2016 / 22:59
3
answers

The click event does not fire after reloading the content by an AJAX request in Symfony2

I have the following controller : public function indexAction(Request $request) { if (!$request->isXmlHttpRequest()) { $this->denyAccessUnlessGranted('ROLE_ESP_NAC', null, 'Imposible acceder a este recurs...
asked by 02.10.2016 / 01:34