Skip to main content
-2 votes
0 answers
13 views

I have this JS file: (function ($) { alert('A'); app.modals.ClassificationTreeModal = function () { var selectedId = []; var _stocktakingSessionsService = abp....
user123456's user avatar
  • 2,663
0 votes
1 answer
40 views

I use this lightweight plugin to display text continuation on hover : https://lukifer.github.io/HoverForMore.js/ I am using the jQuery each function to call all items and run this plugin on each one, ...
ehsan's user avatar
  • 38
0 votes
0 answers
21 views

The console log returns the values correctly, but I don't seem to be able to use the data in the rest of the script. What am I doing wrong? I've tried putting the var values into the var data = but ...
Ruth's user avatar
  • 79
Advice
0 votes
2 replies
32 views

I'm trying to use dataset content in my Javascript, but I can't get it to work. Is this even possible or has the content run too late? The values are being output in console correctly. // JavaScript ...
Ruth's user avatar
  • 79
Tooling
0 votes
3 replies
44 views

I’m trying to implement a real-time notification system in my Laravel application. The frontend uses jQuery, and the backend uses Laravel’s broadcasting system with Reverb (also tried with Octane and ...
Mohammad Fazal's user avatar
0 votes
1 answer
35 views

I'm using PHP8.1 and JQuery. I have a script with several links that each have an id that is a digit only. i.e: <a href="#" id="<?= $id ?>"><?= $student_name ?>&...
John Cowan's user avatar
  • 1,764
-6 votes
0 answers
82 views

Here is my code: let dateStr = m.status?.match(/at (.* GMT)/)?.[1] || m.dateTimeGMT; // Parse it safely const dateObj = new Date(dateStr); // Options for human-readable format const options = { ...
NIFDO.COM's user avatar
3 votes
1 answer
100 views

I am trying - and failing - to write JavaScript to click this button: The HTML for the button varies depending on the page Example 1 from this page: <span class="a-button-text" aria-...
Sockie's user avatar
  • 309
1 vote
1 answer
95 views

I have a jsp file which results in this HTML: <form id="paymentForm" action="submit_payment.form" method="post"> <div class="notvalid"> </...
runnerpaul's user avatar
  • 7,556
-1 votes
0 answers
21 views

My project had too many grid pages and it was quite the mess so I decided to make one sole generic grid file with configurations and each time the same page loads different configs depending on the ...
Scarlet D.'s user avatar
9 votes
1 answer
754 views

This is as much a math question as it is a coding question. Picture this scenario: ___________________ | | (#1) | Center ...
James H's user avatar
  • 93
1 vote
2 answers
88 views

I have four Data-tables tables on a page, each displaying different financial metrics about the same set of stocks. Each table shares a common Ticker column, and every table has the same number of ...
dawnkills's user avatar
-4 votes
0 answers
60 views

To set an image's src to delay a loading of the source, you can do this with in the html <img src="#" delayedsrc="./imagesgeneral/iconhome.png" /> in the javascript $('img[...
Rewind's user avatar
  • 2,854