Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
75 views

I'm learning how to call C# code from a razor page with AJAX, so please bear with me. In the html, I create a container of divs based on a foreach loop. The divs are created correctly and the modal ...
fdkgfosfskjdlsjdlkfsf's user avatar
0 votes
2 answers
42 views

simple pie chart example from google chart displaying pie chart vertically when onclick loaded by ajax , when same code loaded in simple web page displaying horizontally. <script type="text/...
user2069448's user avatar
0 votes
1 answer
30 views

I have the following code in plugin: php var_dump(is_admin());//false (just for test) if(is_admin()){ ... }else{ add_action('wp_ajax_mvp_reel_get_comments', 'mvp_reel_get_comments');//PROBLEM ...
Toniq's user avatar
  • 5,146
0 votes
1 answer
48 views

I have been porting my code to PhantomJs and have been having a hard time with using $.ajax in Jquery. My code runs perfectly when the function call is dropped. I am new-ish to JavaScript other than ...
Matthew Mills's user avatar
1 vote
0 answers
49 views

I’m building a custom WordPress plugin that loads math-based questions and answers using AJAX. These questions contain LaTeX-style MathJax expressions (e.g., $$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$$)...
Annant Srivastava's user avatar
1 vote
1 answer
77 views

Similar questions chrome mobile jquery ajax POST not working = Seems like it should be the same problem, but asker apparently was unable to reproduce after publishing to remote server. Context ...
owengall's user avatar
  • 495
0 votes
0 answers
185 views

I have attempted to create a custom Add to Cart button for the Dawn theme (using AJAX functionality) based on the dev notes for Cart API (https://shopify.dev/docs/api/ajax/reference/cart). I have been ...
Joe Plant's user avatar
0 votes
1 answer
176 views

I’m using DataTables with server side processing and an AJAX call to load the table's data based on a selected dimension. However, when the page first loads the table is not populated with data until ...
hawkihawk's user avatar
0 votes
2 answers
137 views

First, apologies in advance as I am a newbie when it comes to Ajax... I have looked at several coder sites for a working example of the code needed to process a simple text input and database response ...
Charles's user avatar
  • 34
1 vote
0 answers
12 views

Hi have A jsf page where there is a PF selectOneMenu . I simply want to update the model bean (SessionScoped) with value selected from user but it doesn't work : when I change value on page no setter ...
KronosOne's user avatar
  • 337
0 votes
1 answer
107 views

I recently upgraded my Spring Boot application from 1.5 to 3.4 and Java from 8 to 21. After the upgrade, an AJAX POST request to /set-preferences no longer reaches the controller. Instead, it seems to ...
user30002040's user avatar
1 vote
1 answer
93 views

How do I make and display a QR Code for our 2FA in our Perl based web application? My use case is to generate a 2FA QR Code based on an encrypted otpauth path that can be scanned by Google ...
Powermaster Prime's user avatar
0 votes
2 answers
167 views

When I try to execute datatable with ajax in the TeacherController function show(Teacher $teacher) with foreign_key, I get Ajax Error even though in AssistanceTeacherController it does work in its ...
Elard Guevara's user avatar
0 votes
0 answers
54 views

Problem Description: I am working on a POS system where I need to allow users to enable or disable the "Show Receipt" feature after completing a cash transaction. The receipt should only be ...
Mohamed Al Hamdhy's user avatar
0 votes
0 answers
82 views

I am making a website for a FiveM server. One of my pages on my website is CityLife.php. It will have a photo gallery of thumbnail images that when clicked opens up to the full size image in another ...
Pastor Karl's user avatar
0 votes
1 answer
50 views

I am using Fancybox for photo gallery. and using following code to update photo views on click with php mysql and ajax. I want to update views for images when previous or next button in opened ...
Sing O Song's user avatar
0 votes
0 answers
69 views

I have a 3rd party desktop application. This application allows one to add extensions based on html, css and javascript. I have such extension and they work fine in the current installed version of ...
beginner_'s user avatar
  • 7,652
0 votes
1 answer
55 views

How can I set a timeout for AJAX requests in Javascript without jquery? Is it done by setting up a timer and using cancelRequest? or a better way? Many thanks
Caleb Taylor's user avatar
-1 votes
1 answer
62 views

I'm trying to implement an autocomplete feature to get suggestions of playlists from the Spotify API. I'm able to connect and get a response from Spotify, but some of the rows in their response are ...
Antonio Romo's user avatar
0 votes
2 answers
72 views

Theres a website I need to scrape some data from using vba selenium chrome. Website loads a table with ajax, and I can wait for the table to fully load, however, I cannot access the loaded elements. ...
Daniel's user avatar
  • 954
0 votes
2 answers
61 views

So I have a div... <div id="holdmailings"> </div> when I click on a menu item I'm loading this into the DIV with an @Click on a menu item... if (msg == '...
BostonAreaHuman's user avatar
0 votes
1 answer
90 views

I made a code for woocommerce product listings with ajax load more by scroll and ajax filters by category - all works great, but there is one case, when it didn't. Only on the main shop page when I ...
Joint's user avatar
  • 1,226
2 votes
1 answer
64 views

I want to export data in Excel using jQuery export button for datatables and here I have fixed grand total row at the bottom of table. The issue is: when I do sorting and then I export data into Excel,...
MANSI's user avatar
  • 59
0 votes
0 answers
35 views

I am a beginner of php and I tried to write a php file to scrape data from internet and display it in the html file through ajax. My problem is: I get no problem when scraping data and storing them in ...
Lo Dennis's user avatar
0 votes
0 answers
57 views

I have this ajax call $.ajaxSetup({ data: {txtSearch: $('#txtSearch').val(), prefilter: $('#prefilter').val(),csrfmiddlewaretoken: '{{ csrf_token }}' },}); $.ajax({ type: &...
Nico44044's user avatar
  • 399