All Questions
154 questions
0
votes
0
answers
53
views
Box with explanatory note not showing correctly when word is clicked
I am trying to implement a feature on my website allowing users to trigger a pop-up box with an explanatory note when they click on specific words in the text.
In this question I found a nice example ...
0
votes
0
answers
49
views
Jquery dialog text doesn't read html when generated from code behind
In our project we are calling dialog boxes two ways. For the ones with static text and buttons we generate the dialog in a script and get the text from hidden spans in front-end. When using html ...
0
votes
1
answer
261
views
JQueryUI dialog moving outside browser window
I am using JQueryUI with dialogextend on a boostrap template (Shards UI).
I have the issue that the dialog can move outside the window and makes scrollbars to the webpage:
Does anyone know what can ...
1
vote
1
answer
486
views
Toggle dialog not working in jQuery. How to show animation dialog in button click?
I have a button which succesfully toggles many elements on the page, but they are all below the height of the starting page, leading to the user not clearly getting feedback that they've succesfully ...
0
votes
0
answers
70
views
Links in an iframe in a jQuery dialog do not open within the iframe
By default, a link in an iframe should open within that iframe. But when I use jQuery dialog to load an iframe and then click a link within it, it always opens in a new tab, NOT the iframe. This ...
0
votes
2
answers
1k
views
Why is the dialog not showing?
The alert() works when the Send button is clicked but the dialog never shows. I have been going crazy trying to figure out why this is. What am I doing wrong? Please see code below:
Thanks,
TD
...
0
votes
1
answer
50
views
jquery-ui: Dialog not opened at vertical center
I have a jquery ui dialog which is defined as this:
$('#processPosition').dialog({
autoOpen : false,
open: function ()
{
dialogProps.originalContent = $(...
1
vote
1
answer
777
views
Changing Jquery UI Dialog Button to a form submit button
I'm trying to use one of the Jquery-ui Dialog buttons as a form submit button. I want to use the submit button because it triggers HTML5's form validations where form.submit() would not.
Currently, I'...
0
votes
0
answers
199
views
How do I manually close a jquery-dialog?
This is my pop up:
I make a popup with javascript but I dont know how to close it, I already make a close button like this [x], but I want make another close button when user click "no" ...
0
votes
1
answer
882
views
JQuery dialog show HTML content and prevent removing HTML after dialog is closed?
I have been working on Single page application for the past few days. One of the problems that I'm facing is related to JQuery dialog box. I would like to display my forms in JQuery dialog box. There ...
0
votes
1
answer
108
views
Can initiate jquery dialog, but when opening get Uncaught TypeError: $(...).dialog is not a function
I have an ecommerce site where I allow users to add to cart via ajax. When the add to cart succeeds I show a dialog with a success message.
At some point, and I don't know when, the dialog stopped ...
2
votes
1
answer
3k
views
Creating a new div for each element for two different arrays using JQuery
I want to create a dialog box with images and text. I have an array of images and names. I want to create a new div for each image and name. Not sure if I'm iterating the items correctly and if and ...
0
votes
1
answer
142
views
Dialog box closing on its own
When an alert box is opened it automatically closes the existing opened dialog box. I want to ensure dialog box does not close automatically when errors messages are displayed.I tried using return ...
0
votes
1
answer
340
views
How to make a div container automatically fit it's child element with fixed size in IE11
I am using a jquery UI dialog to show some label-field pairs, the field could be a textarea and has a pre-configured fixed size.
I set the width and height of the UI dialog to auto, so it can fit ...
1
vote
3
answers
13k
views
Open dialog with jquery
I have a dialog referenced by $imageDialog and I'm trying to open it with $imageDialog.dialog("open"), but it doesn't work.
The problem is that, by debugging, I've seen the $imageDialog.dialog("open"...