jquery-ui

How to develop a cross-browser, simplified photo uploader

similar to what is shown here. I don't need total image editing... only rotation, maybe cropping. But the user being able to drag'n drop a photo and then minor editing is what I'm after. I'm sure there's a jQuery plugin for something like it. (preferably not an HTML5 solution) However, I've refrained from using uploaders that use an aj...

How to hide an element with slide effect in a specific direction with using a callback function?

I'm using JQuery to hide an element with slide effect like this: $(".teaser_container:visible").hide("slide", function() { doSomething(); }); This works fine, but slides the element to the left. I want to slide it to the right, but can't find any example/syntax how to do this. ...

Setting JqueryUI datepicker on a AJAX incoming form

Hello, I'm trying to put a JqueryUI Datepicker on an AJAX appearing form. The traditional $(".datepicker").datepicker(datepickerParams); does not work since the ".datepicker" element is not present on DOM ready. I've tried the live() method but there is no load event on <input>. Then, I do the following : $("#datepicker_button").live...

how to verify duplicate entry in textboxes?

I have various ul in which I have various li. The each li contain a textbox. Now the user has the possibility to add a new textbox to the li and fill in information. My question is as follows: How can I validate that the new entry made isn`t same as any previous entry in any of the textbox in a particular ul? After the user has lef...

Jquery UI panel resizing on click

Hi, I am using Jquery Ui panels.([http://code.google.com/p/ist-ui-panel/][1]) While loading the application, everything is fine like collasible, draggable etc. But i want to make the panel collapsible while clicking on some links.fo ex: This code will run when the form is loading.... $('#myNews').panel({ 'collapsible' :true, ...

problem jquery.ui.autocomplete 1.8 with height and overflow with IE

Hello, I have a probleme with jquery.ui.autocomplete 1.8 rc2 in IE7 or IE8 with the following CSS (inside jquery.ui.autocomplete.css) : .ui-menu { list-style:none; padding: 2px; margin: 0;display:block; height:200px; overflow:scroll; } I'm using the demo from the project cal...

How do i implement a login view as a jQueryUI dialog box in ASP.Net MVC

I've seen a few example of similar things and i've also looked at the KiGG application which also uses a dialog box to display the login box. I'm pretty new to MVC but making some good progress and i'm looking to add a bit of candy for a demo i need to perform next week. Does anyone have an simple example or could describe the steps i n...

How to wrap very long text in jgrowl

How do I wrap very long text in jGrowl? Right now, if the text is long it just tosses out of the page. Thanks. ...

How can I emulate the Jquery UI API?

I've written basic jQuery plugins before, but I'm struggling to get my head around something more complex. I'm looking to emulate the API of jQuery UI, which works like this: $('#mydiv').sortable({name: 'value'}); // constructor, options $('#mydiv').sortable("serialize"); // call a method, with existing options $('mydiv').sortable('opti...

php image create and jquery dialog

Hey All I want to be able to show an image made on the fly with php in jQuery Dialog window. When I try this all I get is the binary data for the image. But creating the image on a normal php page is not a problem. I have a simple php script to create the image public function image() { header('Content-type: image/png'); //...

jquery no conflict problem

Hi i used jquery many times in noconflict mode as below var $j = jQuery.noConflict(); and it works great every time. Today i used the jQuery 'before after' plugin. I used the same noconflict function but it did not work http://www.catchmyfame.com/2009/06/25/jquery-beforeafter-plugin/ I am not sure that $.fn.extend works with no...

Wrap several elements for accordion in jquery

Hello, I currently have the following html: <h3 /> <p /> <p /> <ul /> <ol /> <h3 /> <p /> <p /> <ul /> <ol /> <h3 /> <p /> <p /> <ul /> <ol /> I'd like to create an accordion but for this I need the following: <h3 /> <div> <p /> <p /> <ul /> <ol /> </div> <h3 /> <div> <p /> <p /> <ul /> <ol...

jQuery too much recursion

Im trying to select a radio box when I click an LI. But i get the error "to much recursion". Code is: $('li').click( function(){ $('li.selected').removeClass('selected'); $(this).addClass('selected'); $(this).children("input[type=radio]").click(); }); This is using jQuery 1.4.2 and UI 1.7.2. ...

How can I use a sprite for my jQuery datepicker icon?

the ButtonImage is the property you specify for the icon but I want to use a sprite as the toggler - I can use buttonText and style the <button> element with a bg image but it probably wouldn't render properly in IE.. is there a way I can specify the exact HTML used for the button without having a button element rendered? ...

JQuery modal window with animation?

Is there a way to show an animation when showing the JQuery modal window? When a user clicks on a button, I would like the modal window to do slowly emerge out of the button. ...

jQuery UI Dialog shown using an ASP.NET button.

Hello. I'm trying to show a modal dialog when the user click on an ASP.Net button. This is my page: <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title></title> <script src="js/jquery-1.2.6.min.js" type="text/javascript"></script> <script src="js/jquery-ui-1.6.custom.min.js" type="text/javascript"></sc...

Simulate a another button postback inside a jQuery dialog.

Hello. I have the following ASPX page: <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title></title> <script src="js/jquery-1.2.6.min.js" type="text/javascript"></script> <script src="js/jquery-ui-1.6.custom.min.js" type="text/javascript"></script> <script type="text/javascript"> $(function(...

How can I disable keyboard shortcuts for jQuery UI date selector?

I'm having a problem with the jQuery UI date selector, where when manually changing the date and hitting the enter key, the date selector date overrides the manual entry (the action I'm going for is a form submit). I'd like to disable the keyboard shortcuts on the date selector, but haven't been able to find a way. ...

Dynamically disable jQuery Datepicker Icon

Hi. I'm fairly new to jQuery and I've been looking for a decent free datepicker for a while now. I am quite satisfied with jQuery UI's datepicker but I've hit a snag. The project where I'm using this requires that I have an icon beside the textbox. While this is fairly easy, I don't know how to dynamically disable the icon. There are ...

jquery accordion - link to specific tab

Hi, Im new to jquery and before i embark on a project i would like to know if it is posisble to link to part 2 or 3 of this demo from an external page. http://jquery.bassistance.de/validate/demo/multipart/ or have an anchor on each page any help would be appreciated. Thanks ...