jQuery UI is the official jQuery user interface library. It provides interactions, widgets, effects, and theming for creating highly interactive web applications.
0
votes
0answers
5 views
Jquery UI Slider, Create URL
Im new to javascript so excuse my ignorance
I am trying to setup 4 sliders (jquery ui) on a page and then generate a url with those 4 values.
e.g
My sliders js looks like.
$(function() {
$( ...
0
votes
0answers
4 views
trying to modify current jquery ui datepicker to show range
I have this working fiddle (http://jsfiddle.net/sunnyday195/3FC7n/) and although its working somewhat I still need it to do 2 more things:
when you focus in on the return I want to show the current ...
0
votes
0answers
16 views
IE8, mouseleave event fires while hovering over child elements
The setup
We have a jQuery UI tooltip that is displayed via a mouseenter eventattached to the <div class="fieldset"> (.fieldset) element inside the form element. When the mouse leaves the div, ...
-1
votes
0answers
15 views
Need jQuery Sortable without saving order to database
Is it possible to display sorted elements from jQuery Sortable without saving it into database??
since i have plenty of records added day to day into my database,all i need is to push those records ...
0
votes
3answers
16 views
form action call button
In a form, i have a button and an image... when i click on image, form action is called, that work... but when i click on the button action is not called.
Is there a specific thing to do for a button?
...
0
votes
0answers
7 views
how to improve the performance of the mvc application that contains two jquery tabs with two webgrids respectively
I have an mvc4 web application with two jquery tabs.
am using two webgrid in two tabs.
when ever am loading page its loading two tabs webgrid data at a time if am having more than 5000 records each in ...
1
vote
1answer
35 views
getting parent object and passing to other methods via a form in between
http://jsfiddle.net/AUcu6/1 the black arrow. i when the create task is hit. it opens a form, form submit button makes an ajax call. Now , i need form values in that ajax call (thats simple ...
0
votes
0answers
7 views
Avoid multiple server calls, “self-filtering” JqueryUI autocomplete
Consider "Method A: no ajax":
$(function() {
var emails = [
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]"
];
$( ...
1
vote
2answers
24 views
Don't have access to data attribute
I have some row in a table, I would like to have only a form for all the web page instead having one for every one.
Every row can be edited or delete.
I tried to use data attribute to share use it to ...
0
votes
0answers
19 views
Jquery Autocomplete not working
I want to create an "auto complete" search box, for which I used below plugin:
http://www.devbridge.com/projects/autocomplete/jquery/
But it doesn't seems to be working for me. Here is my code:
...
0
votes
0answers
5 views
Jquery UI Accordion vs Widgetkit accordion - race condition?
I'm trying to integrate collapsible content into a Joomla/Yootheme template.
The Joomla powered website uses Yootheme's widgetkit, and it's accordions. However, WK is insufficient for some needs. ...
0
votes
0answers
7 views
Jquery UI autocomplete header
I have a jQuery UI autocomplete (with custom styling) where I added an header.
You can see it at work here:
http://jsfiddle.net/fbonomi/wJWGV/
the header is added like this:
function ...
0
votes
1answer
22 views
Why doesn't this very basic JQuery autocomplete work when using a local array of objects?
When I use a simple local array I have no problems. I have no problems populating that array from MySQL, too. But when I try to load an array of object, even a local array, it doesn't work. What am ...
1
vote
1answer
9 views
jQuery UI not working in WordPress plugin
Simple jQuery UI functions, such as the following:
(function($) {
$('ui').sortable();
})(jQuery);
Result in an error which would normally indicate jQuery UI was not present.
Uncaught ...
0
votes
4answers
30 views
Using hidden field id selector to load text in another field
Hi I have a hidden input in a form
<td>
<input id="total" class="totalD" type="hidden" value="$394,655.00">
</td>
I want to display this value in another cell
...