Tagged Questions
0
votes
0answers
13 views
How to use data on _trigger for custom widget?
I have a widget created using jquery ui widget factory. I'm trying to pass some data to my custom event like this
this._trigger('myCustomEvent', ['Test', 'Test2']);
but on my handler I'm not sure ...
2
votes
0answers
34 views
How to assign attributes or functions to objects added after DOm ready with jquery
I am working in some personal project it is like the front-end of a chat. So i have my users and i have a JSON with the list of online and offline users. When the website firs load I also load ...
0
votes
1answer
38 views
How to change text on individual jquery slider handles
I have a jquery range slider that I am using to select a percentage of color for an overall image and it can have a dynamic number of handles based on how many elements the user decides to use. I am ...
0
votes
0answers
35 views
jquery ui checkbox performance issue
I've got a backbone application in which I render a big table of tree nodes (each table line represents one node). Nodes have jquery ui checkbox. The tree is quite big (around one thousand elements ...
0
votes
1answer
34 views
Age Verification - Close Dialog Window
Using Nation Builder as a platform for a client's site and need to create an age gate. I would have the age verification on a separate page but apparently it won't work with this platform, so I'm ...
-1
votes
0answers
31 views
new Date() returning invalid time with India Timezone ( IST ) in jquery
I am getting time in IST of format "Jun 6, 2013 07:57 PM IST" , as soon i do
var d = new Date("Jun 6, 2013 07:57 PM IST").toString("MM/dd/yyyy hh:mm tt");
it returns an INVALID Date.
new ...
0
votes
0answers
55 views
render div out of dialog
I created a dialog used jQuery UI dialog that had overflow scroll,
now I want to render one div element that one part is in dialog and another part is out of dialog,
How can I do this.
I used this ...
0
votes
0answers
28 views
Need checking hiding divs when clicking off
We have a floating cart on our yahoo store and my boss wants me to make it so that when you click off of the cart it hides. I've tried several methods found in here but once the div is hid after ...
0
votes
1answer
25 views
datepicker() is transparent need some css and addeed options for months and years
My jquery ui datepicker() is transparent and doesn't show any months or years. Need some good css with options for month and year search..
$(".datepicker").datepicker();
0
votes
1answer
35 views
Why is my .infobox not resizing to parent as I zoom in or out?
I've been trying to create this news slider kind of thing in combination with JQuery. I'm not concerned about getting the interactions working, but my infobox, which is a div, that contains the "Prev" ...
2
votes
2answers
41 views
jQuery UI Datepicker weird behavior
I'm having a weird problem while working with a simple datepicker using jqueryUI. I simply want to show a two month calendar with LAST month and current month. I used this code:
$(function () {
...
0
votes
4answers
58 views
How to to change CSS double class properties through script
In JQuery UI, there are a lot of CSS double classes, for example for JQuery UI's tabs
.ui-widget-content .ui-state-default
{
border: 3px solid #EEEEEE;
background: #ffffff ...
0
votes
2answers
59 views
Set options in attribute of element?
When I create a jQuery UI element (button for example), I do it like this:
<button class="Button" data-options='{ "text": false, "icons": { "primary": "ui-icon-arrowthick-1-n" } }'>Move ...
0
votes
1answer
22 views
JQuery UI Diaglog to populate checkbox values to parent
I have a requirement that a user should select the checkbox values from a pop-up and click on submit on pop-up and the selected values should get displayed back to the parent page.
I was playing with ...
1
vote
2answers
37 views
Variable value not updating inside dialog
I have the following simple dialog:
function confirmDialog(message, title) {
var returnvalue;
if ($("#confirmDialog").length == 0)
$('body').append('<div ...