I'm using the tablesorter and the tablesorterFilter plugin, and for that matter the tablesorterPager plugin to sort my data. I have a navigation menu that I use to organize content into a folder type layout, similar to how windows explorer folder tree view works. I'm using an unordered list to display the menu.
Is it possible, or is t...
I'm trying to find out if anyone knows about an already existing jQuery plugin that will count up to a target number at a specified speed.
For example, take a look at Google's number of MB of free storage on the Gmail homepage, under the heading that reads "Lots of space". It has a starting number in a <span> tag, and slowly counts upwa...
I'm a newb to jQ so please forgive my ignorance.
I'm using Asa Wilson's plugin jquery.dirtyform.js to prompt a user of unsaved changes before they nav away from a page (ASP.Net C# 3.5).
It basically loops through all controls and appends a class and handler to each input.
Controls w/i an ajaxToolkit:TabPanel are ignored, unfortunately....
I have an unordered list with a few list elements.
#tags {
width: 300px;
height: 300px;
position: relative;
border: 1px solid red;
list-style: none none;
}
#tags li {
position: absolute;
background: gray;
}
I have also started writing a jQuery plugin to animate the list elements. So far, I place the li...
I am working on expansion of my jQuery plug-in authoring knowledge, just playing around with my own ideas for learning benefits. So i was wondering how you guys tackle the need of plugin executing without any user specific input.
So I have a need for plug-in that executes right away after document is ready, without any user's specific i...
I am trying to make the image title display at the same time the image appears, it currently appears right after the image does, using the :after option, code looks like this, Any ideas how I can make the title show up in sync with the image? Thank you!
Copy code
$(document).ready(function() {
$('#home_gallery').befor...
Hi,
I am using this plugin for my new site:
http://colorpowered.com/colorbox/
The page in concern has two hyper links which are of the same class:
a.emailQuote
These both should open the same colorbox window which is done by the following code:
$("a.emailQuote").colorbox({
transistion:"fade",
title:true,
iframe:tru...
Chad Smith came out with a jQuery plugin designed to crash the IE6 browser.
;jQuery.crash=function(x){for(x in document.open);};
What is this doing exactly to cause the problem?
...
How do I default an accordion to be closed on start-up. here is the sample view here
Here is the code:
<script>
$(function() {
$("#accordion").tabs("#accordion div.pane", {tabs: 'h3', effect: 'slide'});
});
</script>
<script>
// add new effect to the tabs
$.tools.tabs.addEffect("slide", function(i, done) {
// 1. upon hiding, t...
I am using jquery autocomplete. I want, add default value when loaded page. I added input value tag. But, did not work :(
How can I do ?
...
I'm trying to crowbar a magnifier, like this one, into prettyPhoto (picked because the JavaScript is nice). The trouble I'm having is initiating the loupe function when the prettyPhoto has loaded. If I include it in the prettyPhoto JavaScript, it just gets itself into an endless loop, or doesn't get called at all. I've nearly got it work...
I'm trying to build a simple jquery plugin that can take selectors as parameters. All of the examples I find expect more raw 'properties' (width, color, etc) than actual selectors. Are there any good ways to do this?
I found this article : http://stackoverflow.com/questions/541362/passing-jquery-selector-to-sub-function-within-a-plugin
...
Hi,
Consider the following base code:
(function($) {
$.fn.myPlugin = function(settings) {
return this.each(function() {
//whatever
});
};
});
The plugin returns a jQuery object. The question is how am I supposed to write a plugin that returns a custom object so that I can do something like this:
v...
Anyone knows that any jQuery plugins or to build something similar to image effect/gallery like Apple OSX Finder - Cover Flow?
...
For the below code,
there ia a form in the location /home/form.php .How can this form be opened with the below code.i.e, the modal dialog
$dialog.html(data)
.dialog({
autoOpen: true,
position: ['right','bottom'] ,
title: 'Emp Form',
draggable: false,
width : 300,
height...
Hi,
I am trying to start writing some simple jQuery plugins and for my first try if figured I would write something that does nothing else but apply .first & .last classes to passed elements.
so for instance i want to ultimately be able to:
$('li').firstnlast();
So that in this html structure:
<ul>
<li></li>
<li></li>
<...
When I open page with player directly e.g. file:///Z:/home/localhost/www/sampleEmbedCode.html and play music from my computer or netbios-share, it's OK.
But when I open exactly same page through local server e.g. http://localhost/sampleEmbedCode.html, I can't play audio from SMB-shares.
...
I am building a portfolio page of different work that has been done and im using two different jquery sliding techniques, one nested in amongst the other one.
The first slider works great but the second one doesnmt work that great for the first few and then doesnt work at all. If you take a look at this page- You can click the clients u...
Hi, I'm making a plugin and one of the options is a standard callback. I want the user to be able to re-run the jQuery plugin's this.each() which basically re-runs the plugin, for example;
callback: function(){
// some code to rerun the plugin here after 10 seconds
}
I know I can do this like so: $(this).plugin_name(); but it won'...
Using a plugin for sliding- when you click "avonmore" it just comes up loading images while the rest seem to be fine
this uses both anythingslider and codaslider but i think codaslider is the problem
http://justni.com/wip/mdd/martin_duggan_portfolio.html
...