Hello,
how could I animate a rotation by -moz-transform: rotate(40deg) with jQuery?
I tried this but it doesn't work:
$('#foobar').animate({
MozTransform: 'rotate(40deg)'
});
Hi, I am encountering an issue with trying to load a google annotated chart (http://code.google.com/apis/visualization/documentation/gallery/annotatedtimeline.html) within a jquery ui tab using content via ajax method (http://jqueryui.com/demos/tabs/#ajax).
If instead I use the default tabs functionality, writing out the code things work fine:
…
When we apply $().dialog() in an object, jquery-ui puts it inside a <div class="ui-dialog ui-widget">, with a <div class="ui-dialog-titlebar ui-widget-header"> before it.
After the creation of this dialog around the main object, how can we get that ui-dialog object so that we can execute other JavaScript commands in it?
The best I…
Is it possible to disallow free text entry in the JQuery UI autocomplete widget?
eg I only want the user to be allowed to select from the list of items that are presented in the autocomplete list, and dont want them to be able to write some random text.
I didn't see anything in the demos/docs describing how to do this.
…
I am using xVal for client validation in an ASP.NET MVC application. Since I have too many fields in one of the forms, I split it into sections and used jQuery accordion to display one section at the same time.
Is there a way to activate the accordion section which contains validation errors when the user clicks submit?
How to check for null,white spaces and new lines while validating for a textarea using jquery.
If the textarea is empty and has only new lines or spaces should raise an alert
All,
I am using Jquery UI nested tabs. I was just wondering if there is any way to display an AJAX Spinner image next to the tab text, while the tab is loading. I do not want to change the tab text to "Loading..". Consider that when multiple tabs are loading at the same time or one after the other, the spinner image should…
Is there a way to specify the tab order of the elements within a jQuery Dialog which itself contains an Accordion? The dialog also specifies one button in the buttons options. For accessibility, we need to be able to tab through the accordion panes, the form elements in each accordion, the button in the buttons options, and…
OK I think I get
http://stackoverflow.com/questions/1991126/difference-jquery-extend-and-jquery-fn-extend
in that the general extend can extend any object, and that fn.extend is for plugin functions that can be invoked straight off the jquery object with some internal jquery voodoo.
So it appears one would invoke them…
I have same id, name two html select. If I change first html select then it’s work properly but If I change second html select then it’s not work. Please can someone point out what I may be doing wrong here? Many thanks. Here is my code:
<html>
<head>
<title>the title</title>
<script…
I have a jQuery dialog. All of the fields are posting correctly except for the drop-downs, the value is getting passed as null rather than the selected value.
<div id="popupCreateCompany" title="Create a new company">
<form>
<fieldset>
<p>
<label…
I have a schedule table I'm using jQuiry Sortable for editing.
Each day is a UL, and each event is an LI.
My jQuery is:
$("#colSun, #colMon, #colTue, #colWed, #colThu").sortable({
connectWith: '.timePieces',
items: 'li:not(.lith)'
}).disableSelection();
To make all LI's…
Is it possible to add icons to the buttons on a jQuery UI Dialog? I've tried doing it this way:
$("#DeleteDialog").dialog({
resizable: false,
height:150,
modal: true,
buttons: {
'Delete': function() {
/* Do stuff */
$(this).dialog('close');
},…
I am trying to change my comboboxes to use autocomplete so i leverage the code listed here (which worked perfectly for my dropdowns)
The issue is that i also on the same page have a listbox with the following code:
<%= Html.ListBox("Cars", Model.BodyParts.Select(
x => new…
All,
I have an AJAX request, which makes a JSON request to a server, to get the sync status. The JSON Request and responses are as under: I want to display a JQuery UI progressbar and update the progressbar status, as per the percentage returned in the getStatus JSON response. If the status is…
Hello,
I would like to use my existing Jquery UI tabs to shoot my users off to a new browser window
Unfortunately adding a target="_blank" to the jquery tab code doesn't work.
Does anyone have any ideas?
Here is the default Tab Code found here
<div id="tabs">
<ul>
…
I have a SWF movie inside of a jQuery UI tab, and the problem I'm having is that the SWF gets reloaded everytime I click away from the tab, onto another tab, and then click back. I can inspect the DOM and see that the div containing the SWF is still in the DOM when I click away, so I…
So I've got the latest versions of jQuery and UI running.
I'm using the basic autocomplete invocation and returning valid JSON (validated via JSONLint).
$("input#cust_id").autocomplete({
source: yoda.app.base + "/assets/cfc/util/autocomplete.cfc?method=cust",
…
I have the following script:
http://jsfiddle.net/2HNvL/
but I can't seem to remove the light gray border around the tab control. Anyone here know how to do that?
I have tried the following:
#tabs .ui-widget { border:none; padding:0px; margin:0px; }
#tabs…
So, I am working in this page
http://universidadedoingles.com.br/text-tabs/tabs-text.html
As you guys can see, I have four tabs and an arrow right below, I need to do that the arrow go below the selected tab, if a click on tab 3, that arrow should go below tab 3,…
Hello. I have this code, which open new jquery-ui dialog and then hide the dialog's titlebar.
<div id="keyboard" class="keyboard dialogs">...</div>
$("#keyboard").dialog({
width: 1136,
height: 437,
position:…
Hello all,
I have an ASP.NET C# page, with image thumbnails in it.
I created a script that opens a jQuery UI Dialog on each hover on a thumbnail that shows me the thumbnail in larger size in a dialog view, and when I hover out - dialog closes.
My…
Hello,
I have a jquery ui autocomplete widget in a form and I'd like to preselect its value from a database.
My autocomplete works in the following way: the id is a number, tha label and the value are the same and are a concatenation of id + " -…
Hello there. I'm trying to validate multiple forms in one single page with the jQuery validation plugin but it validates only the first form in the page.
Here is my code:
$('form.reply_form').validate({
submitHandler: function(form) {
…