jquery-plugins

Scrolling effect with the destination highlighted with jQuery

I found an anchor plugin for jQuery, and its demo site is at http://www.position-relative.net/creation/anchor/. I am developing a FAQ page on a website where a list of questions are followed by a list of answers. I could use the scroll effect to move down to the corresponding answer when a user click a question. But I also want the answ...

jQuery Plugins vs UI vs some alternative

I've been building a web app using jQuery as much as possible. Every time I need to add some new feature, I usually search for a jQuery plugin that does what I need, then I integrated it into my web app. Of course after a while this application becomes very cluttered with all these "random" plugins from different authors, each one having...

Problem with qTip - Tips not showing because elements load after the script

Hey, I'm not very experienced with javascript, jQuery or it's plugins but usually I manage. Anyways, my client is building a site and one of its purposes is to pick up news articles from different sites and show the titles in unordered html lists. I don't have access to his code, the news articles load up rather slow(much after the sit...

Location/country clickable maps

anybdy knw any jquery plugin or any such thing in javascript,similar to this http://bit.ly/6ary44 ? which can b usd 2 select location/countries in maps...? I would not prefer flash, but still, if there is any for free with some customizable options/effects, it would do. ...

Is AJAX easier with ZendX_JQuery or with Zend_Dojo?

The context is that I don't want to use Zend MVC - controllers, helpers, decorators etc - that's overkill for what I am writing. I've scoured the jQuery site plugins section and these issues bother me most: I have to search a lot for plugins - it is tedious. I have to check dependencies with jQuery versions. Thankfully I decided to s...

jquery truncate plugin

Is there a jquery truncate plugin that doesn't have trouble with HTML in the content? For instance this plugin does not handle HTML well: http://www.reindel.com/truncate/ ...

send extra data value with php/jquery UI to ajax.php file

Hello @all. i try to send a extra $php_var with jQuery true an ajax post function. in the 1st $.ajax i have $('.ui-icon-closethick').click(function(e) { e.preventDefault(); var parent = $(this).parent().parent(); $.ajax({ type: "POST", url: "server_items_reorder.php", data: 'id=' + parent.attr('i...

What's a good image gallery plugin that is jQuery UI compatible?

I'm using jQuery UI for Tabs and I really like the SlideViewer Pro plugin, but the problem is that the plugin doesn't seem to work within tabbed content. Anyone here have any experience with this? ...

jQuery method to a search box with a dropdown menu in it

It's easier to show you what I am trying to do with jQuery. I'm looking to make a menu within an input field like Oodle has at the top of their site in their search bar: http://www.oodle.com/vehicle/ . Can someone point me in the right direction? Thanks! ...

Is it a fact that a smaller jQuey plugin (in KB) will perform better than same plugin with the same functionality but of a bigger size?

Or does it depend on the way in which it is written? My question is related to page rendering time. Can we determine which will give better performance? Should we always choose a smaller sized plugin? ...

using chain.js for complex templates and images?

Hello, I'm researching the possible use of the jquery plugin chain.js over other templating systems such as jTemplate. the site is a large online retailer. We have a category page showing a large list of products, dresses for example. A user can click on a link on a nav bar te refine the results based on attributes such as colour, size...

jQuery corner plugin not working on Internet Explorer

I have an issue where a div is not getting rounded corners added in IE but it works fine in chrome and firefox. It appears to round the corners but removes the border colours. You can see the rounding if you highlight the rendered page. Any ideas why this is happening and how to fix it? I'm using version 2.03 of jquery corners downloade...

jQuery Tablesorter - sorting by clicking a link

Hello, I'm using jQuery Tablesorter to sort a table and everything works as expected. What I'd like to do is add a link above my table that says something along the lines of "Sort by Price" and when the user clicks the link I want the "Price" column to sort. Additionally, if they click it again, it would sort the price the other way. Is ...

jQuery Async Plugin loop sequence

Hi, I am using http://mess.genezys.net/jquery/jquery.async.php for loop and need to reverse the order of the array(1,2,3) instead it goes from 3 to 1 Anyway to change that from the code? Thanks ...

jQuery BlockUi Message after another

Hello, I'm using jQuery BlockUI plugin, and i have been able to sucessfully show a single message in the page, however... let's say that I want to show 3 messages , one after another. Something like: message: 'hello world!' message: 'hello galaxy!' message: 'hello universe!' how do I do this with jQuery BlockUI? ...

JQuery Autocomplete on ASP.NET MVC view

I have a working jQuery Autocomplete (the one by bassistance) in my view. The problem is I am just not getting this stuff. The MVC action returns JSON data and the plugin reads it out nicely and filter works great - it lists the results and I can choose from the dropdown. But then when I choose it nothing happens - I select an item eithe...

triggering a jQuery function n seconds after the tab/window is in view

I am using jQuery to have a promotional window opening up -say- 5 seconds after a page is loaded. But the effect is lost for people who open the page in a new window or a new tab. When they get to my tab the window will already be open. Is there a way to get this to fire when people actually start viewing my site? I was thinking about ...

access object created by constructor using jquery

i have a jquery function that creates a dialog box from a regular javascript function for every element selected . one of the options i want to implement is to add buttons to the dialog box. these buttons would have the felxibility of having any function assigned to them. my problem is how to access the box in which the buttons are crea...

Tablesorter 2.0.3 colspan issue

Hi, I a couple of issues using Tablesorter 2.0.3. The first issue is when I set a colspan on my table. Basically when I do this as below it doesn't sort the respective columns. <table> <thead> <th colspan="3"></th> <th>Four</th> <th>Five</th> <th>Six</th> <th>Seven</th> </thead> <tbody...

django jquery autocomplete - how to - django snippet 233 - handling foreign keys with a lot of values in forms

Hi, I found a nice snippet which seems to be a pretty nice and generic way to get autocomplete to your widgets using jquery autocomplete: link http://www.djangosnippets.org/snippets/233/ Unfortunately I did not found a complete example implementing this snippet and it seems that I do not understand it in detail to be able to implement...