Questions tagged as 'jquery'

1
answer

Dialog to feed form field

In my page there are fields that are tabulated data, where the user should select an existing data in the table For a simple case, I'm using <select><option> of html fed with a table reading via php , however I...
asked by 04.09.2014 / 19:19
1
answer

Return jSON to a variable

I have a PHP code that creates a jSON: <?php $array3 = array(array('0,1300', 'Thalita', 'Nicole')); echo json_encode($array3); ?> And I have another code that is in jQuery that forms a graphic, with the following settings: var d1...
asked by 13.07.2014 / 20:49
3
answers

Mouseover effect with jQuery

I'm jquery in jquery and need to create a simple way to detect mouseenter, or hover elements with a same class. I created a menu with four buttons, all with the same class, so I put the mouse over one of them giving an APPEND with a variable...
asked by 16.07.2014 / 22:43
1
answer

.load does not work if element is already loaded

I have the following problem. I'm using .load to perform an action after loading an iframe $(document).ready(function() { $('iframe').on('load',function() { $('#diviframe').fadeTo(200,1); }); }); Everything works fine, exce...
asked by 17.07.2014 / 03:12
4
answers

Click event only works the first time

I've tried to find it elsewhere, but I did not find a solution that worked for me. The site is this: link These 3 squares at the top are places for the photos of the services provided to the last 3 clients (shown in slideshow). When I cl...
asked by 14.08.2014 / 17:00
1
answer

Carousel or Cycle displaying 6 elements in grid format

In the HTML code below, I have a listing of images within a container . I'd like to limit the display of these images to a table of 2 rows and 3 columns and page to look better. <div class="container"> <a href="#"><img...
asked by 13.08.2014 / 17:05
1
answer

Links to Tabs in Jquery

I have problems with next example . I want to add Links from another page, with href. When I clicked on these links, it would automatically open the TAB, is it possible? First page where I have links <a href="www.site.com/?page=about...
asked by 03.11.2014 / 19:20
1
answer

Callback of ajax using Spring MVC does not work

Well, I'm trying to make a simple AJAX call (which already works), but callback is not "triggered": $('#negotiation-status').on('click', '#button-add-destination', function (e){ var departure = $('#input-departure').val(); v...
asked by 03.11.2014 / 01:12
2
answers

jQuery .click () event, does not work with tag button (with Bootstrap 3)

I have a website with 2 files (index.php and modals.php). In index.php I use include("modals.php"); and in modals.php I have several modals that are generated dynamically, according to the information in DB. In modals.php I have 2 butt...
asked by 07.06.2014 / 20:33
1
answer

HTML / JavaScript Connection WebService C #

I'm trying to make a connection to the bank using web service. I came up with an example where I created the sum and multiply functions in my WebService, but I'm having difficulty connecting my (HTML / JavaScript) to my WebService (C #). I...
asked by 06.06.2014 / 21:34