I've got the following code that shows a lightbox 'please wait' box, then does a synchronous ajax request which removes the lightbox when it finishes. Works fine everywhere else, but in IE, the lightbox doesn't show. The Ajax request works fine, but it just seems to ignore the lightbox.
The showLightbox function just does that, show a...
I'm still new to JQuery, on the way to getting my ajax example to work i got stalled with setTimeout. I have broken it down to to where it should add "." to the div every second.
The relevant code is in two files.
index.html
<html><head>
<script type='text/javascript' src='jquery.js'></script>
<script type='text/javascript' src='myC...
I have a form.
I applied tabs to it.
I have next and previous links to navigate through the tabs.
I want to validate certain fields on Tab 1, which wen not validated does not allow the user to navigate to the next tab.
I am working with only one form that is divided among the tabs.
The problem is the Jquery Validation Plugin validat...
I have a fairly simple ajax action link. The purpose of the action link is to fetch a partial view from the server and replace the contents of a div with new content.
The code looks something like:
<%= Ajax.ActionLink("click me", "GetThing",
new { Mode = "Simple"},
new AjaxOptions {
UpdateTargetId = "thingDiv",
...
I have a page that has a Contact Form slide down when a link is clicked (i.e. it is a div on the page that displays with .slideDown('slow')
I have the jQuery validation plugin working on the contact form, only I noticed that when I was testing I had event.preventDefault(); commented out. In the final version I want that to be uncomment...
Ok..so I'm a nOOb with jquery. I have a dynamically created list of items with update/delete functionality (and that's all working fine). My problem is the "add" functionality. I can add the item to the database just fine, but after it's added, I can't get the newly created item "container" to be visible. The data comes back alright ...
Hi all,
I am running in to this situation. Basically my site has many templates of css and users can change the color dynamically using jQuery. Now, the way I did it was to use jQuery to modify the css property directly by selecting the classes. However, if users switch to a different template (also dynamically), I insert .css file in ...
Hello all,
We are in the process of developing an iPhone web app using extensive jquery AJAX calls to extract data from an XML web service. When developing and testing on my Mac on Safari, the calls work beautifully. Problem is, as soon as we test on the iPhone emulator, or on the actual device, we are not getting anything back from t...
Hi there,
I have some JQuery that pops up a JQuery Dialog (http://docs.jquery.com/UI/Dialog) box when you hover over an image like so:
$(document).ready(function() {
$("img").hover(function() {
$("#dialog").dialog();
});
});
I have 2 questions
1. When i close the dialog and then hover over an image again the di...
The problem I run to is the validation of fields
if a field is invalid in tab 1, do not go to any other tabs after it
if all fields are good, go to the next tab
repeat process
the final tab submits the form
the problem is, I have a single form and I divided it into tabs. If I use the jquery validation plugin, it validates the whole f...
See example http://www.gigya.com/ (on footer)
there a slide using jquery, somebody help me how make that slide
...
I need to hide() all class level elements of '.dd-container' except when that element has an id of '#tools'.
I tried the following (which didn't work) but I'm pretty sure I fudged the syntax:
$('div:has(.dd-container):not(#tools .dd-container)').hide();
...
I read a post about making JSON calls (with jQuery) safer by adding a dataFilter to parse the returned string.
However in the post it's explained (more specifically in a previous post linked from the above post):
It’s important to note the removal of the dataType parameter in the $.ajax() code above. This is required in order to pre...
Hey
I'm using the jquery lightbox, is there a way to show an textfield istead of images or both ?
or maybe another way to show a text in lightbox popup?
...
hi all,
I want to count the Href in a page using Jquery .
Just for refrence: i have random number of hyperlinks in a page for each user and all hrefs are diffrentiated with thier id eg. user_1,user_2,.... so here im unable to call the function on onclick event using Jquery since each href is has different name and cannot also write s...
Hello,
I would like to know how this type off slider ,- the arrow next to the picture is sliding-, could be acomplished with jquery.
I can see in firebug, that it is made with flash
It does not seem to be overly complicated to acomplish it with jquery
,but that´s not saying that I already know.
What would be the best way to do this
...
I have some javascript in a repeater item which calls AC_FL_RunContent to load and show a flash file (in each repeater item) when a link is clicked (link is part of repeater item).
I have a paged datasource showing the first page of video links. Five items on each page.
The show video links work fine on initial page when there hasn't b...
How can I temporarily store an array of string values most elegantly in a form?
I have a form, where a user can edit an article - and add tags, which are simply string values.
I don't want to persist it until the user actually saves the entire article, so I need to be able to temporarily ...:
Display the list of selected tags
Add a t...
I use this code for equalizing columns:
jQuery.fn.equalHeight=function() {
var maxHeight=0;
this.each(function(){
if (this.offsetHeight>maxHeight) {maxHeight=this.offsetHeight;}
});
this.each(function(){
$(this).height(maxHeight + "px");
if (this.offsetHeight>maxHeight) {
$(this).height((maxHeight-(this.offsetHeight-maxHeight))+"px...
Hi All
I have an ASP.NET MVC applciation containing 2 list boxes: #AvailableItems & #AssignedItems. I can transfer items from one box to the other.
I also have some other related values stored as attributes on the Save link that need to get submitted too, like IDs and stuff. When I post the data, I can submit the attributes easily enou...