jquery-plugins

Galleria Jquery Transition Effects

Hey guys, So I am using galleria to show a slide show. I have it set to autoplay, so it shows a new picture every 3 seconds. Currently, the transition seems to be the picture sliding in from the right. Is there a way I can have it fade in? Pretty much any transition other then the sliding. Thanks! Kevin ...

will there be a jsMath-like library or plugins in jQuery?

Hi all, I am interested to develop a mathematics web forum. I have tried jsMath; it is a cool javascript library to render latex command on the client side. The rendered output is also beautiful because it can load tex font installed on the client computer. However, I am wondering its security so I prefer to use jQuery library if this ...

jQuery Autocomplete not working with Json data

There are a whole bunch of tutorials out there explaining how to do this, eg here and here. Looks real easy huh? Yet I've still somehow managed to waste half a day on it without getting anything working. Eg: the following works absolutely fine public ActionResult FindStuff(string q) { return Content("test"); } $('#MyTextBox').aut...

Fading jQuery slideshow flicker / queue problem on mouseover (slideSwitch.js)

I've adapted code from the slideSwitch.js tutorial by Jon Raasch, which is basically a fading slideshow. The script promotes the 'active' slide to a higher z-index and animates the opacity for a fading effect. It's working fine with a pause added to stop the slideshow temporarily on mouseover. The issue I'm having is I'm trying to stop...

How to use jQuery in an extension

Hi. This is a tough nut to crack: Is it possible to use jQuery in a Dreamweaver extension? These extensions use the following syntax to reference the extension and the actual document which the extension will modify: document.forms[0].elements[1] // refers to the extension file's form element var dom = dw.getDocumentDOM(); // gets t...

Validating input with jQuery autocomplete plugin

I'm using the standard autocomplete plugin here. I have two text boxes on my form, item name and item id. The idea is that I want the user to search for the item by name, but on form submit I actually need the item id. I am returning json from an ASP.NET MVC action which is used in the autocomplete. The user starts typing an item name...

Can anyone please show a simple example of using BeautyTips?

Hi, Looking for a simple example of how beautytips can be used( HTML + CSS included)? My requirement is this - I am displaying product names.On hovering of product name,I want to display products image in the tooltip.How can I do this? thanks ...

showArrows not working on jScrollPane

This is the first time that I've used the jQuery plug-in called jScrollPane, and I've ran into an issue that I can't resolve. I have two divs to which I apply the jScrollPane(). The vertical scrollbar shows up on both divs just fine; however, when I try to add the arrows to the top and bottom of the scrollbar by setting the "showArrows"...

jquery - setting plugin defaults?

I'm talking with someone else's plugin, not my own. I'd like to do this without touching their code (I'd like to do it in a separate file). I thought there was a way to do that, something like: $.defaults.pluginname or something? ...

Remove parent of a parent with jQuery and DOM

My html looks like this : <li> <div> <p class="delete"> <a href="#">X</a> </p> </div> <div class="friend-avatar"> <img src="" /> </div> </li> After clicking anchor tag in 'delete' paragraph I'm showing a popup (using jquery-alert) and if user selects 'Yes' I would like the whole li c...

How do I use jQuery in google code's wiki

I have a jQuery plugin up on google code http://code.google.com/p/jquery-html5upload/. I want to have a running example of the plugin on the project home page. How can I go about doing this? I can't figure out to include/use javascript in the wiki pages. Any help would be greatly appreciated. ...

jQuery's plugin jCarousel doubling width every time and sometimes even quadrupling the width of the scrolling DIV, why?

The carousel is horizontal, and has 3 items in view, and I am adding the elements by Ajax. Sometimes I see the width of the <ul> element underneath doubling and even quadrupling every time the "Next" icon is clicked on, so after some 7, 8 times, the width was displayed as scientific notation such as 1.27638e07px, which might be taken ...

JQuery Sheet Customization

Hi, I wanted to know if we can customize the jQuery sheet plugin according to user requirements, if yes how? I would also like to know more functions, operations of the sheet plugin. Can we change the functions internally? ...

Creating jquery plugins...

Hi there I am trying to create a jquery plugin to do ajax table pagination (i.e get the data and recreate the tbody when it is called. Can anyone suggest a tutorial that will show me how to do all these things? I am looking to adhere to the following points: 1) The plugin is to use the jquery ui syntax 2) The plugin needs to be usea...

Jcrop Thumbnali example

How can I implement Jcrop Thumbnail example which is there at the below link http://deepliquid.com/projects/Jcrop/demos.php?demo=thumbnail ...

media player like jquery media plugin which plays outside files

I am trying to use jquery media plugin, which is very simple to implement for the local files. I dont see an option to play the outside files. The jquery media plugin works fine when we implement like: Html: <a class="media" href="sample.mp3">Sample Mp3</a> Script: $('.media').media(); But this is not working when we implement like:...

jQuery-keyfilter plugin

How would I use the keyfilter plugin and allow everything except < and > http://code.google.com/p/jquery-keyfilter/ ...

Setting a cookie with jQuery Cookie plugin?

Hello all. I am trying to create a popup ad with a custom lightbox feel and I can get the popup to work, but it is not setting the cookie. Any ideas on what this could be? Since the code is so long, I am posting it as a GitHub Gist here: http://gist.github.com/501348 Thanks in advance all, Josh ...

jQuery attr() not working inside jQuery Validation plugin?! Returns undefined!

So I am using attr("alt") inside the "success" block in jQuery Validation plugin. However, attr("alt") returns undefined even though the attribute ("alt") is definitely defined. Here's my code: $(this).validate({ success: function(label) { var api = $('#' + label.attr("for")).qtip("api"); api.updateContent($('#' + ...

How to customize Arshaw's jquery event calendar

Hi all, In my current project, client's requirement is to use some event calendar, I looked at the Adam Arshaw's Jquery based event calendar, it is so nice and having more than 50% features which my client need. But I will have to customize the event calendar. In the calendar, the month and week views are fully resembling my requirement...