jquery-plugins

How do I use a public function inside and outside of a jQuery plugin?

I am writing a jQuery plugin and need functions that can be called from inside as well as outside the plugin. Here is my code so far: (function($){ $.fn.bxSlider = function(options){ var defaults = { mode : 'horizontal', speed : 500 } var options = $.extend(defaults, options); var base = this; this.each(function(){ ...

jQuery plugin conflicts - please assist

The aim is to show a form which will update the div on the page with the result load this [page] click the linkto show the form submit the form When submitting, the result does not show in the div if the form had been hidden. after adding the code suggested in the below answers, I show the form, it gets submitted, but the data is n...

Limit Input text box with Jquery

So I need to have an input box in where people only is allowed to enter either the words "Yes" or "No". No other input is allowed. Does anybody out there knows a plugin or any other easy way to that with Jquery? I found a plugin named constraint (http://plugins.jquery.com/project/constrain), that can prevent the user from typing certain ...

How should jquery used in this plugin to Add,Edit & Delete?? Suggestions Please..

<html> <head> <title>Manipulation</title> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery-ui.js"></script> <script type="text/javascript" src="i18n/grid.locale-en.js"></script> <script type="text/javascript" src="jquery.jqGrid.min.js"></script> <link rel="stylesheet" type="tex...

fading elements inside a div with cycle

Hi! I've a div like this: <div id="fade"> <p> A </p> <p> B </p> <p> C </p> <p> D </p> <p> E </p> </div> I want to fade every letter in that div, and the cycle should only repeat once. That is it should start from 'A' and go till 'E' and then stop. Is there any jQuery lib for that? Edit: Thanks for all your response...

jQuery - sepcify a directory for cycle plugin

forget my question for a while... bad choice of words i am using this code for a jQuery Cycle Slideshow... script is here... you may skip it and proceed to question <script type="text/javascript" src="code_snipets/jquery.js"></script> <script type="text/javascript" src="code_snipets/jquery_plugin_cycle.js"></script> <script language="...

How to get jquery jScrollPane and jscrollHorizontalPane plugins working together?

I have a div where I must have both vertical and horizontal scrollbars stylized. I'm already using jScrollPane by Kelvin Luck. But I would like to integrate it with jscrollHorizontalPane, a mod based on the first. Has anyone able to make them work together? Any other suggestion will be very welcome. thanks. ...

Using jQuery UI Tabs with a custom HTML Layout

The markup required by jQuery UI Tabs is like following... <ul> <li>Tab1</li> <li>Tab2</li> <li>Tab3</li> </ul> <div> Panel 1 </div> <div> Panel 2 </div> <div> Panel 3 </div> That is good enough in some cases, but in other cases where SEO and usability are top priorities, this markup is not the better. I would have working...

How to share contents of a web page with social Networks and bookmarking them in on-line bookmark services??

Hi, I'm Looking for a free(or Open Source) Sharing Script to put it in my content pages(I do ASP.net). I want to allow my visitors to share contents(ex: articles) in social networks like Facebook or on-line bookmark services like google bookmarks. what's the best way to do that? i found JQUERY SHARING(you can see demo here) Plugin from t...

Preloader with JQuery OR Advanced Page Load Behavior with jQuery Progress Bar

We have a jQuery Progress Bar. Is there a way we can have the progress bar displaying the loading of an HTML page which has PHP, CSS & JavaScript and all in it? Like a preloader and when the page has been downloaded and rendered fully then display it. If not with progress bar can we make a preloader with jQuery? ...

Multimonth Calendar and Selected Dates Scenario with ASP.NET MVC ?

Hi, I am trying to demonstrate a web site scenario on my own. What i want to do is a multimonth calendar which can be filled with special days with a css class. I googled it and find some Js calander controls with customizable css.But i wanted to ask it first before i start coding and probably be wasting my time. Kind regards, Barbaro...

Vertical Loop Scrolling Images

Is there a plugin with similar functionality to this plugin, only it scrolls vertically http://www.maaki.com/thomas/SmoothDivScroll/#quickdemo ...

jquery-watermark plugin and HTML5 email input type not working correctly

diveintohtml5 says it's okay to start using the email form type. So I am trying it out on one of my forms. I'm using jQuery and a plugin called jquery-watermark. It makes the placeholder element work across browsers. The plugin still works on Firefox 3.6 but on Opera 10.61 and Chrome 6 the placeholder isn't rendered. <script type="text...

Implementing dirty indicator for 3 different divs within an ASP.NET page

I have an ASP.NET page that has three divs within the only form which renders as three jQuery ui tabs. All the three tabs have inputs and/or selects that gets submitted to separate web methods. On tab one there are two inputs of type submit, that redirects after committing the form to another page. Simultaneous edits are possible on al...

JQuery plugin for image gallery

Hi, I'm trying to find an image gallery plugin with an horizontal slider and opened with some kind of box. Integration of two different different plugins, one with slider and lightbox didn't work out. Thank you. ...

Jquey + jeditable table row edit multiple fields

Hello, I am trying to figure out the way to edit a row of table by button with jquery and jeditable. My aim is to have a "edit" button which will change desired row cells to edit mode. As per now I have: $(document).ready(function() { $("#addrowbutton").click(function() { $("#addrow").show(); }); $("#canceladd")....

Fancybox, how maximaze pictures using image controller?

Hi all! I'm using a fancybox to work with images in my Java Web Application. Here is some code of my.jsp: <c:forEach var="imageName" items="${requestScope.myCollection.imageNames}"> <a rel="image_group" href="/My_War/large/${imageName}.do" title="${imageName}"><img alt="" src="/My_War/small/${imageName}.do" /></a> </c:forEach> And her...

What is the best jQuery deep linking / history plug-in ?

I am looking to implement deep linking / back button functionality on a web site that uses jQuery and jQuery UI (tabs, dialogs...). I a new to this so I lack the knowledge to evaluate the different offerings in deep. So far, from what I read on the web, I have narrowed my choice down to jQuery BBQ and the Asual address plugin. Is there ...

jQuery Zoom Plugin

Hi! My issue is that I'm making a zoom plug in jQuery. The situation is that when I click on smaller picture it gets popup where I can scroll the picture means that i can change its width height on scroll dynamically and can move it means i can change its left n top position dynamically... my problem is that when picture gets popup, movi...

Live-updating jquery marquee

Hello. I'm looking for a pseudo-marquee with jquery, looking like the one on the twitter home page. The ideal features would be : Using an HTML list to work Updating with Ajax when less than X elements remains to display Stopping on mouse over with callback Does that exist somewhere, or should I just create it myself ? Thanks. ...