Skip to main content
0 votes
0 answers
10 views

What is different in my Ajax vs XMLHttpRequest Call that lets my Server understand Ajax but not XMLHttpRequest?

I have a very simple server call like this: [HttpPost] [AllowAnonymous] public JsonResult Test(TestRequestModel requestModel) { //do stuff return Json(new { result.Success }); } My ...
Bagzli's user avatar
  • 6,469
0 votes
0 answers
9 views

Updating a custom field value without manually saving in a WooCommerce admin product area

I would like to add the normal stock value of a product to the custom stock value that already has an order status (wc-on-hold and wc-processing). This works great, but only when I save the product ...
Erik's user avatar
  • 1
0 votes
0 answers
31 views

Laravel javascript variable get in blade file

I need get js var in view blade file. I got this one in Controller and got success in console in route file Route::post('/some-route', [Controller::class, 'someMethod']); Route::post('/some-route', '...
dimvolk's user avatar
  • 368
0 votes
0 answers
30 views

Custom Mini-Cart including a products slider with Add To Cart issues

I'm doing some customisation to the mini-cart. When a user adds a product to the cart, inside the mini-cart I'm creating a slider containing the added product's cross-sales. So for example, user adds ...
noob.js's user avatar
-3 votes
0 answers
16 views

how to do split in jquery? [duplicate]

some of the phone data in my table is 03121234567, some are 03121234567,05321234567 if there is no comma in the expression print option 1 if there is a comma, print first 1 and then 2. how do i do ...
Ilyas Aydoğdu's user avatar
0 votes
0 answers
15 views

Scrappinghub/splash is not rendering the dynamic content

Tried to use scrapy-splash, but at the moment of checking the image in my localhost:8050 interface (the port is being used with docker of the image scrapinghub/splash), every website i try is not ...
Nico Flor's user avatar
0 votes
0 answers
10 views

Ajax calls parallel instead of serial (but not when called from localhost)

I'm running a WCF Service on IIS. The Service uses "webHttpBinding" and <security mode="Transport"> <transport clientCredentialType="Windows" /> </...
Lopo's user avatar
  • 956
0 votes
0 answers
7 views

TypeScript: Progress Bar Timing Out and Pausing Unexpectedly

I'm implementing a progress bar in TypeScript using AJAX to fetch updates from the server. However, I'm encountering issues with the progress bar timing out and pausing unexpectedly. class ...
mlodhi's user avatar
  • 736
0 votes
1 answer
29 views

pass custom class with IFormFIle and List<object> via Ajax to .NET Core 8

I have a class PreventivoDS public class PreventivoDS { public int Id { get; set; } public string? CodPreventivo { get; set; } public string Data { get; set; } ...
Matteo Scipioni's user avatar
0 votes
1 answer
19 views

Webscrapping magento website. API calls with 200 empty response when no timestamp specified

Help on magento website for scrapping purpose I’m kinda new so sorry if some terms seem weird. I am trying for a personnal context to scrap data from the website Prolians https://www.prolians.fr/ ...
Robin's user avatar
  • 1
-3 votes
0 answers
48 views

PHP response to AJAX Callback printing to screen [closed]

I encountered this really strange issue where my php method is sending back a json response after successfully saving the record into the database but the response is being printed on the screen ...
Poorvi Yeluri's user avatar