jquery

Rounded corners AND shadow applied to one div?

How? Any suggestions besides CSS? I have tried JQuery (dropCurves, shadow, shadedborder, corner osv). ...

How to style alternating rows in asp.net mvc

I am using a <% foreach ...%> loop to list a collection of items on my website. I want to add a different background color for the style of alternating rows in my list. I have found a way to do this but I am not satisfied with it as it seems like a hack. Here is what I have done to solve it so far: <table> <% int counter = 0; ...

Background image with a draggable second image (layers maybe)

Hello, I need to be able to take a background image and float a second draggable image (should be scalable, but with fixed proportions) Also the code should be able to 'flatten' the image for photo sharing. Oh, also the floating image should have a dropped shadow to give the illusion of depth. Thanks! Is this possible with jQuery, ajax,...

Using Jeditable and activating on click

I found this to be almost exactly what I'm trying to do. I'm using Jeditable I can get the default setup to work. I've also been able to get the code in the forum above to work. I believe my problem is that because I'm using a table I need to so something else to select the previous element. Here is my HTML <table> <tr> <t...

SharePoint SOAP GetListItems VS jQuery - Need some advice on how to use Ajax to cycle through Custom List items as well as Ajax refresh the list contents...

Hello all, I am using jQuery to access Sharepoint 2007's SOAP interface via the GetListItems method to read in a custom list of anouncements in such a way as to have that list refresh once a minute (in case the owners of the list add new content, so that the new content becomes visible without having the end user refresh their sharepoin...

Stop reloading flash file when using show and hide methods

I have a web page where a flash file is embeded in that.The flash file is having a quiz consist of 4 questions.When user answer the first question the second question will be shown.This flash is embeded in a div called divFlashcontent.Now i want to hide and show the quiz inbetween.Ex: When the user clicks a button("Pause"), i want to hid...

Jquery jcart Maximum quantity of one for a specific item

Is there a way to limit a specific shop item so that it can only be added to the jcart once? ...

jquery and xhr.abort

When aborting an ajax request with the xhr that's passed back from the jQuery.ajax function, firebug shows that it's still trying to load that request. It doesn't block any more requests that are made, but it also doesn't show that it ever completes the request. Is this just a firebug problem? ...

What are some quick tips for increasing jQuery performance?

What are some quick tips for increasing jQuery performance? ...

Does jQuery have built in full support for JSON2 ?

I need to know is JSON2 lib included in jQuery core or must i use JSON2 lib from http://www.json.org/js.html. ...

Is attaching functions to the jQuery object bad practice?

Currently I have a jQuery plugin which not only sets up its function in $.fn but also $ itself, checking if (typeof(this) == 'function') to see if it has been called through $.pluginname or $(elm).pluginname... is this bad practice, and if so, is there a better way to make providing the element optional? ...

markitup changes the explicitly set size of textarea?

Hi I set up several textarea's with diffrent sizes as: <textarea class="markItUp" rows="5" cols="80" name="upstring"> or <textarea class="markItUp" rows="100" cols="80" name="upstring"> But after the markitup has been applied they are always resized to 18 rows. Why? I have checked rows with firebug and its unchanged (still 5 or 1...

Adding jQuery to Master Pages

I have the following jquery in my ASP.NET regular pages <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head runat="server"> <title>Color Items</title> <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script> <script type="text/javascript"> $(function() { ...

Jquery Overlay with Button (ImageButton/AspButton)

Hi! I wanna use a button in asp.net. When I ckick on it, an overlay shall occur and the overlay shall filled with data. How Can I do this with Jquery? My Problem is that, when I click on the button, the whole page is send back to server. Thanks for your help! ...

Get Value of dropdowns with same name using jquery

I have some dropdowns shown in my asp.net mvc application with the same name (say: 5 dropdowns with the same name 'uniquedropdown'.) I need to get all the selected values of the dropdowns with the same name using jquery. How to get it? ...

How to achieve this title generation from this website.....

Hi, I am trying to achieve something similar to the way the heading of a page is presented to the user of this website with jQuery, i.e.: http://wonder-wall.com/#project/en when you click on a thumbnail from the main index, the heading of that thumbnail generates different values until it appears to the user properly. Just wondering ...

How to limit the size of an HTML textarea with JavaScript?

Anyone have code to limit the characters in a text field and display the character count? I need something like twitter status input and I can't find anything online. If there isn't anything out there, I'll probably make a jQuery plugin or at least open source this thing. Thanks! ...

jQuery remove() on element doesn't hide used space

I'm removing an element using remove() (it's a <li> with display: inline; set, although the same problem seems to exist with display: block;), and while the element is removed from the page the space it was occupying isn't. Is this standard behaviour and so should I be using another method instead? The <li> contains a form field, so I'm...

Creating a cookie using jquery to store name/value pairs of information

I need to store a cookie that has the following information: key1: datetime key2: datetime key3: datetime How can i create and access the cookie with the above properties? I need to manipulate this cookie via javascript (I am using jquery). (side question, javascript cookie work is 'live' correcT? i.e. it doesn't need a postback to c...

Fallback image and timeout - External Content. Javascript

What is the best way to set up a local fallback image if the external image does not load or takes too long to load. ...