[jQuery] Re: Jquery cycle plugin and images included dynamically

2008-04-12 Thread Diego A.
I am finding it hard to understand your problem, but I'm guessing it may be because when the image is hidden, the cycle plugin cannot find its dimensions (hidden elements have dimensions 0x0). Instead of display:none, have you considered off-screen positioning or visibility:hidden instead?

[jQuery] Re: Slow tabs

2008-04-12 Thread alex
Actualy jquery tab is awfully slow!. On Apr 9, 10:10 am, J Moore [EMAIL PROTECTED] wrote: Try creating a test page with only the js code needed for the tabs. As for keeping content hidden during loading, I like to use a css class called hidden. /* css */ .hidden { display: none; } /*

[jQuery] Re: triggering clueTip with inline javascript

2008-04-12 Thread az
Hi Karl, As always, thanks for your help. Here is my test page: http://www.prep-u.com/demo/cluetest.html On the test page there are only 4 links. So obviously I could just bind clueTip the normal way. But my live page will have thousands of links in some cases. Since that's a lot of

[jQuery] Validation Plugin Add Row Example

2008-04-12 Thread HatemJaber
I am using the Validation plugin from http://jquery.bassistance.de/validate/demo which is a great plugin. I just found out after browsing the docs some more that it has the capability of dynamically adding a row of data. I would like to know how I can remove a row of data. After several attempts

[jQuery] can't prototype co-exist with jquery

2008-04-12 Thread sutra
Hi I implemented jquery tab on a Magento site that uses prototype (not my choice but it comes with it). After spending hour getting my tabs work properly, I am dismay to find that it disables the lightbox and the image slider:

[jQuery] Re: can't prototype co-exist with jquery

2008-04-12 Thread Karl Rudd
The noConflict() method is what you're looking for: http://docs.jquery.com/Core/jQuery.noConflict Karl Rudd On Sat, Apr 12, 2008 at 6:13 PM, sutra [EMAIL PROTECTED] wrote: Hi I implemented jquery tab on a Magento site that uses prototype (not my choice but it comes with it). After

[jQuery] Re: How to use jFrame Plug-In

2008-04-12 Thread tfat
bump :-) On Apr 12, 1:38 am, tfat [EMAIL PROTECTED] wrote: Can anyone pls assist. Thanks. Tony. On Apr 11, 3:04 pm,tfat[EMAIL PROTECTED] wrote: Hi, Trying to get the jFrame plug-in to work but unsure how to use it. (see:http://plugins.jquery.com/project/jframe) I have set-up

[jQuery] Links inside Sortables

2008-04-12 Thread Scott Sauyet
I seem to be having trouble getting my posts to show up in the UI list. Please excuse this cross-posting. == I'm having an odd issue with links inside sortables. I have a simple demo here:

[jQuery] Re: can't prototype co-exist with jquery

2008-04-12 Thread sutra
Karl, thank you so much. I had it figured after a google search :) t On Apr 12, 6:29 am, Karl Rudd [EMAIL PROTECTED] wrote: The noConflict() method is what you're looking for:  http://docs.jquery.com/Core/jQuery.noConflict Karl RuddOn Sat, Apr 12, 2008 at 6:13 PM, sutra [EMAIL PROTECTED]

[jQuery] Appending URL and Session variables to redirect script

2008-04-12 Thread Mintyman
Hi, I'm pretty new to using Jquery and javascript and don't quite know how to do something pretty simple. I have the following script that I am trying to build that will load another page in the background when a link is clicked. However, I don't know the syntax to set the CompanyID and UserID

[jQuery] traversing tabs

2008-04-12 Thread franco57
Hi please help on this problem I have data coming fron DB, put to html page through while cycle (php), so have many ancor tag. When click one of them appear a tabs menu problem is: when click the tab it doesn't chance content using jquery.tabs.js :: Version: 2.7.4 code script

[jQuery] Re: Slow tabs

2008-04-12 Thread upandhigh
it's not problem of Jquery Tabs - their code is pretty good written and fast enough. the problem why your tabs is loading so long is long response of `post` function in file munchkin.js (line 55) if you will profile your page while switching tabs you will found that about 99% of time is taken by

[jQuery] Re: Slow tabs

2008-04-12 Thread Klaus Hartl
On Apr 12, 9:32 am, alex [EMAIL PROTECTED] wrote: Actualy jquery tab is awfully slow!. Huh? Can you expand on this a little bit? --Klaus

[jQuery] Re: Tabs Validation

2008-04-12 Thread Klaus Hartl
I think in this case you should reconsider using tabs at all. If you want to use tabs you should put error messages on top of the tab pane, so that the errors are visible to the user. --Klaus On Apr 10, 4:50 pm, MarcelloP [EMAIL PROTECTED] wrote: Hi all! I need a little advice; in a page I

[jQuery] Re: Passing variables between two functions

2008-04-12 Thread J Moore
looks good. pointX is a global variable and can be accessed by both functions. What's the problem? On Apr 11, 6:13 am, Decagrog [EMAIL PROTECTED] wrote: Hi all, I've a newbie question about variable scope...essentially i've two anonimous function and i need to retrieve a variable generated

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-12 Thread J Moore
Calling a $.get() on each page change click kind of defeats the point of doing client-side paging. It will be basically be as slow as reloading an entire new page (and you have to add some UI to show that the page is 'loading...). If your db has 10,000 rows, then agreed, you won't want to dump

[jQuery] Re: Appending URL and Session variables to redirect script

2008-04-12 Thread Bob Woodard
The CompanyID should come from a URL variable e.g. www.mysite.com/mypage.asp?CompanyID=1064 The UserID will come from a session variable : Session(UserID) I'm not sure what language you're using, but in Classic ASP, you should be able to do the following (warning, no error checking

[jQuery] Re: [Validation]How to make two field check output one message?

2008-04-12 Thread Jacky See
I have put up a page to test. http://www.seezone.net/dev/dateValiation.html I need to use different method for different group of dates. In that case, a global dateRange method seems not possible? On 4月11日, 上午6時03分, Jörn Zaefferer [EMAIL PROTECTED] wrote: Jacky See schrieb: Hi, Some

[jQuery] Re: [Validation]How to make two field check output one message?

2008-04-12 Thread Aaron Heimlich
On Sat, Apr 12, 2008 at 2:34 PM, Jacky See [EMAIL PROTECTED] wrote: I have put up a page to test. http://www.seezone.net/dev/dateValiation.html Link should be: http://www.seezone.net/dev/dateValidation.html -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Appending URL and Session variables to redirect script

2008-04-12 Thread Mintyman
HI, Thanks for the help. You're right that i'm using classic ASP. However, what i'm trying to do is use a separate .js include file. I can get it to work with the code you've provided if I leave the script inside the ASP page, but I would like to keep it separate as I would like to use it in

[jQuery] Re: Appending URL and Session variables to redirect script

2008-04-12 Thread Mintyman
I just decided to keep the code inline within the ASP page: script type=text/javascript $(document).ready(function() { $(a.dload).click(function(){ var CompanyID = $(a.dload).attr(name); var UserID = %=session(UserID)%; var DownloadID = $(a.dload).attr(rev); $.ajax({ type:

[jQuery] Superfish current state

2008-04-12 Thread DRoss
Hi, I am using the Superfish plugin and have one small problem. I'd like the current state to be selected when you first land on the page. So I want the Television subnavs to be visible always and to fade out when you hover over another main nav and for those subnavs to fade in. Just like the

[jQuery] Re: Star Rating Plugin v2.2: Problem disabling cancel button

2008-04-12 Thread kadda
On Apr 11, 3:35 am, DragonI [EMAIL PROTECTED] wrote: Hi, I'm having a problem disabling the cancel button. Maybe it's just me ;) code says: //required: false, // disables the 'cancel' button so user can only select one of the specified values Here's what I tried: form id=form1

[jQuery] Re: Appending URL and Session variables to redirect script

2008-04-12 Thread Mintyman
I've managed to work out how to make my code apply specifically to an individual link. I found out how to use $(this) Thanks anyway! All I need now is to figure out the syntax of moving my script over into a separate .js file instead of being inline.