[jQuery] Re: Jquery noconflict not working

2010-01-17 Thread Mike Alsup
The error I see is on this line: setTimeout('chatHeartbeat();',chatHeartbeatTime); Instead of passing a string as the first arg to setTimeout, pass the actual fn reference: setTimeout(chatHeartbeat, chatHeartbeatTime); When passing a string it will be evaluated in the global context. But your

[jQuery] JQuery Star Rating Plugin not calling Callback?

2010-01-17 Thread Yoni Nijs
Hello all, I installed the star rating plugin, which works great. Except for one, that my callback is never called. I tried everything, but still no relief :( This is my HTML code: Stem zelf:

[jQuery] Re: Superfish - Arrows don't display on dropdown

2010-01-17 Thread initialsbr
Also, it appears that the menu works fine on the home page but not on any of the individual pages. Any suggestions there? On Jan 17, 7:57 pm, initialsbr wrote: > I'm really excited to use this bu the arrows aren't displaying on my > menu. Here's the code I've got in the ... > > > > script>

[jQuery] Jquery noconflict not working

2010-01-17 Thread Alex Crooks
If you look at the page; http://www.sars-clan.co.uk/forums/ (ignore styling etc as its a work in progress) In the header source the forum system myBB calls prototype and then I call jquery and the noconflict; jQuery.noConflict(); jQuery(document).ready(function($){ //my jquery stuff

[jQuery] Superfish - Arrows don't display on dropdown

2010-01-17 Thread initialsbr
I'm really excited to use this bu the arrows aren't displaying on my menu. Here's the code I've got in the ... $(document).ready(function(){ $("ul.sf-menu").supersubs({ minWidth:12, maxWidth:27, extraWidth: 1,

[jQuery] Re: background mouseover fade effect

2010-01-17 Thread MorningZ
For sure check out the "color.js" plugin (Google "jQuery color.js" and you'll find it)... it can animate the backgroundColor property, as for color, instead of "none", you should be able to use "transparent" or better yet, just fade to the current page/DOM object background color On Jan 12, 5

Re: [jQuery] background mouseover fade effect

2010-01-17 Thread Nathan Klatt
On Tue, Jan 12, 2010 at 4:25 PM, 1.am.W1z4rd <1.am.w1z...@gmail.com> wrote: > I need to add a mouseover effect to the navigation for a site that I'm > building.  I need the backgroundColor to fade from none, to black, and > then on mouseout, I need it to fade back to none.  This would be easy > if

Re: [jQuery] some basic questions

2010-01-17 Thread Nathan Klatt
On Sat, Jan 16, 2010 at 12:03 AM, Enoch wrote: > I have a tabbed page using jquery themes with the tabs structured as > s.  The first tab has a form that you can fill out. > The second tab, when clicked is supposed to bring up a summary of your > form and offer a submit button. Aside from the jQu

[jQuery] Re: jQuery Form File Download Error

2010-01-17 Thread Mike Alsup
> I have a form in which one of the submit buttons initiates a download > of a file. Under normal circumstances this works perfectly, however, > if I introduce the JQuery Form plugin as follows: > >         var options = { target: "#dialog" }; >       $('#viewform').ajaxForm(options); Try setting

[jQuery] Re: autocomplete returning multiple identical values in dropdown

2010-01-17 Thread MorningZ
You pulling the data from server side code? if so, it's that codes responsibility to return unique values On Jan 17, 4:25 pm, rumremix wrote: > The autocomplete plugin I obtained > fromhttp://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/is > working great aside from one significant

[jQuery] autocomplete returning multiple identical values in dropdown

2010-01-17 Thread rumremix
The autocomplete plugin I obtained from http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ is working great aside from one significant problem: it is returning multiple identical results in the dropdown. Say I wish to search for all records that contain 'march' in the month field and

[jQuery] Re: Select tab from link

2010-01-17 Thread MorningZ
if your link follows the pattern of having it's ID as "linkXX" where "XX" is the zero-based index of a tab, then the live binding will "pick up" any new instances of such links in your AJAX responses/ additions btw, i had a typo... "lit.length" should be "hit.length" On Jan 17, 11:06 am, CMI_Guy

Re: [jQuery] Passing in a parameter

2010-01-17 Thread Michael Geary
If your current code in the body tag is literally: onload="getStuff(data)" then 'data' must be a global variable. You can reference this global variable directly in any of your JavaScript code. For example: $(document).ready( function() { getStuff( data ); }); If that's not exactly what you

Re: [jQuery] Re: hide() works fine - fadeOut() is not working - Don't understand....

2010-01-17 Thread Nathan Klatt
On Sun, Jan 17, 2010 at 6:17 AM, Reinhard Vornholt wrote: > After switching to jQuery 1.4 everything works fine. > My guess is, that it had something to do with the css of my . It > had a position:fixed attribute. But thats just a guess. Glad you got it figured out but it wasn't the position:fixe

RE: [jQuery] Re: Real time AJAX

2010-01-17 Thread Rick Faircloth
You have to remove yourself by logging into Google groups. And why don't we include instructions at the bottom of every page on how to remove oneself from the mailing list? There are sufficient questions on how to do this from users that it would seem to warranted. Rick From: jquery-

Re: [jQuery] Jquery DOM

2010-01-17 Thread brian
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F On Sun, Jan 17, 2010 at 10:50 AM, Louie39 wrote: > I have a form that is using jqury to post data (ajax) to another page > and returns the result, but after the new content is loading, all > l

Re: [jQuery] Passing in a parameter

2010-01-17 Thread brian
Do you have some function inside of the ready() block that you could pass the data to instead? Could you post some of your code? On Sat, Jan 16, 2010 at 11:57 PM, Patrick wrote: > Hi all, > I have a newbie question. You know how you can pass a variable to a > JavaScript function like this: > > on

[jQuery] Re: How to pass in data

2010-01-17 Thread Patrick Kennedy
I guess this is the answer to my question -- bind( type, [data], fn ) If I use bind, I can pass in data to event handlers. ~PK On Mon, Jan 18, 2010 at 12:48 AM, Patrick wrote: > What is the best way to get data into jQuery? Obviously, jQuery > separates data and presentation.  How can I pass i

[jQuery] How to pass in data

2010-01-17 Thread Patrick
What is the best way to get data into jQuery? Obviously, jQuery separates data and presentation. How can I pass in a parameter? Below, you can see how I called a method with a hardcoded value, but I want to dynamically pass in a value from web page. $(document).ready(function() { /* tweet stat

[jQuery] Re: Select tab from link

2010-01-17 Thread CMI_Guy
MorningZ, Thanks for your reply. Something was missing from your syntax so I made one small change to your script: $(document).ready(function(){ var $tabs = $("#tabs").tabs(); $("a[id^='link']").live("click", function() { var hit = this.id.match(/^link(\d+)$/);

[jQuery] jQuery Cycle Plug Issue with Multiple SPANS and single call

2010-01-17 Thread JoshL
Using the awesome jQuery Cycle plugin, Im working on a "wall" with each title rotating between pics but Im not getting any love. The page is setup like this:

Re: [jQuery] Re: Real time AJAX

2010-01-17 Thread John Arrowwood
Have you looked at Web Sockets? On Sun, Jan 17, 2010 at 5:17 AM, Izad CM wrote: > Hmm, I get what you mean, but how exactly do I update the label > text in real-time? One of the better ways that I've discovered is by > using "long polling" technique ( > > http://blog.perplexedlabs.com/2009/0

[jQuery] Re: help combine LightBox & jMyCarousel effect?

2010-01-17 Thread bhupal
@JamaicaMan .. yeah a sort of.. i wonder why all the carousel around net are just limited to 3 images! i have posted this after googling a lot on horizontalcarousels. i want the effect in marquee like fashion that's when i hover the carousel it should stop and when i mouse out it should slide!

[jQuery] Re: Select tab from link

2010-01-17 Thread CMI_Guy
Thanks MorningZ.. But, it "appears" that your script is missing syntax somewhereI do not know enough about javascript to find the error. Any ideas why it's not showing as valid? $(document).ready(function(){ var $tabs = $("#tabs").tabs(); $('a[id^='link').live("click", function

Re: [jQuery] After donating how do I download a book title?

2010-01-17 Thread Nicolai Constantin Reuschling
Brett, have you even read the website: http://jquery14.com/donate "The jQuery Project will send you an email with instructions for downloading your e-book. Please do not contact the conservancy regarding your book. E-books will be distributed starting on Tuesday, Jan 19th." Regards, Nicolai

[jQuery] jQuery 1.4 and Broken UI Dialog Animations

2010-01-17 Thread Scott Gibson
I dropped the new jQuery 1.4 into my site, and suddenly every dialog window stopped working. Simple dialog code no longer works: $(div).dialog({show: "drop"}); It will play the animation, but when the animation finishes the dialog disappears. I've tried this with jQuery UI 1.7.1, 1.7.2, and 1.8a

[jQuery] Re: jQuery 1.4 & LiveQuery

2010-01-17 Thread pastel.pro
I'm not using blockUI and livequery doesn't work well with jquery 1.4 (with 1.3 it's perfect). Livequery often work activates when I lunch firebug (strange...). So impossible to understand why it doesn't work with firebug... live() function needs an event, whereas livequery just execute the functi

[jQuery] Passing in a parameter

2010-01-17 Thread Patrick
Hi all, I have a newbie question. You know how you can pass a variable to a JavaScript function like this: onload="getStuff(data)" Which is done via the BODY tag. Now, jQuery uses $(document).ready (function() }); My problem is simple: I want to pass in a variable to the ready (function(). Whe

Re: [jQuery] Re: help combine LightBox & jMyCarousel effect?

2010-01-17 Thread Patrick Kennedy
Basically, at the bottom of the .ready(function(), I pass a tweet status id number, so that I can only pull tweets via Ajaxx with a status_id greater than (newer than) the current - $(document).ready(function() { $.ajaxSetup({ error:function(x,e){ if

[jQuery] s

2010-01-17 Thread CMI_Guy
s

Re: [jQuery] Re: Mega menu, but the good one.

2010-01-17 Thread Charlie
superfish is fairly easy to program using the onBeforeShow option. Using jQuery css functions you can make position changes to subs. There is a bit of a mystique about "mega menus" . Reality  of using UL LI structure is you can  put multiple columns inside an LI using most block level container

[jQuery] Re: Mega menu, but the good one.

2010-01-17 Thread Michal
no one? On 14 jan, 11:46, Michal wrote: > I came across quite some examples of the so called "mega menu". But > there just doesnt seem to be 1 version that rules them all. > > What i really would need is a auto calculate size in the menu just > like on;http://shop.puma.com. There menu does not go

[jQuery] Re: Real time AJAX

2010-01-17 Thread Izad CM
Hmm, I get what you mean, but how exactly do I update the label text in real-time? One of the better ways that I've discovered is by using "long polling" technique ( http://blog.perplexedlabs.com/2009/05/04/php-jquery-ajax-javascript-long-polling/ ). What do you think? On Jan 17, 12:16 am, was

[jQuery] Re: Disable Submit

2010-01-17 Thread ryan.j
or you can bind to $("#your-form").submit(function({ ... }); if you're making your JS unobtrusive On Jan 16, 6:41 pm, Viz skillipedia wrote: > You will need just this tiny js script: > > function  disableOnSubmit(form ){ > > for (var i = 0; i < form.length; i++){ >                 var e = form.e

[jQuery] Re: hide() works fine - fadeOut() is not working - Don't understand....

2010-01-17 Thread Reinhard Vornholt
After switching to jQuery 1.4 everything works fine. My guess is, that it had something to do with the css of my . It had a position:fixed attribute. But thats just a guess. On 14 Jan., 23:08, Reinhard Vornholt wrote: > Hello group, > > ich am fairly new to jQuery and using it with my wicket appl

Re: [jQuery] New forum completely inaccessible

2010-01-17 Thread Bertilo Wennergren
Andre Polykanine wrote: the new jQuery forum at http://forum.jquery.com/ is inaccessible for blind and visually impaired persons. For instance, I can't create a topic because my screen reading program can't find the appropriate edit boxes to post message in. I don't know if it's any comfort to

Re: [jQuery] New forum completely inaccessible

2010-01-17 Thread Massimiliano Marini
> I would vote for using both the email list and forums. > I would definitely not use the forum often since it requires opening a > browser > and going to site, getting to the forum, logging in, etc., etc too much > trouble. I agree with you, but right now I'm a little bit confused: - this li