jquery

How to put Multiple emails into the Input object with style (Windows Live and Facebook Like)?

How to put Multiple emails into the Input object with style (Windows Live and Facebook Like)? Like the image above: ...

Firebug is throwing a ' $( ' error?

I am getting a strange error in Firebug, that I am not getting in Webkit. The error comes up as ' $( ' in firebug. Here's the code that is supposedly causing it to flip: $.getScript("http://kylehotchkiss.com/min/?g=packageHome", function() { $(".countdown").countdown({ until: new Date(2010, 6 - 1, 5), layout:'{dn} {dl}' }); }); ...

JQuery UI Tabs caching

I am working in an ASP .net MVC Application. I have a JQuery UI tab whose Javascript to enable caching is as follows. function LoadStudentDetailTabs() { $('#tabStudentDetail').tabs({ cache: true, spinner: '', select: function(event, ui) { $("#gridSpinnerStudentDetailTabs h5").text("Loading Detai...

ftp uploader or just a simple uploader

I would like to have an uploader something along the lines of this but I want to have a progress bar and e-mail me a notification once it's done like yousendit does it. Any opensource stuff would be cool. ...

jquery plugin with multiple functions

According to the developer documentation jquery plugins are supposed to have only one namespace for all functions they make available. Which is straight forward as long as you only expose a single function per context (static/element). (function($){ var state_a = 0, $.myplugin = function(in_options) { // static ...

jQuery - How to select elements that do NOT have a class?

How do I get elements that do not have any class names? <td class="B A">A03<sub>reserved</sub></td> <td class="B R">R70</td> <td>105</td> <td class="M C">L220</td> Right now I'm doing this $('td').not('.A, .B, .C, .M, .R') There's gotta be a better way! ...

jQuery.post dynamic data callback function

I have a script that requires quite e few seconds of processing, up to about minute. The script resizes an array of images, sharpens them and finally zips them up for the user to download. Now I need some sort of progress messages. I was thinking that with jQuery's .post() method the data from the callback function would progressively u...

Returning form errors for AJAX request in Django

Hi Guys, I've been finding my way around Django and jQuery. I've built a basic form in Django. On clicking submit, I'm using jQuey to make an AJAX request to the sever to post my data. This bit seems to work fine and I've managed to save the data. Django returns a ValidatioError when a form is invalid. Could anyone tell me how to retur...

jQuery version conflicts - how to manage?

I made a Wordpress Plugin which includes a jQuery file. Now I've got the problem, that people who use my plugin may have a different jQuery Version on their Wordpress Blogs, so what shall I do to manage that? My plugin often doesn't work with 'other' jQuery Versions. Maybe there is anyone who is addicted with the wordpress api. Maybe th...

jQuery selector for <div> which does not contain <img>?

How do I select all <div> elements which do not contain any <img> elements using jQuery? ...

how do I send stuff to method using the JQuery Ajax method

$.ajax({ type: "POST", url: "WebService.asmx/AddVisitor", data: "{'fname':'dave', 'lname':'ward'}", contentType: "application/json; charset=utf-8", dataType: "json" }); I have an Asp.Net WebMethod that takes a firstName, lastName.....as a parameter, how do I send that stuff to that method using the JQuery Ajax method. i...

Rendering "partial" pages in ASP.Net? (without the <html> and such)

Hello, I am trying to make use of jQueryUI AJAX tabs in my ASP.Net Webforms project. I have come up against a wall though. For AJAX, you must render only a partial page(no <html> and such elements) by an external URL. How would you best do this in ASP.Net? aspx files require things like a <html> and <head> tag so those wouldn't work so...

uploadify email notification

Is it possible for "Uploadify" to send out e-mail confirmation after the upload? Uploadify is a jQuery plugin that allows the easy integration of a multiple (or single) file uploads on your website. It requires Flash and any backend development language. An array of options allow for full customization for advanced users, but basic im...

Having Uploadify e-mail a link to download the file

Uploadify is a jQuery plugin that allows the easy integration of a multiple (or single) file uploads on your website. It requires Flash and any backend development language. An array of options allow for full customization for advanced users, but basic implementation is so easy that even coding novices can do it. I wanted to ask if It...

Using "class/object" MooTools-style events in jQuery

One of the nice things about MooTools, is that it lets you easily assign/fire events to objects, for example: var playerSingleton = new (new Class({ Implements: [Events], initialize: function() {}, setVolume: function() { // do some stuff.. this.fireEvent('volumeChanged') } })); // Somewhere else... playerSingleton...

Why do I see MS jQuery samples use `$(domReady); `?

I don't know if anyone ELSE has noticed this, but I noticed the jQuery samples I see on MS tend to use a different format: <script type="text/javascript"> $( domReady ); function domReady() { $('#btn').click( showMessage ); } function showMessage() { $('#message').fadeIn('slow'); } </script> Isn...

Jquery Autocomplete Unable to Empty Input on Internet Explorer

Hi, I´ve got a Jquery autocomplete input like the following: $("#cities").autocomplete(regionIDs, { minChars: 2, width: 310, autoFill: true, matchContains: "word", formatItem: function(row) { ...

Jquery Text Variable

I am trying to get jquery to pick up variable that I am defining and I'm having issues doing it. $.ajax({ url: "sitemap.php", cache: false, success: function(html){ $("#results").append(html); var $seriestitle = $("#define-title").text(); $('#results a:contains("$seriestitle")').addClass('current-series'); $('a:not("...

Customise JQuery EasySlider plugin numeric output menu to top of slider instead of bottom.

Hello, I'm using this plugin: http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider I am wondering if there is anyway to have the numeric output navigation that by default appears at the bottom of the slider to move to the top? Any tips would be appreciated. Thanks. ...

jquery select link by name

i can reference link with specific id with following code $(document).ready(function(){ $("a#example_link_id").click(function(event){ var url = $(this).attr("href"); get_uid(url); //event.preventDefault(); }); }); is it possible to use $("a#example_link_id") this by link name ...