jquery-plugins

jquery listview?

I dont see any canned jquery ListView plugin. Does one just not exist? unless i get better advice here, gonna go down this route... http://www.west-wind.com/weblog/posts/300754.aspx to be clear, i basically want some funtionality that processes and ajax request, and for each item in the response outputs some html. The html would be ...

Using $(this) when calling an element-based plugin

Hi, I'm creating a plugin for jQuery. I wont attempt to explain the plugin here, so lets say for simplicity that my plugin opens an alert when you click on the targeted element. Here is a simple version of my plugin. (function($) { // Options var defaults = { message: 'Default message' }; var options = $....

Troubles with jquery jdMenu pluggin , updatepanel and partial postbacks

Hello everyone, I have a menu which contains a delete button to delete items from it. I put all inside an updatepanel to make partial postbacks. The problem is after i made the post back the jquery jdmenu pluggin stops work. I suppose i should include something like this Sys.WebForms.PageRequestManager.getInstance().add_endRequest(Ini...

Using scrollTo to move along the x axis

Right, last question for a while! I am creating a horizontal portfolio site and am looking for some help using the scrollTo plugin in creating a next/previous style navigation for the user to flick through the images. My HTML is: <div id="contentRight"> <ul id="direction"> <li id="next"><a id="forward">Ne...

jQuery LiveValidation call function on failure

I am using the LiveValidation plugin http://livevalidation.com/ to validate some input fields on my page. I want to be able to call a function when the validation fails to disable the save button. I have read through the terrible documentation on this plugin and I can not find how to do this. My example code looks like this //create t...

Facebook like AutoSuggest texbox using jquery in asp.net

Hello Guys, I need to implement Facebook like AutoSuggest texbox using jquery in my asp.net application. I googled a lot about this but only found PHP links :( Any pointer or suggestion will be really helpful. thanks ...

jQuery.simplemodal-1.3.5 plugin: class selector disappears mysteriously

Hi I have encountered the following issue: A class definition added (programmatically) to an element inside the modal popup while the modal is active, is not retained after the model is closed. This is in contrast to a situation where the class definition is retained on the element after “hiding” and “showing” it via standard jQuery m...

jQuery Serialscroll CSS problem

Hi there, I'm having a terrific problem with an implementation of serialscroll. I've set it so that each list item is 100% width, to get a full screen slideshow going. You can check out the full code here: http://www.reverenddan.net/so/ The CSS is fairly simple: #slideshow { width: 100%; height:100%; margin: 0; padding: 0; position:...

jQuery Fancybox get id value of a

Hi all, what I'm trying to do is get the ID value of the referring a. The code for my a looks like: <a class="photoBig" id="<?php echo $photo['id'] ?>" href="<?php echo $f->buildPhotoURL($photo, 'large') ?>" title="<?php echo $photo['title'] ?>"> I'm using phpFlickr to assign the ID's plus some various other things, which works fine....

jQuery datatables - fnGetHiddenNodes() example

Hello, I'm using jQuery datatables plug-in on my HTML Table. I wanted to know how do I go about using the fnGetHiddenNodes() function to extract a particular row from my table. More specifically, I've this as one of the columns tr td align="center" input type="checkbox" id="caseConsent(index)" name="caseConsent" input type="hidde...

Displaying tooltips on HTML <option> tags

Either using plain HTML or jQuery assisted JavaScript, how do you display tooltips on individual <option> elements to aid the decision process (there is not enough room for a different kind of control and some help will be needed). Can this be done though a plugin or similar? I have tried a few tooltip plugins for jQuery with no succes...

how to remove the click event using jquery

Hi, I have a jquery code to set the click event as follow: $("#somediv").click(function() {alert('test')}); How do I remove the above click event? it seems that the .click() method will always append the exisiting ones. ...

NEED HELP. Author has abandoned to fix this jQuery plugin!

Hi, I am trying to implemented this jQuery news ticker style plugin from http://www.makemineatriple.com/2007/10/bbcnewsticker Like mentioned in the comments (around May) there is a bug and the author lost its will to give a bug fix. The bug is: In Mac browsers (Firefox, Opera and Safari, all OSX) - links (a href) don’t ‘work’ until ...

dynamically load the web page into jquery tooltip

hi, I want dynamically load the content of a webpage as a tooltip using jquery.Is there any jquery plugging or mechanism to do it? Thank in advance! ...

Strange behavior in javascript

I basically have a ul list where each li element is a radio group. I have one other function called showScores which looks like this : function showScores() { //Do heavy processing here } I am using flot plugin for graphs & Paint function actually calls $.plot only ( from flot.js) So basically everytime a user changes any radio ...

Trouble with Cookie persistence in IE

Hi all, I am setting my cookie when user click a certain link on my web page. I am using jQuery Cookie plugin developed by Klaus Hartl. To set the cookie value I do the following: $.cookie("lanVal", "tv", {expires: 3}); But when testing the cookie functionality, I see that IE does not save the cookie properly. All other browsers ret...

Looking for jquery text paging component.

Basically it should be comparable to jquery-ui tabs, without the tabs (on top) but with navigation buttons (below) instead (first, prev, next, last). Do you know of such a plugin? I googled around a bit, could not find anything. It shouldn't be too hard to write myself but it's better to copy something good than too implement something ...

jQuery autocomplete: how can I remove one character from the inserted value when it doesn’t match?

I am using "jquery.autocomplete.js"(Version 1.1). My autocomplete configuration is multiple: true, multipleSeparator: ",", mustMatch: true, In my search list "javascript" is a value.So when I am typing "javas" it is showing the "javascript" value but when I am typing "javab" it is removing the whole word.It is happening for the "mustM...

printing jquery colorbox content

I am using colorbox to AJAX some external HTML onto a page. My client wants to print this content direct from the page, therefore i used a print CSS loaded into the head of the document with colorbox's onComplete event hook. The content that is loaded is a raft of legacy tables with inline styles which i can't seem to overwrite with th...

Jquery - Flot, How can I only show points and not lines?

Okay to get started I am using Jquery-Flot to plot a radial graph I have found a plug in to create a spider graph see API here: http://www.jumware.com/Includes/jquery/Flot/Doc/JQuery.Flot.spider.html Now it works all nicely bar the fact I dont want to show the lines that connect the points. Usually with: points: { show: true}, lines: ...