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
51 views
optimise jquery code
I have written a jquery code for a pop up but the problem is I wanted to optimize the jquery code can you tell me how to optimise it to have a better results in the browser..
it would be great if u ...
2
votes
2answers
79 views
Refactor jquery (coffescript) code with checkboxes
I have two different set of checkboxes. With the coffescript code below I set the maximum amount of checkable items at 3. I would like to refactor this code, to be cleaner and compact, but I can't get ...
0
votes
1answer
103 views
Improving jQuery Login Code
<-----------------------------------JQUERY----------------------------------->
$(function() {
$('button').button();
$('#tabs').tabs();
$('.ui-state-error').hide();
...
3
votes
1answer
110 views
How to improve this JavaScript implementation of a TODO manager?
I was asked to create a TODO manager using JavaScript and CSS.
I did not get a good review on the code nor specific comments on how to improve it.
My implementation:
<html>
<head>
...
0
votes
0answers
65 views
Looking for review of an open source AJAX powered forum [closed]
This project isn't complete but a good start, I want to know if this is the method I should use to continue developing this project.
So you know, the ideals of the code are for the PHP to serve up ...
0
votes
0answers
47 views
Refactor validation of the drop down and text field [closed]
I need to validate a text field based on the dropdown. I have two scenarios here 1. When the user changes the value in the dropdown and then enter the text in the textfield 2. The user enters the text ...
4
votes
1answer
1k views
Pie Chart jQuery-UI plugin
I would greatly appreciate the input of any gurus out there. I have recently begun learning JavaScript and then jQuery and jQuery-UI and have thought I would take a stab at writing my own jQuery-UI ...
5
votes
1answer
182 views
Movable Square-Div with Web Sockets, ws module, Node.js, and jQueryUI
I'm trying to make a simple little program in Node to use as a code base from with to program my whole web app. However, it isn't exactly working as planned because I'm stuck.
I wanted it so that ...
1
vote
0answers
142 views
is the Jq grid for server side binding possible? [closed]
is it possible to do server side binding using jq grid for doing add,delete,update and search operation in C# means data binding of jq grid should be done from server
4
votes
2answers
292 views
Refactor this jQuery datepicker code to be as small as possible
I am using jQuery datepicker on 2 forms on the same page.
I currently am using the following code (below), but as you can see, I am using the same parameters over again (showOn, buttonImage, ...
0
votes
0answers
105 views
IE issue for jQuery dialog with transfer effect [closed]
I wrote a code to have transfer effect work with jQuery dialog. I test the code it works fine in IE, FF and Chrome. I post my code to StackOverflow for some kind of fine tuning and the developer Mr ...
10
votes
2answers
294 views
Is there a better way to write this jQuery UI effect animation?
I'm writing some code to perform some simple form validation and I would like to display error messages inside the actual relevant textarea by means of a text fadeout/fadein effect.
To achieve this I ...
2
votes
1answer
162 views
How can I simplify/improve this jQuery code & comply with best practices
I'm trying to improve the quality/efficiency of my coding (having only been learning jQuery for a couple of months).
I have a function which loops through all $('.loop-bar')'s and applies a jQueryUI ...
0
votes
0answers
60 views
How to improve this jQuery code? [closed]
Possible Duplicate:
How can I simplify/improve this jQuery code & comply with best practices
I'm trying to improve the quality/efficiency of my coding (having only been learning jQuery ...
1
vote
1answer
94 views
can we use of $this in closure for jquery plugin
I tried creating a quick tooltip plugin using the jquery and jquery ui position. Is the way I have used the enclosure are right and is the use of position right since in ff it seem to have some memory ...