[jQuery] Re: The difference between jQuery, jQuery UI, and Plugins...

2008-10-11 Thread henson Li
Great. Thx. 2008/10/11 Richard D. Worth [EMAIL PROTECTED]: Someone asked tonight on the jQuery UI maling list about the difference between jQuery, jQuery UI, and Plugins. This may not be new(s) to some of you, but my answer turned out to be rather lengthy, so I thought I'd share it here as

[jQuery] jcarousel and nested lists

2008-10-11 Thread vinci
Hello everyone. I would like to modify jcarousel to only scroll a certain number of pixels, rather than to the next number of items as setup in the settings. Ie instead of scrolling 3 items, i would like to scroll 200px. I am using jcarousel as a vertical menu. The problem has arised because I

[jQuery] Superfish hover working improperly in IE

2008-10-11 Thread DaveByDesign
First, kudos to Joel Birch for creating a wonderful menu plugin in Superfish, but I'm sure it's no surprise to anyone that what works fine in Firefox causes trouble in IE. In my case, it is simply the MouseOut being triggered prematurely in IE, so that the drop-down menu hides when you are still

[jQuery] Load the Jquery.js in IE6+ only

2008-10-11 Thread Ganesh
HI, I am new to Jquery. Basically I am a ASP.Net developer. From past 2 days I'm playing with Jquery. The Jquery is compatible to IE6+. My ASP.Net application can execute on IE6 and FF1.x. So, I would like to load the JQuery.js and other Jquery utility javascript only on IE6+ browsers. I dont

[jQuery] JQuery not loaded for my ASP.Net application in Firefox 3.x

2008-10-11 Thread Ganesh
I am new to JQuery. I just downloaded the latest version of Jquery and included it into my webpage. Then did a small experiment. Its work fine in IE7. But in FireFox the Jquery.js is not loaded. It showing the authentication dialog box. Please help me to override this authentication box. Thanks

[jQuery] jQuery.noConflict() -- still have 1 conflict

2008-10-11 Thread Jub
Hi gang, I'm currently using both jQuery Scriptaculous archives. (I'm phasing out Scriptaculous, but it's happening in stages.) I'm using var jca = jQuery.noConflict(), but one line in particular is still refusing to play with scriptaculous.src: jca(helppanel).hide(slow); No error message in

[jQuery] Load the Jquery.js in IE6+ only

2008-10-11 Thread babGanesh
HI, I am new to Jquery. Basically I am a ASP.Net developer. From past 2 days I'm playing with Jquery. The Jquery is compatible to IE6+. My ASP.Net application can execute on IE6 and FF1.x. So, I would like to load the JQuery.js and other Jquery utility javascript only on IE6+ browsers. I dont

[jQuery] Checkbox onchange submit form

2008-10-11 Thread dkoper
Hi, I'm trying to submit a form by an onchange event of a checkbox and show the results in a div on the same page...The trouble I'm having is with the checkbox input type=checkbox name=instockOnly id=inStockOnly value=1 / Now, I'm using jquery with the forms plugin,...

[jQuery] Re: Superfish hover working improperly in IE

2008-10-11 Thread Joel Birch
Hi David, David Kerns and I recently tracked down an issue with the hoverIntent plugin combined with Superfish which causes this bug in IE. See if the bug disappears if you remove hoverIntent and if so, you can replace hoverIntent with this newer plugin, which we have tested to work great with

[jQuery] Re: form/validation plugin questions

2008-10-11 Thread Jörn Zaefferer
Take a look at the available options: http://docs.jquery.com/Plugins/Validation/validate In this case, showErrors, errorPlacement, errorContainer and errorLabelContainer should be interesting. You can use the remote-method to do serverside validation:

[jQuery] Unhook already hooked function to click

2008-10-11 Thread XeroXer
Hi! I am making a effect that when you click a image the large image is opened in a absolute positioned div above everything else. Then a close link is created at the top of the page an clicking that will close the image again. The problem I am having is that people can click another image while

[jQuery] Tablesorter asking authentication dialog in FireFox 3.0

2008-10-11 Thread Ganesh
Hi All, I am new to JQuery. Basically I am a ASP.Net developer. I just implemented the Table sorter in my test application. Its works well in IE7. But when I run the page in the FireFox 3.0, it asking the authentication like user name and password. If I did not enter the info. then the

[jQuery] Efficient Multiple Slide-Fade Animation Rewrite

2008-10-11 Thread arthaus
Hi, On a page, I have THREE slide-fade animation. And currently I'm replicating three instances the following code. $(document).ready(function() { $('#topShade').hide(); $('#trigger_sitemap').bind(click, function () { $('#topShade').animate({

[jQuery] Re: Unhook already hooked function to click

2008-10-11 Thread BB
Yes, you can unhook/unbind all events with .unbind() or just remove the .click() with .unbind(click). See here: http://docs.jquery.com/Events/unbind#typedata On 11 Okt., 14:41, XeroXer [EMAIL PROTECTED] wrote: Hi! I am making a effect that when you click a image the large image is opened in

[jQuery] Re: Looking for a pop window to use for editing data in a table

2008-10-11 Thread Ying Zhang
http://groups.google.com/group/jquery-en/browse_thread/thread/b74e7270f524d413?hl=en# On Fri, Oct 10, 2008 at 4:06 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I'm looking for some kind of modal window like the UI dialogue that may do true form submission and refreshes the parent window.

[jQuery] JSON Jquery Load Animated GIF

2008-10-11 Thread prakash123
Hello I have an animated GIF load, till the DOM is loaded !-- Page Uploading Progress bar Script -- div id=loading style=position:absolute; width:100%; text- align:center; top:300px; Loading Tax Software ... Please wait...br img src=imgs/progress_bar.gif border=0/div script var

[jQuery] how to implement a repeatly jeditable plugin JS?

2008-10-11 Thread Davis
hi all, i am using jeditable plugin to implement some feature that accept user comment and save to the database, it is work fine for a single comment entry, but what about if it will have a dynamic entry as following shown. I am not familiar much about jquery, so i want that script can change

[jQuery] Re: display problems on absolute

2008-10-11 Thread Wildleaf
Is there a better place to ask this? The tooltip plugin page (http:// bassistance.de/jquery-plugins/jquery-plugin-tooltip/) says to visit here to ask questions - so i am at a loss. On Oct 9, 8:57 pm, Wildleaf [EMAIL PROTECTED] wrote:

[jQuery] Re: display problems on absolute

2008-10-11 Thread Wildleaf
Nevermind - I fixed it by applying position: absolute to the #tooltip element. On Oct 9, 8:57 pm, Wildleaf [EMAIL PROTECTED] wrote: http://www.devsnapshot.com/transpack/bags.php?section_id=1product_id=1 I am working on a mockup for a website using the jQuery tooltip plugin.  I have

[jQuery] Re: JSON Jquery Load Animated GIF

2008-10-11 Thread Michael Geary
Remove that first script completely, and in your getJSON callback, add: $('#loading').hide(); -Mike From: prakash123 I have an animated GIF load, till the DOM is loaded !-- Page Uploading Progress bar Script -- div id=loading style=position:absolute; width:100%; text-

[jQuery] Re: Load the Jquery.js in IE6+ only

2008-10-11 Thread Michael Geary
I don't quite understand. You say you do want to load jQuery in IE6+, but you don't want to load jQuery in IE6. What does that mean? It sounds contradictory. (The + in IE6+ simply means IE6 or greater.) jQuery also supports Firefox 1.5+. You do want your jQuery code to run in Firefox as well,

[jQuery] Re: how to implement a repeatly jeditable plugin JS?

2008-10-11 Thread Davis
i can assign same class to those div ie div id=c_1 class='e'/div div id=c_2 class='e'/div and use $(.e).editable(save-comment.php?s= + x_c_1 but still got a problem how to access different hidden value assign a variable to php accordingly? appreicate for any input. On Oct 11, 10:07 

[jQuery] Form plugin using ajaxSubmit to fill initial values into form

2008-10-11 Thread wyo
I'd like to read the initial values of the input fields from a DB (php script) with ajaxSubmit. So far ajaxSubmit didn't fire the request to my php script. See sample at http://www.orpatec.ch/test/formdata.html (view source) Is there a sample anywhere which does about the same? Besides how are

[jQuery] Re: jQuery.noConflict() -- still have 1 conflict

2008-10-11 Thread Michael Geary
What version of Scriptaculous are you using? There is a known conflict between 1.7.x and jQuery. Updating Scriptaculous to the current 1.8.x fixes it. I don't know if that's the issue you ran into (actually I think it would cause worse problems than that). That's probably about all anyone can

[jQuery] Re: Efficient Multiple Slide-Fade Animation Rewrite

2008-10-11 Thread Michael Geary
Without seeing the other two instances of your code, I assume that the things that vary among them are the two ID selectors and the two text messages, is that right? Then it's a simple matter of turning your code into a function: function slider( idShade, idTrigger, textView, textHide ) {

[jQuery] Page running slow

2008-10-11 Thread Dr3adl0ck
Hi, I have a page that has several event listeners, some using the LiveQuery plugin. After about 5-10 minutes the page starts to get really bogged down, and I notice a 3-5 second delay on some events that normally occur very quickly. This happens whether I'm using the page, or if I just leave

[jQuery] Buggy Animation

2008-10-11 Thread Greg G
I have some animation in the top navigation bar of my website [http:// www.silverchild.com/index_2.htm]. When I view the site in Firefox, the animation works every time you click a button. In IE, the animation does not get triggered consistently after the first click. In fact, after a few

[jQuery] Re: Tablesorter asking authentication dialog in FireFox 3.0

2008-10-11 Thread MorningZ
The problem is IIS permissions on the tablesorter.js file... chances are you copied it into your project using Windows Explorer and *not* through Visual Studio or Web Developers interface (which when it copies, will set the appropriate permissions to the IUSR_MACHINENAME account. On Oct

[jQuery] Re: Load the Jquery.js in IE6+ only

2008-10-11 Thread stuartloxton
In IE you can use conditional comments, these AREN'T part of W3C standards however they do not break validation. To include jQuery.js in IE browsers ABOVE IE6 then use: !--[if gt IE 6] script type=text/javascript src=/path/to/jquery.js/script ![endif]-- To include in IE browsers above IE6

[jQuery] Re: JSON Jquery Load Animated GIF

2008-10-11 Thread stuartloxton
I would probably use $('#loading').remove(); because I doubt your going to put the loading bar back in. End script: script type=text/javascript $(document).ready(function(){ $.getJSON(scripts/data/country_data.js,function(jsonData) { $.each(jsonData, function(key,object)

[jQuery] jQuery Package Downloader

2008-10-11 Thread stuartloxton
Just to let you all know even though this is my first post it may seem a tad spammy but it's not. It just happens I didn't have an account on general discussion yet. I've just kind of alpha released a super small jquery downloader. Allowing you to choose exactly what parts of jQuery you need

[jQuery] Error: $(#slider).serialScroll is not a function

2008-10-11 Thread designjockey
Hello, Can someone please help me, I am trying to use this with the On Demand theme for wordpress and i get the below error. I am a designer not a coder, so I am finding it difficult to wrap my head around this problem... please help... digital_deejay at hotmail.com Error:

[jQuery] Basic problem - using .click and .hover together on elements

2008-10-11 Thread jez_p
I'm sure this has a very simple solution, but I am just starting out and can't work it out, so I would appreciate it if anyone could give me some help. I have a basic text menu, which when the menu items are clicked the page content changes. What I want is for the menu item text to change color

[jQuery] Re: Basic problem - using .click and .hover together on elements

2008-10-11 Thread Eric
Great question, jez_p! You've described a common problem. You'll be happy to know that there's a solution, _and_ that it will help you out in a number of other ways as you move forward. The solution involves separating the 'clicked' and 'hovered' states, and then specifying that the link is red

[jQuery] Chrome not performing fade and show() functions well

2008-10-11 Thread ivframes
Today I tested my site on Chrome and I was severely disappointed. All fadeTo, fadeOut/In, show(), hide() functions work very bad. On the black background you can see the jagged white halo around the text that is about to fade/show/hide. Did anyone else experience this?

[jQuery] Issue with Slide

2008-10-11 Thread Dr3adl0ck
In Safari, I am getting the following error about a dozen times consecutively: Value undefined (result of expression jQuery.easing[this.options.easing || (jQuery.easing.swing ? swing : linear)]) is not object. Does anyone know what this means? I have jquery 1.2.6 and the UI.core library

[jQuery] Re: Basic problem - using .click and .hover together on elements

2008-10-11 Thread jez_p
Thank you very much for your help Eric - and for replying so quickly. All I had left to do was to give the default menu item the class of clicked and it works just how I want it. Thanks again. On Oct 11, 8:24 pm, Eric [EMAIL PROTECTED] wrote: Great question, jez_p! You've described a common

[jQuery] [jQuery UI]

2008-10-11 Thread GARIL
I'm getting the following error with the html snippet shown below. doc.scrollTop is not a function pTop = doc.scrollTop(), pLeft = doc.scrollLeft(), the above from 'ui,dialog.js' Can anyone help? -- !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN

[jQuery] Re: Superfish hover working improperly in IE

2008-10-11 Thread DaveByDesign
Thanks for the quick response. I tried the new hover plugin (which works nicely and I will definitely be using) and discovered that it is not the solution to my problem. I am able to better describe the bug. It seems that in IE, the mouseout is prematurely triggered specifically when the mouse

[jQuery] Multiple cluetips (tooltips) on an imagemap

2008-10-11 Thread iantresman
I'm using Cluetips to show tooltips over several AREAs on an image map (with usemap). Is it possible to: (a) Show multiple sticky tooltips, all displayed at the same time (b) Automatically show all tooltips as soon as the page loads (ie. no mouseover). The tooltip labels multiple AREAs on my

[jQuery] Re: Basic problem - using .click and .hover together on elements

2008-10-11 Thread rolfsf
If you're only trying to get a color change on an anchor when you hover, then just do that with CSS - there's no need to use javascript for that li a { color: black } li a:hover { color: red } The only real hitch is if you're trying to hover over something other than an anchor (like a div or a

[jQuery] Re: [jQuery UI]

2008-10-11 Thread designjockey
I get the below error, when trying to use it with the wordpress on demand theme... very similar problem i think Error: $(#slider).serialScroll is not a function Source File: http://www.gamertagradio.com/videos/wp-content/themes/ondemand/script... Line: 95 On Oct 11, 4:22 pm, GARIL [EMAIL

[jQuery] Re: Error: $(#slider).serialScroll is not a function

2008-10-11 Thread Ariel Flesler
You need to include the rest of the required scripts before this one. -- Ariel Flesler http://flesler.blogspot.com On Oct 11, 3:52 pm, designjockey [EMAIL PROTECTED] wrote: Hello, Can someone please help me, I am trying to use this with the On Demand theme for wordpress and i get the below

[jQuery] Re: Issue with Slide

2008-10-11 Thread Ariel Flesler
You're (somewhere) using an unregistered easing equation. -- Ariel Flesler http://flesler.blogspot.com On Oct 11, 4:55 pm, Dr3adl0ck [EMAIL PROTECTED] wrote: In Safari, I am getting the following error about a dozen times consecutively: Value undefined (result of expression

[jQuery] Re: Error: $(#slider).serialScroll is not a function

2008-10-11 Thread designjockey
Ariel, Thanks for your reply, i was on your blog earlier too(from jqueryfordesigners) trying to find an answer.. all the scripts seem to be there... here is a screencast of all the scripts in there... http://screencast.com/t/5bxlkdeo I would really really appreciate any help at all. Thank you.

[jQuery] Re: Error: $(#slider).serialScroll is not a function

2008-10-11 Thread designjockey
also.. please see this screencast http://screencast.com/t/m30XesSCsNp which shows the firebug console with the error. On Oct 11, 6:03 pm, designjockey [EMAIL PROTECTED] wrote: Ariel, Thanks for your reply, i was on your blog earlier too(from jqueryfordesigners) trying to find an answer.. all

[jQuery] Re: Issue with Slide

2008-10-11 Thread Dr3adl0ck
Thanks Ariel, Do you know how I could track it down? I don't think I'm doing anything crazy, just this: jQuery(#blah).show(slide, { direction: down }, 400); On Oct 11, 4:35 pm, Ariel Flesler [EMAIL PROTECTED] wrote: You're (somewhere) using an unregistered easing equation. -- Ariel

[jQuery] Re: jQuery.noConflict() -- still have 1 conflict

2008-10-11 Thread Jub
Cheers Michael, You're right - the further I looked into the scripts, the deeper the conflicts ran. It looks like I'll be rewriting the Scriptaculous stuff in JQuery. Many thanks for the advice anyhow. :-) On Oct 12, 2:40 am, Michael Geary [EMAIL PROTECTED] wrote: What version of

[jQuery] Re: Efficient Multiple Slide-Fade Animation Rewrite

2008-10-11 Thread arthaus
Hi Mike, I really appreciate your support...it works like a charm. Regards, Arthur On Oct 11, 9:52 am, Michael Geary [EMAIL PROTECTED] wrote: Without seeing the other two instances of your code, I assume that the things that vary among them are the two ID selectors and the two text

[jQuery] Newbie: Getting Draggable ID in Droppable function

2008-10-11 Thread Jub
Hi gang, New-ish to JQuery, and I have teething problem. I have a whole bunch of draggable items (identified by class=box), all of which have unique IDs. When they're dragged onto the droppable, I need to get the ID for that unique draggable. Specifically: $(document).ready(function(){

[jQuery] How to Avoid Javascript Conflicts?

2008-10-11 Thread urbanbricks
Note: I'm new to Javascript...understand basics, but that's about all. I designed http://www.crainefrahm.com a while back and it's a total mess in terms of coding. It uses opencube's Tree Menu, which isn't registered so on PC's there is a unregistered warning message that pops up. I finally

[jQuery] Re: How to Avoid Javascript Conflicts?

2008-10-11 Thread MorningZ
First thing you should do is head over to, no *run over to*, http://www.getfirebug.com and install it on Firefox this tool is ESSENTIAL to helping debug your javascript and CSS code for instance, simply loading your test URL above shows that:

[jQuery] Re: Superfish hover working improperly in IE

2008-10-11 Thread Marc Esher
complete shot in the dark here: what if you set the width of the a element to 100%? On Oct 11, 5:10 pm, DaveByDesign [EMAIL PROTECTED] wrote: Thanks for the quick response.  I tried the new hover plugin (which works nicely and I will definitely be using) and discovered that it is not the

[jQuery] Re: [jQuery UI]

2008-10-11 Thread Richard D. Worth
My guess would be you don't have the latest version of jQuery (1.2.6) required by jQuery UI. Can you confirm which version you have? - Richard On Sat, Oct 11, 2008 at 4:22 PM, GARIL [EMAIL PROTECTED] wrote: I'm getting the following error with the html snippet shown below. doc.scrollTop is

[jQuery] Re: Newbie: Getting Draggable ID in Droppable function

2008-10-11 Thread Richard D. Worth
That second parameter passed to the drop callback function, 'ui', has a draggable property. That's a jQuery object that contains the draggable element being dropped. Every jQuery UI callback has a ui hash passed as the 2nd parameter. The properties are specific to the plugin, and in some cases the

[jQuery] Re: Superfish hover working improperly in IE

2008-10-11 Thread Joel Birch
Hi David, I found that there is CSS in your stylesheet.css file that makes the anchor elements collapse in width rather than expanding to the full width as they should, being display:block. If you delete that file you should see the difference there. My guess is that because you are using

[jQuery] Re: Chrome not performing fade and show() functions well

2008-10-11 Thread Mike Alsup
Can you post a link? On Oct 11, 3:41 pm, ivframes [EMAIL PROTECTED] wrote: Today I tested my site on Chrome and I was severely disappointed. All fadeTo, fadeOut/In, show(), hide() functions work very bad. On the black background you can see the jagged white halo around the text that is about

[jQuery] Re: Multiple cluetips (tooltips) on an imagemap

2008-10-11 Thread Karl Swedberg
Hi there, Unfortunately, no, multiple tooltips are not supported. Only one at a time. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 11, 2008, at 5:11 PM, iantresman wrote: I'm using Cluetips to show tooltips over several AREAs on an image map