I am using qTip (jquery.qtip-1.0.0-rc3.min) and jQuery (jquery-1.3.2).
When using qTip in IE with non-dynamically loaded content qTip works fine. However, when loading content via an ajax call the qTip content does not resize once content is loaded. I have tried adding an updateWidth on the various callbacks without any luck. In fact, w...
Hi there,
I'm really not a JavaScript genius or anything so please bare with me.
I am using a jQuery plugin called "tinySort" that allows you to sort items for example in an unordered list (it's rather nice!). Doing so, you simply call the following code:
$("ul#list > li").tsort("a[title]",{orderby:"title",order:"asc"});
This code s...
I'm trying to change the format of the month that displays in the popup (not in the date that the picker actually returns. I can't find any option anywhere to do this, is there a hack like using substring() or something?
I'm trying to change what's normally displayed as:
<div class="ui-datepicker-title">
<span class="ui-datepicker-...
I am looking for something similar to Facebook massage "To" field.
ExtJS has very nice UI component called Ext.ux.BoxSelect. Is there anything similar for jQuery?
...
Hello everybody,
Referring to this post and this one. I'm trying to implement tag search for my blog/website something similar to SO tag system using jquery autocomplete plugin, I'm using jquery 1.4 latest version so I'm not sure whether it works with it or not, I've used this plugin before once. So without further jibr-jabr here is my ...
Hello everybody, I'm trying to build an autocomplete using jquery plugin autocomplete from this site.
Now I managed to achieve autocomplete using local results pre-loaded into website as a part of document ready function, its quite easy doing it localy.
Here is with what I struggle with, pulling results from php file. Here is how I tr...
I just searched for jQuery type ahead plugins, but none of them really looked to be very good. Can anyone recommend a good type ahead plugin? I just need a textbox that shows email addresses from our DB as users type in said textbox.
Should I just roll my own?
...
I've been looking around for a decent jQuery feed/XML parser and found good plugins like jFeed and jParse (among a few others). None of these support retrieving an external feed though, which is something I'm after.
Pretty sure this is down to jQuery's $.ajax() method rather than the plugins themselves (as they'll be built from this).
...
hello,
I have been following a tutorial on creating a style switcher with PHP and jQuery, now in the tutorial the PHP function uses get data, which is not available in codeigniter, I was hoping someone would be able to help me tidy up my sorry attempt?
My PHP function
function setBackground() {
$style = $this->uri->segment(3)...
Is there a simple plugin or some robust code that would allow me to animate PNGs with a simple start and stop method? TSM, Alex.
[Edit: I made a jQuery plugin that animates PNGs. Will post when it's all done.]
...
Hi there
Am having a few issues with the Jquery Validation plug in, and wondering if anyone can assist.
At the moment, the plug in works with any form elements currently on the page
$("#addRelease").validate({
submitHandler: function(form) {
form.submit();
}
});
However if I dynamically create a form on a butto...
I use Jquery form validation to validate form input data. There is a
confirm
check on
submit
of this form.
.
The code is:
<script type="text/javascript">
function Confirmation(){
var answer = confirm("Do you really want to withdraw this amount of money from your account?")
if (answer){
return true;
...
I go throw the questions here and search the web for image zoom. I found one really nice: http://www.php-help.ro/examples/mootools1.2_image_zoom/ , the problem is that I'm not using MooTools and I can't use it. To find anything similar in pure Javascript or JQuery will be great.
The requirement is that the zoomed are can be moved on th...
I was wondering if someone could help me using the JQuery validation plugin. I need to add the ability to make sure that a field only contains letters, numbers, underscores, whitespacke, and dashes. I currently have the following js code (not including the call to jquery and the plugin .js files)
$(document).ready(function() {
$("#inf...
I am trying to use jQuery Fancybox to popup a youtube video from a website. I have followed the instructions from the fancybox.net site, but no joy, the video simply appears inline.
I have all the .js files in place, the .css file in place, but as you can see here: http://www.rouviere.com/~idp2/ideaPeople.html clicking on the image only...
I'm trying to add functionality to the jQuery.notice.js plugin written by Tim Benniks. (http://code.google.com/p/jquery-notice/)
I want to pause the noticeRemove() function if you're hovering over the .notice-item . Here's the function:
noticeRemove: function(obj){
obj.animate({opacity: '0'}, 600, function(){
obj.parent().a...
On our site we are using an embedded sign-up form from our ESP that uses the jQuery validate plugin. We are customizing the form a bit, adding a couple of custom fields (first name, last name) and we want them to be grouped so there is only one error message for both the fields.
Since the form's validator has already been initialized I ...
Hi Everyone,
I am trying to add my own functionality to a jQuery plugin and to be honest it is not going well, I am using the easySlider 1.7 from here
My idea is to use the paginated version, there is an example on the linked site above, but instead pausing when the user clicks on one the numbered links, I want it to skip to that sli...
I develop a jQuery plugin which produces HTML output, currently something like
<ul>
<li><img></img></li>
...
</ul>
But actually, I would like to let the user of my plugin chose the HTML markup which gets generated, so for instance he passes a template string from which my plugin produces the output. But I don't know how.
Are ther...
In reference to another question I found : http://stackoverflow.com/questions/1060687/how-can-i-dynamically-resize-the-jquery-colorbox-plugin
If I wanted to resize the colorbox inside of a callback, how would I call it? Also, would it be possible disable scrolling until the resize was complete, then enable it?
$("a[rel='colorbox']"...