jquery

How to store the Json Data

Hello All, I have converted the XML data to JSON data now I want to pass this JSON data to the JQuery grid plugin .Please tell me how can I do this.How to store the JSON Data and How to pass the Data To the JQuery grid plugin. Please suggest. ...

jqgalscroll timer

Hi I'm trying to add a timer to the jqgalscroll plugin, the plugin has the function jqimg.click(function(){ var next = n.index + 1; if((n.index +1) == el.totalChildres) { el.pagination.find('[href$=0]').click(); } else { el.pagination.find('[href$=#'+ next+ ']').click(); } }); this is used to move to the next image in the gallery,...

How to Disable image button

I have an button whose type is image i want to disable button till some action following is the html tag How to disable this button? ...

Does JQueries Live Work in IE8?

Hello all, I am making use of the JQuery fancy box - in this pop up box I have a form with a few select fields and upon changing these slect fields a value in a span element should change. I have got this to work (actually with stackoverflow users help) but the solution doesn't work in IE8...suprise...suprise. I make changes to the sel...

jQuery hover callback function problem

I'm trying to get an image to stay opaque when clicked on, along with a fade in/out function on hover. When clicked it will remove one class and add a 'selected' class to the element. Problem is that altough the original class is removed, the callback still executes as if the class is still in the element. Thus, if you click on it, it ch...

ASP.Net which grid control should I use and how should I use it?

I have been asked to write a grid which tracks flexitime for employees. There are 4 weeks in a period, and we only count the working days for each week. On the verticle axis is day of the week; Monday to Friday, am and pm. On the horizontal axis is the 4 weeks, which are subdivided by time in, time out and number of hours for each day am...

dynamic tree creation using jquery

Hi all, i Want to create dynamuc dree using jquery at client side and java(jsp/servlet) at backend using mysql database.Please suggest me how can i implemet that.I want to add further functionality like add node,add child,add leaf node. ...

scrolling tabs in jQuery

Is there simple solution to build tabs with the scrolling tabs-pane in jQuery? Like ExtJS Advanced Tabs: http://www.extjs.com/deploy/dev/examples/tabs/tabs-adv.html ...

simple example for .blockUI in jquery

HI please guide me to the purpose of blockUI with an simple demonstration -Thanks ...

call a javascript from a flash?

Possible Duplicate: How do you trigger javascript functions from flash? Possible Duplicate: How do you trigger javascript functions from flash? Can flash call a javascript? For example a Button in a flash will call a function ($("div.boxclose").addClass("boxopen").show("slow");) from jQuery library. Is that possible? T...

Is there a style selector in jQuery?

If I want to select every image which it's alt is Home for example, I can do something like this: $("img[alt='Home']") But how can I select every elements which their width CSS property is 750px for example in a single selector? EDIT: If there is no such selector, is there any plugin, or any plans to do it in the next jQuery versions...

IE8 and jquery 1.3.2 toggle

I am using this jquery function that works fine in win/mac FF 3.5 and Safari, But not in IE 8, The text changes on each condition in it, but the hidden div, with css set to display none doesn't work. //Expander Function function expando(showText, hideText, content, selector) { var showText= showText; var hideText= hideText; ...

Does jQuery Live work on Safari?

Hello all, I have just asked this question an hour ago but with regards to IE8 and I was told that the JQuery Live handlers does not support "change" so I switched over to "click", this solved my problem and now I find Safari does not work with click for some strange reason, anyone know why? So I was thinking can I just have both? $('...

Need advice on creating a new ASP.NET application

I am creating a new ASP.NET application that is heavy on UI. I am leaning towards the Web form model over MVC as I am very familar with it. I have a few questions The UI lets users do tasks such as reorder table rows, do drag and drop, interact with images etc and the changes are saved to the database without clicking on the "Save" bu...

load a usercontrol using jquery

How to load/render a usercontrol using jquery? I have some menus on header of the page and the usercontrols for each menu. On click of the menus i need to re-load the content with the corresponding usercontrol. How can i achieve it using jquery which avoids page refresh? ...

Jquery not working in IE

Hi , could some one look as this Jquery code, I am trying to make a Ajax plugin <script type="text/javascript"> $(document).ready(function() { $('#letter-a a').click(function() { $('#dictionary').load('a.php') ; return false; }); }); Basically it wont work in IE , In FF and Safari it works perfect. ...

JQuery - Appended Links don't work

I have created a dynamic list picker script using Jquery 1.3 and PHP that sends a JSON AJAX request and returns a list of items to choose from. The AJAX call works perfectly returning an array of items that I use Jquery to append them as an unordered list to an empty container DIV. That portion of the process works as expected. The pro...

if you have the latest version of jquery, is livequery still usefull?

From what I understand livequery is for maintaining your events after DOM changes. Does not the latest build of jquery already support this? ...

Amazon S3 and Thumbnail generation... help?

I'm stuck for ideas on this one. I'm working on a CMS that uses a file-browser to store all media file in an S3 bucket. I have 4 options for thumbnail sizes which generate new thumbnail images from original image. If I'm doing this server-side in PHP it's fine - I'm just at loss as to how to do this if all the original files are s...

Flexigrid quantity returned

I have flexigrid set up to use an ajax post to get results from a server. For the sake of argument, say I have it set to limit 20 rows per page. Within the "onSuccess" setting I'm calling a function. How can I tell within that function how many (up to the limit of 20) rows that flexigrid has returned? I can use jQuery to count the rows...