Include jquery ui function in plugin
I am wondering how I can include the drag functionality from the jquery UI library in a separate plugin I am modifying. I want to make a div draggable, but don't want to have to write my own method. ...
I am wondering how I can include the drag functionality from the jquery UI library in a separate plugin I am modifying. I want to make a div draggable, but don't want to have to write my own method. ...
HOw to generate onclick event in TreeMap ...
I'm trying to use jQuery Beauty Tip as a "context menu". I want to open the beauty tip manually, and close it manually. I use the trigger: 'none' option: $('#example15').bt({ trigger: 'none', contentSelector: "$('#example-15-content')", width: 400 }); But when I click outside the Beauty Tip, it hides. How can I stop it from hi...
Hi, I'm working on a site which uses the EZPZ tooltip jquery plugin, and I have the style of the page changing dramatically when a button is clicked, making the tooltip pointless. But, I can't for the life of me figure out how to unbind the event from the <li>. Here's the code that is used to actually set up the tooltip on the li's: var...
I have a jquery script which animates the background position of each element within a parent when rolled over. I am using backgroundPosition in my script which handles the animation of the background image. I am using $.event.special.hover to handle the hovering as it takes care of a lot of the usability quirks of a jquery nav. My prob...
I have two events that need to be executed in this order: tabs toggled into/out of view the browser navigating to a hash tag as it would normally (jumping down the page to the anchor) And I need it to work with the back button. I wrote my own function gotoanchor() which accomplishes the first two and because I am navigating to the p...
Hi, I am looking for 2 jQuery plugins: toolbar and listbox. Can somebody give any suggestions? Eric ...
HI, I am using afterSaveCell that fires if we modifies the cell then it get fires. My scenario is that i m doing batch update to the database on save change button. But when user edit the cell and got to the other cell then i log the modification in a array. But if user edit the cell and click on the Save Change button the cell focus n...
I have used JqueryUI plugin- date picker to display my date. The format is such that it has Fromdate & Todate. If I select fromDate: for example 09/28/2010 and If I select toDate: for example 09/30/2010. It should be like this such that todate is always the one which comes after the fromdate. But i want to validate such that if I cli...
what is the jquery plugin is in the right bottom of this page? http://www.suite101.com/content/rights-managed-vs-royalty-free-a57320 ...
Hi, Does anyone know of a jQuery plugin to implement this UI? Unfortunately I'm not able to find anything like that on Google. You can write a script on JQuery, but I would not want to waste time reinventing the wheel. ...
If I have a tag: <span class="utctime">2010-01-01 11:30 PM</span> I would like a jquery script or plug in to convert every utctime class to the current user's browser local time. I would prefer to find this before writing one. ...
Hi everyone this is my first post so I hope I am posting to the right place. I am trying to develop a dialog/modal plugin. this is my first plugin and I'm not sure if I have produced it in the correct way. The problem I am having is that the $.extend is not updating the settings object. I've got 2 elements using the plugin. the #dialog...
Hi All, given a hierarchical view on my asp.net mvc page is it possible to type in the search field and have the treeview dynamically filter out the tree as more letters are typed but leave the root nodes alone (like don't include north,south,east,or west)? Thanks, rod. [TextBox filter goes here] [treeview control below] /* I'm look...
Hi folks, I work with a lot of graphic designers and they are obsessed with designing scrollbars. I like jQuery's Slider plug-in pretty well. http://docs.jquery.com/UI/Slider However the code I have been using for mousewheel interaction is erratic and jumpy: $("#scroller").bind("mousewheel", function(event, delta) { var speed = 30...
hi guys and gals, i did a little jQuery two part animation for a friend to show/hide a block of text. it basically faded out a DIVs text and when that animation finished it hid the DIV. it worked perfectly so I decided to make it into a plugin. But now the same code in my plugin will not wait for my first animation to finish before tr...
I am having some difficulty in using the jQuery Validator plugin. I have a list of checkboxes with different name attributes and I can't seem to figure out how to ensure that at least one of them has been checked. Everything that I find on Google seems to only work when the name attribute is the same. Here is some sample code (updated...
Hi everyone this is my first post so I hope I am posting to the right place. I am trying to develop a dialog/modal plugin. this is my first plugin and I'm not sure if I have produced it in the correct way. The problem I am having is that the $.extend is not updating the settings object. I've got 2 elements using the plugin. the #dialog...
Hi, I am creating my own jQuery plugin. Here is the code which I have written till now: (function ($) { $.fn.customPlugin.defaults = { x: 'test', y: 'foo' }; $.fn.customPlugin = function (options) { var opt = $.extend({}, $.fn.customPlugin.defaults, options); return this.each(function () { ...
I have the code below that shows a throbber and makes a getJSON call to an MVC action when the user changes an entry in a select. This all works great except there is a default -- select -- element in the list for which I don't want the getJSON to run. However, I can't work out how to apply conditional logic to hooking this event. The...