jQuery UI is the official jQuery user interface library. It provides interactions, widgets, effects, and theming for creating highly interactive web applications.
1
vote
1answer
29 views
Smoothly increase the size of an image with jquery
I have a few images that will overlap each other on the page. I want one of these elements to slowly get bigger based on some event.
To do this, I'm using the jquery .animate method like so:
...
0
votes
0answers
10 views
jQuery UI tabs modding drag, drop event
I'm trying to modify jQuery UI's Tab to behave like Chrome Tab:
1). When a tab( element in jQueryUI tab) is dragged OUT of the "tab-board" (the ),
the tab should create a new tab-board itself.
...
0
votes
1answer
16 views
How to animate when span7 and span5 show hide in bootstrap
I have Bootstrap layout with span7 and span5(inside a span12).I want to hide span7 and expand span5 as span12 when a button click with smooth animation. Same way,onclick of sam button,both span7 and ...
0
votes
1answer
14 views
What is the recommended method to detect if jQuery UI .position() supports the `offset` option?
This feature is removed in jQuery UI 1.10 :
http://jqueryui.com/upgrade-guide/1.9/#deprecated-offset-option-merged-into-my-and-at
How do I check for the new syntax using feature detection (instead ...
0
votes
1answer
10 views
jquery draggable & droppable get source container (that draggable came from)
I made this jsfiddle for a different answer and I'm wondering how I can get the souce container that the droppable came from
http://jsfiddle.net/d7wsz/8/
The jquery is
$("#Table1 tr:not(.disabled), ...
0
votes
1answer
26 views
Connect color picker (jquery UI slider) to Sketch.js
I worked on getting a color picker together, which I plan on using to control the color selection for sketching with Sketch.js. According to Sketch.js documentation, the 'marker' tool will obtain it's ...
0
votes
0answers
8 views
How to create a file upload in a modal window (jQuery)
I want to create a text filed. When focus or click it, a file upload modal window will be showed (like file upload modal window of the redactor - http://imperavi.com/redactor/)
The return file name ...
-1
votes
2answers
44 views
How to use jQuery ajax and load at button click?
I need to use jQuery ajax and load at single button click. Because I'm calling the action class to get data from DB and display those data into datatable.
jQuery("#search").click(function(){
...
2
votes
3answers
42 views
Jquery button event click issue
I have jquery button which need click event to enable the datatable.Please look into below code advise.
jQuery( "#dialog-form" ).dialog({
autoOpen: false,
height: 500,
width: 750,
modal: ...
0
votes
0answers
7 views
Using new widgets in older jquery-ui versions
I need the tooltip widget provided by jQuery-UI version 1.9. I already am using jQuery-UI version1 1.8 and I cannot upgrade my jQuery. Is there someway I can use tooltip widget in the older version of ...
0
votes
0answers
14 views
Places api dragging with jquery ui
I create a some type of interesting places based on google maps api places
http://jsbin.com/ayugun/7
What I want is when I search on map there is a photos of places but I need to drag and drop on ...
0
votes
0answers
11 views
Google map places images
Here I write a script to show me photos for places on google maps, but also I write a code to drag that photos on the left side in ID #left but something dont work. I use jquery UI
Here is the jquery ...
0
votes
1answer
14 views
jquery event.preventDefault() issues with IE 8
In my jquery autocomplete select function, I need to use the event.preventDefault() method to prevent the default ui.item.value from populating the input text box the autocomplete is wired too. This ...
-1
votes
2answers
42 views
push method containing > in js code [closed]
I am looking into a large chunk of code but he problem is i dont know what one particular line is doing...
they have include this symbol > into this push method..
i tried giving alert but could not ...
0
votes
0answers
10 views
How to move an item in a MongoDB array?
Is there a way to update a document array to move an item from one index to another?
e.g.
{
name: "myDoc",
items: ["it1", "it2", "it3"]
}
As a result for JQuery-UI Sortable event it2 and it3 ...