jquery-confirm is a jQuery plugin that provides a vast set of features like auto-close, ajax-loading, themes and animations.
Questions tagged [jquery-confirm]
40 questions
0
votes
1 answer
Editing form with jquery-confirm
I'm using jquery-confirm, and I need to capture the name of the element which i clicked to edit.
jQuery and jQuery-confirm
…

dududornelees
- 177
- 3
- 13
0
votes
1 answer
Add content from object to JQUERY-CONFIRM
I have an object and want to add the details of that to the content of JQUERY-CONFIRM.
This is my code:
const obj = {
'alphabets':['abc', 'xyz', 'pqr'],
'colors':['red', 'blue', 'purple']
}
$.dialog({
title: 'Test',
columnClass:…

nb_nb_nb
- 1,243
- 11
- 36
0
votes
2 answers
jQuery-confirm prevent scroll on callerElement.hide()
I have a problem where my page scroll to the top after i hide the button element which opened the confirm dialog.
After a confirm doalog closes it scroll back scroll to the caller element. If no such element, scroll to the top instead. Can I prevent…

Jonas Holm
- 53
- 1
- 1
- 11
0
votes
2 answers
How to make the scrollbar of a Jquery-Confirm wider?
I'm trying to make the scrollbar wider since the default one is really inconvenient to click and move faster when there is much content to scroll down. Consider you instantiate a confirm:
var self = this;
$.confirm({
title: "This is the…

gal007
- 6,911
- 8
- 47
- 70
0
votes
0 answers
Ajax .done() and .fail() firing simultaneously
I'm using Jquery Confirm when I trigger my ajax call I get a status response of 200 but my .done() and .fail() are firing simultaneously. Am I correct that .done() will fire if response received is 200?
var frameid =…

via8321
- 15
- 5
0
votes
2 answers
Remove button after select jquery confirm button
How to remove that particular row of 'Revoke' button after jquery 'Confirm' button is being selected ? The code below is not removing 'Revoke' button permanently.

unknown
- 193
- 3
- 6
- 15
0
votes
1 answer
Convert a Json result to list and display in a jquery-confirm alert
I am working on a small script that performs an Ajax call and returns data as Json.
If the result is not empty, the script displays an alert containing the returned data.
This works fine but I would like to display the data as a list, my question is…

DCJones
- 3,121
- 5
- 31
- 53
0
votes
1 answer
jquery-confirm dialog content not updating on form change
I am currently stuck with an issue with the jquery-confirm plugin where I am unable to dynamically alter the content.
What I wish to do is basically, list all the content of the form inputs that were populated inside the content of the…

gjg2013
- 141
- 12
0
votes
0 answers
Angular and jQuery: Load component dynamically
I'm using the jquery-confirm plugin with Angular 6, and I can open alerts and dialogs with static content:
openConfirm() {
$.confirm({
title: 'Test',
content: 'It works!'
});
}
Now…

JCAguilera
- 944
- 1
- 13
- 32
0
votes
0 answers
.net mvc + jquery.confirm
i'm using .net MVC with jquery.confirm
and i have some problem:
i want to show a dialog such as Login Dialog, it's easy to do like this:
$.dialog({
title: 'Login',
content: 'url:/Account/Login'
});
this is a good way for…

Elan.Cao
- 75
- 10
0
votes
1 answer
jquery-confirm $.confirm triggers multiple modals at single click
I'm using jquery-confirm plugin and Bootstrap 3. The confirmation works fine but if I open any bootstrap modal on the page before clicking the confirmation button, two confirmation box pop up. If I open bootstrap modal 5 times before clicking the…

Munna Khan
- 1,902
- 1
- 18
- 24
0
votes
2 answers
$HTTP_RAW_POST_DATA Error - Not posting data
I am trying to perform an AJAX request through jquery-confirm plugin loading the file data from a form through its ajax-load function and then updating the information to a PHP file and ultimately to a database.
However, this is resulting in the…
user9304280
0
votes
2 answers
appendChild is not a function using $.confirm()
good day, I'm struggling to solve this problem. I spent 1 day to try to solve this problem but no luck for me.
I am trying to append a child inside onContentReady function on $.confirm() but seems doesn't work for me. here is the code
html
0
votes
1 answer
How can I change jconfirm-buttons style craftpip/jquery-confirm
jquery-confirm version: v3.3.0 git:craftpip/jquery-confirm
jsfiddle for tests https://jsfiddle.net/bdtx2ub2/
0
votes
1 answer
Simplify jQuery conditions that contains different input boxes
Explanation
Each table's row contains a delete icon at the last column. The icons are wrapped with anchor tag with respective database id. The user will click on the icon to delete that particular row (some IDs are not meant to be deleted example…

Isaac
- 99
- 11