0
votes
3answers
54 views
accessing div in jquery selectors
I am trying to access curr-dish and sub-dish class using jquery of third dish-wrapper div class...
how to access it since all three divs have same class
i want to access only third div...
i dont want ...
1
vote
2answers
2k views
JQueryUI draggable “Object doesn't support this property or method” when jquery-ui is included
I've got the classic Object doesn't support this property or method message when using JQuery UI.
Hovever, this has come up after integrating my work into another solution.
I've definitely included ...
0
votes
1answer
29 views
+50
How to document jQuery-ui widgets with jsdoc-toolkit?
How can i document this widget so the toolkit can expose the methods and options.
Everything I have tried will not see anything inside the closure.
/**
* @fileOverview
* @version 1.0
*/
(function($) ...
1
vote
1answer
393 views
Knockout accordion bindings break
The following binding worked prior to 1.9:
ko.bindingHandlers.accordion = {
init: function(element, valueAccessor) {
var options = valueAccessor() || {};
setTimeout(function() {
...
-2
votes
1answer
35 views
Can we use jQueryUI and KendoUI at same time?
I have php app where jQueryUI library version 1.8.4. is already implemented with jquery library version 1.4.2. But as per new requirements I need to implement some modules in kendo UI library. So I ...
2
votes
1answer
18 views
Remove OPTION in a SELECT without a CSS class
Question:
I want to remove options in a select box which DO NOT have a specific CSS Class.
Skill Level
I am still learning jQuery, maybe will do for a long time.
Synopsis:
I have a select box:
...
1
vote
1answer
13 views
How can I make the jQuery MultiSelect widget read-only?
How can I make Eric Hynds' MultiSelect plugin for jQuery UI read-only? I know how to disable the widget, but I would like to display its contents without the user being able to change anything.
0
votes
1answer
8 views
qTip viewport adjustment not working
I have solved this problem already, but I wanted to share it, as I can see alot of people are dealing with it, and not enough solution are available.
qTip Viewport adjustments weren't working for me.
...
1
vote
1answer
36 views
Button to increase date in text box
I am writing following code.
<!doctype html>
<html><head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Icon trigger</title>
<link ...
31
votes
7answers
11k views
jQuery-UI's autocomplete not display well, z-index issue
I'm currently implementing jQuery UI's autocomplete in my clients webshop. The problem is: the element the autocomplete resides in, has a higher z-index then the z-index of the autocomplete. I tried ...
0
votes
1answer
21 views
chrome dev tools like UI panel at the bottom of the page UI design
I am creating a CRM sort of application. There are multiple tags at the top of page. Clicking on the tags, should bring up, a chrome dev tools like panel(Ctrl+Shift+I) which will basically contain a ...
0
votes
0answers
9 views
Style autocomplete with Zurb Foundation
What is the best practice to use Foundation features instead of jQuery CSS for Autocomplete?
Here is my code: http://jsfiddle.net/qhoc/88kfb/
<div class="row">
<form class="custom">
...
0
votes
1answer
43 views
Eric Hynds multiselect widget conflicts with jquery ui tooltip widget
Here is a js fiddle
JS
$(function(){
$("select").multiselect();
$( document ).tooltip();
$( document ).tooltip( "option", "position", { my: "left+20 center", at: "right center" } );
});
...
2
votes
4answers
62 views
how to return true/false from nested jquery callback functions
I am trying to validate elements inside a javascript function which contains two jQuery callback loops. Based on the conditions I want to return true/false from the inner jQuery loop and that should ...
0
votes
1answer
23 views
Multiple settings in Jquery Datepicker
It seems there are so many helpful topics on this matter around SO however I cannot COMBINE them all. Standalone they work well. But it's combining the functions that I'm having issues with.
What I ...