0
votes
3answers
19 views

jQuery wait for an AJAX request to be completed before refreshing the page

I've got the following jQuery: $("#delete_products").click(function() { $(":checkbox:checked").each(function() { var pid = $(this).val(); $.get('delete_product.php',{pid: pid}); ...
0
votes
1answer
28 views

Submitting form via POST with jQuery and Ajax

I am trying to POST data from a form using jQuery & Ajax. However, when I check on my PHP to see if the form has been "submitted", it shows it has not because the MySQL code does not run. I am ...
0
votes
1answer
40 views

django ajax runtime error - URL doesn't end in slash

I am practicing from a tutorial where I have reached to create a search box with jquery and ajax. Every thing is going good, except, when i press any key in the search, I get an error, ...
0
votes
1answer
44 views

Send AJAX request with jQuery on Click

I am trying to send an Ajax request after a link is clicked on my page. My setup is like this: Someone clicks on a link that displays a modal popup. It then asks them to "Confirm" their action by ...
1
vote
3answers
341 views

Passing form array data through jQuery AJAX

I have a form that allows you to add multiple listings at one time. I also have to pass through an md5check. I.E.) <select name="master_id"></select> <select ...
0
votes
3answers
36 views

In AJAX, do I have to init the class?

I am trying to do something with out a page refresh (but I think the way I am going about it, will require a page refresh. The ultimate goal is to not have one. I have two things wrong, one is basic ...
0
votes
1answer
75 views

Get the data that is being loaded by jquery in PHP CodeIgniter

I have this dropdown menu using form_helper in CodeIgniter: <?php if($materialType): ?> <?php $material_options = array(); foreach($materialType as $rows){ ...
0
votes
0answers
12 views

jQgrid's gridComplete event is firing but loadComplete is not firing… why?

In my ASP.NET project I am integrating jQgrid to show data. My Problem is loadComplete event is not firing. My entire jQgrid code is as follows: function getData(jqGridParams) { var ...
0
votes
2answers
58 views

How to load jquery using pure javascript and use the loaded jquery for ajax request

I am not a pure javascript coder and I want to leverage on JQuery. I am doing an analytic for a client who has many sub websites that belongs to his clients. He wants to do a reporting feature just ...
0
votes
1answer
15 views

Display all Archives

Actually I am new on WordPress ,I have create few posts in latest news section(CPT) and I want to show its all posts as archive of custom post type ,Its showing only of the July month archives so as ...
0
votes
0answers
13 views

jQuery nicEdit with jQuery form plugin

Im using jQuery nicEdit with jQuery form plugin. But nicEdit doesn't seems to pass the data when using with jQuery form plugin. Here is my code jQuery From Code $(document).ready(function() { ...
0
votes
0answers
17 views

search external html files for text content

I have do some research about searching html text content and highlight it. I found window.find method (for Browser that support) and TextRange methods (for IE) It work well! but my problem is ... ...
3
votes
2answers
2k views

jquery ajax call not asynchronous

I am fresh to jQuery's implementation of it's AJAX methods. I have a simple setup that accesses two different pages, one which takes 10 seconds to complete (I have a timer set on it) and one which ...
0
votes
0answers
60 views

What's the best way to display div and other elements dynamically and then destroy them? [on hold]

As the title states, I want to create a div (900px*400px), and add fieldsets, divs, and other elements in it. So, the scenario is, I have a table with many rows. When I select a row, I want the div to ...
0
votes
1answer
20 views

Error in making cross domain request using jquery for json content

I am trying to call a service which returns the data in json format. I am using jquery-ajax request to get that response data. $('#butCallAjax').click(function () { $.ajax({ ...

1 2 3 4 5 655
15 30 50 per page