All Questions
Tagged with jquery-css or jquery
1,036,184 questions
-5
votes
0
answers
26
views
How to avoid missing parts functions of code when push changes on git source control? [closed]
I work on source control git I have issue missing function PRINT_DEGREE_EQUATION_Both_Lang on jQuery .
Current Work and Issue:
I am working with Git for source control.
I found an issue with the ...
-1
votes
0
answers
30
views
Tell tablesorter plugin to not use 'and' and 'or' as logical operators in filtering
Tablesorter's column filtering is behaving erratically because it is treating 'and' and 'or' as logical operators rather than just plain text. I've been reading the docs here and can't see how to ...
0
votes
0
answers
18
views
How to acheive both fixedColumn and colresize in Jquery datatable
I'm trying to implement both column resizing and fixed columns in a jQuery DataTable. I'm using the ColResize plugin, which works fine for column resizing. However, when I enable fixed columns, the ...
0
votes
0
answers
11
views
Colresize option on Jquery Data table for fixed column
I have implemented jQuery DataTables on a Visualforce page and am currently using the FixedHeader and FixedColumns extensions. Now, I’m trying to implement column resizing functionality, but I am ...
1
vote
3
answers
71
views
Removing blank <tr> rows left after deleting table content
I'm writing a Tampermonkey script that removes rows from a table on RateYourMusic voting pages if the descriptor is 'scary', 'disturbing', or 'macabre'. That part works — but the blank rows that ...
-1
votes
0
answers
55
views
Issue on iPhone: "Can't open this page" Error — Triggered During Navigation Menu Events [closed]
$(document).off('click', '.hamburgerLink').on('click', '.hamburgerLink', function (e) {
e.preventDefault();
e.stopImmediatePropagation();
const isMobile = $(window).width() <...
1
vote
1
answer
40
views
AutoFill WooCommerce Checkout fields from custom query string
I've been creating an autofill checkout pile of code for WooCommerce so that when I get people from my software to get a link to my site to purchase something. But I've been having trouble getting to ...
0
votes
1
answer
37
views
DataTables loses selected checkboxes across pages when generating custom PDF with jQuery
I'm using DataTables with pagination and checkboxes to allow users to select multiple banners. Upon clicking "Generate Proposal", I collect all checked rows, generate HTML, and convert it to ...
-2
votes
0
answers
56
views
My controller is not returning response to ajax [closed]
I have a form in several tabs to store patient data, when i click a button i save the data via ajax, and it will automatically go to the next tab
My problem is, the data can be saved in the database, ...
0
votes
1
answer
51
views
Adding a PDF file to a zip file containing images with JSZIP and JQUERY
I create a zip file containing images (with their urls extracted server-side via classic asp code) and it works fine.
I was inspired by this excellent example [https://jsfiddle.net/jaitsujin/zrdgsjht/]...
-1
votes
1
answer
39
views
Issue with Switching and Adding Classes to Elements on Mouse Click
I'm encountering a problem while trying to switch and add classes to elements when a mouse click event occurs. Likewise I have multiple "li" elements. I want to add "class = subdrop ...
0
votes
1
answer
72
views
Flipbook only working in inspect element mode and on mobile, but not on laptop
So I wanted to code an interactive flipbook to show my magazine design, but the flipbook only works when I go in Inspect Element mode, or when I open my website on mobile. I'm a beginner coder and ...
0
votes
1
answer
53
views
MouseWheel Doesn't Scroll Back and Forth
I'm using this script for mousewheel. What I have tried only works one way. Instead of scroll up and down it just Scrolls forward. What I want it to do is change the cursor Forwards and Backwards. ...
0
votes
0
answers
60
views
How to reference original interface that was extended in TypeScript?
I'm working on better types for jQuery Terminal. This is d.ts file I have so far:
declare module 'jquery.terminal' {
...
export interface JQueryStatic {
omap(object: { [key: string]: ...
0
votes
1
answer
59
views
Razor - Convert DataTable to Array in JavaScript
I have a datatable in Razor Project with rows containing id, name, title, parent, and other fields. I need to bind a JavaScript array dynamically, but I tried this code and got an error. Please help.
...