[jQuery] Re: [TABS plugin RELATED] Look mum, TABS layout only with CSS !!

2008-01-16 Thread Enrique Meléndez Estrada
Yes, it is working. This is TABS layout, not TABS behaviour. It miss the proper jquery-javascript events and actions. this is a demo which shows that it is possible to display the HTML elements on screen as TABS layout without changing the DOM structure. El 15/01/2008 19:14, Olivier

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread Diego A.
Are you the same person with 2 different logins? I don't get a javascript error, I get a validation error: Bitte gebe einen Inhalt ein (mindestens 5 Zeichen) ...which according to Google translate means: Please give a content (at least 5 characters) So what exactly is the problem? On Jan 15,

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread Diego A.
OH, I see. FCKEditor doesn't update when you click the submit button. You have to add an onclick event to the submit button to make sure FCKEditor has updated the textarea. Download the FCKEditor plugin, use it to initialize the FCKEditor then use the $.fck.update() method. ie.: input

[jQuery] Re: [TABS plugin RELATED] Look mum, TABS layout only with CSS !!

2008-01-16 Thread Dan Eastwell
Hi Enrique, It's looking good. Have you tried applying the jquery tabs plugin or any similar tabbing script to make them function? Bearing in mind that the idea behind tabs is to use javascript to apply the css structure, so that people without script can see the content. All the best, Dan. On

[jQuery] sum of table rows

2008-01-16 Thread pedalpete
really close to this one, but it seems I'm not looping properly What I have is a table, and I'm trying to sum just the row values individually. the table row has the id of newPerson, and then the cells have an class of length and the id is the numbers that need to be added. but apparently the

[jQuery] Form plug-in: problem with POST

2008-01-16 Thread [EMAIL PROTECTED]
Here's a tricky one that no one on my other favorite javascript forums where able to answer, so maybe the expert jQuery crew knows what's going on: My form: html form id=myForm action=functionLibrary.php?function=formSubmit input type=submit value=SEND FORM /form /html My

[jQuery] Re: Loading dynamic JS libraries with jQuery

2008-01-16 Thread fuzziman
Not sure if this is what you mean, but I can load external JS using a bookmarklet. For example, loading jquery onto any arbitary web page: javascript:var

[jQuery] Re: instant edit

2008-01-16 Thread Mika Tuupola
On Jan 15, 2008, at 6:54 PM, Lionel Martelly wrote: I just spent a tremendous amount of time trying to figure out what's wrong. I was supposed to hit enter instead of living the field. Is there a way to keep the value without having to do enter? e.g. by clicking outside of textbox? From

[jQuery] Fade Divs one by one

2008-01-16 Thread Dara Daniyal
I have table with entries. each entry is contained in the div. What i want to do is to fade them one by one, the slide up the table. is it possible in jquery. i tired this but its not happening exactly $('td','#products_table').each(function (td_id) { $('#products_table

[jQuery] Re: Loading dynamic JS libraries with jQuery

2008-01-16 Thread Hamish Campbell
What is the output when you fire this: function loadJavascript(scriptFile) { var scriptsPath; // Builds the correct scripts path scriptsPath = $('script').attr('src'); scriptsPath = scriptsPath.replace(/\w+\.js$/, ''); $.getScript(scriptsPath +

[jQuery] Re: Trying to set the id of a 2nd level div and failing

2008-01-16 Thread Alexey Blinov
BTW id attribute must be unique as i know... I know you can omit it but its not fair. OK. did you try to use contents( )? something like this (untested) $('#obj').contents().filter('div').attr('id', 'Bob')? On Jan 16, 2008 2:20 AM, Wizzud [EMAIL PROTECTED] wrote: Use find()? The children()

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread psy*
Ok thanks! Would it also be possible to initialize the editor by myself (the code that's actually being used) and only use the fck.update function??? Diego A. schrieb: OH, I see. FCKEditor doesn't update when you click the submit button. You have to add an onclick event to the submit button to

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread psy*
Yeah I'm the same person, had to do a new login ... The problem is that this should not appear because I typed in more than 5 chars ... and if you focus the textarea field and click the submit button again, the error does not occur as it should be ... Diego A. schrieb: Are you the same person

[jQuery] Re: Trying to set the id of a 2nd level div and failing

2008-01-16 Thread Mark Lacas
Thanks, I was wondering if that was the way I had to go. Is find the fastest in terms of cpu cycles? It sounds like it might not be by its name. That's why I didn't use it. ml On Jan 15, 3:20 pm, Wizzud [EMAIL PROTECTED] wrote: Use find()? The children() function (should) return unique

[jQuery] Re: [TABS plugin RELATED] Look mum, TABS layout only with CSS !!

2008-01-16 Thread Eridius
I actually think that using a UL with divs for content is more natural than using a div with a clas for the tabs itself. The reason is because the tabs end up being in a list is the end, why not use a tab. I never learn your way which is also why I like this way a lot better. emelendez

[jQuery] Re: How can I switch elements by fades?

2008-01-16 Thread DeaR
Yeah, I've got it, Thanks a lot Glen Lipka wrote: Use the fadeOut callback. http://docs.jquery.com/API/1.1/Effects#fadeOut.28_speed.2C_callback_.29 This will start a function when the animation for the fadeOut is finished. Then fadeIn the other one. Glen On Jan 14, 2008 10:22

[jQuery] Re: jmaps - callback function problem

2008-01-16 Thread Hamish Campbell
It's a great plugin - I'm using it (well, jmap2 actually) at isat.deft.co.nz to integrate twitter and gmaps (currently a proof of concept page only). I believe I know where you're going wrong. By default, searchAddress performs actions on the current map, rather than returning something useful.

[jQuery] Re: Form plug-in: problem with POST

2008-01-16 Thread Mike Alsup
Why can't I use type=POST with a function library as described in functionLibrary.php? You can, but you need to use $_POST (or $_REQUEST) on the server to match. Mike

[jQuery] Re: [TABS plugin RELATED] Look mum, TABS layout only with CSS !!

2008-01-16 Thread Enrique Meléndez Estrada
the idea I have in mind is: * You have your normal HTML structure with your own CSS applied: header, body, header, body, etc... within a container. All very accessible and W3C standard. * If you have Javascript enabled, and apply a (future kikeTabs) jquery plugin: it will

[jQuery] Re: jQuery 1.1.2 Released: Happy 2nd Birthday!

2008-01-16 Thread NccWarp9
jQuery made Web development easy, and most of all fun. Thank you for that!! Donations on the way :) On Jan 15, 7:05 am, John Resig [EMAIL PROTECTED] wrote: On the 2nd birthday of jQuery we're happy to bring you a new release of jQuery! Here's the

[jQuery] 1.22 bug with IE 7.0?

2008-01-16 Thread Lionel Martelly
I might have found a bug with IE 7.0 and latest version of jquery. Before upgrading I was successfully running this form on both IE 7.0 and FF with a 18,9 k version of jquery.js http://malsup.com/jquery/form/ Now I got the latest 29k version of jquery.js It woks fine with FF but in IE7.0 the

[jQuery] Re: simple newbie js function problem...

2008-01-16 Thread fuzziman
[EMAIL PROTECTED] wrote: Remember that variables declared within functions only exist for that function. Not really... As others mentioned, the crux of the problem is because setInterval is calling force() which refers to the global scope. Try passing in the reference to the function

[jQuery] definitely a bug with IE7.0 and 1.22

2008-01-16 Thread Lionel Martelly
I put up a raw example with the 2 identical pages, changing only the jquery.js (the 1.22 and the one before it) Try with IE 7.0 Drag and drop one portlet in a colored box with latest version then try to click on it and to open. Nothing happens. Try with the old version. All is fine. No

[jQuery] Callback-return into global variable

2008-01-16 Thread Niels
Is there any way to put a return from within a callback into a global variable? I'm trying to retrieve JSON-values in one statement, and output them in another statement; and code looks like this: var _json; function load_comments(id, params) { if (typeof id != 'number' typeof id ==

[jQuery] Re: How can I show/hide table row as it is a div?

2008-01-16 Thread Bober
On 16 Sty, 00:23, Rick Faircloth [EMAIL PROTECTED] wrote: Hi, Sebastian... Yes, it is possible. I've worked trying to get smooth animation out of sliding table rows, but they're always jerky. I resorted to putting entire tables in div's and animating the div's to get smooth performance.

[jQuery] Re: match element based on CSS value

2008-01-16 Thread [EMAIL PROTECTED]
thanks Glen!

[jQuery] Re: how can a text field be hidden based on condition

2008-01-16 Thread Hamish Campbell
To make it check on change: $('#mySelectId').change(function(){ if($(this).val().indexOf('someValue') != -1) $('#someElement').hide(); }); On Jan 16, 12:30 pm, Wizzud [EMAIL PROTECTED] wrote: var txt = $('theSelect :selected').text(); if(txt == 'cat' || txt.indexOf('c')==0 || ...test

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread psy*
Ok thanks, I got it to work properly with fckeditor now (with initialization and check)! Thanks again for your nice and fast help! But I have one more question: Do you know if it's possible to strip html tags when checking for the length of the typed in content because when I type in let's say 2

[jQuery] Re: Still working out drop-down div menu...

2008-01-16 Thread Hamish Campbell
The cause of problem 1 and 3 is that your functions are all nested inside each other. You don't really need to check if they're visible or not so you can dump the 'visible' checks. You could also change it so rather than sliding up when you mouse out of the heading, it slides when you mouseout of

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread psy*
Ok seems to not work with just using the update method without having initialized it with the plugin! Diego A. schrieb: OH, I see. FCKEditor doesn't update when you click the submit button. You have to add an onclick event to the submit button to make sure FCKEditor has updated the textarea.

[jQuery] Re: Still working out drop-down div menu...

2008-01-16 Thread Rick Faircloth
@Karl: Hi, Karl... and thanks for the reply! I appreciate the work you did on the site. The problem I noticed right away is that when the link is moused-off, then the corresponding details div slides up. The details for each menu link will need to stay down until a user mouses over it and then

[jQuery] Re: [TABS plugin RELATED] Look mum, TABS layout only with CSS !!

2008-01-16 Thread Enrique Meléndez Estrada
No, that way could be natural only when using TABS, BUT if javascript is disabled (no jquery plugin) it is not very accessible: you have all titles grouped in a list, and their bodies content one under the other. The accessibility for data is my prior concern (to obtain AA WAI degree). And

[jQuery] [jquery-en] Error on jQuery's report page

2008-01-16 Thread Rafael Santos
I'm getting an error @ http://dev.jquery.com/report/24

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread Diego A.
That depends on how the validation is being performed. Just find the line in the code that says: if(s.length5){ ... and change it to: if(s.replace(/\[\s\S]+\/gi,'').length5){ ... this code: .replace(/\[\s\S]+\/gi,'') ...will remove anything within and , then you can check if the actual text is

[jQuery] Re: Error on jQuery's report page

2008-01-16 Thread Cloudream
dev.jquery.com always fails in huge list of view tickets recently... On Jan 16, 8:37 pm, Rafael Santos [EMAIL PROTECTED] wrote: I'm getting an error @http://dev.jquery.com/report/24

[jQuery] Cycling images based on background-image

2008-01-16 Thread rich
I have a container div with a few things inside such as navigation, a logo, and a few other bits. I'd like to continuously cycle through different background-images of container div. I have to keep images applied as a background-image; any suggestions? Fading and other effects are nice, but I

[jQuery] Having problems making my function work on safari

2008-01-16 Thread hollow
The script presented here works like a charm in firefox 2. But it doens't do anything on safari. What it is supposed to do is take the name of a input field then the id if it is text, div. then change the color depending on the id of the input field if it is text then change the text color. if

[jQuery] I've used the replaceWith function, to replace stuff with new stuff, which works. Now how do I use replaceWith, to replace the new stuff?

2008-01-16 Thread desbest
I've used the replaceWith function, to replace stuff with new stuff, which works. Now how do I use replaceWith, to replace the new stuff? = extracted source code = script var emailmexswap=div id='menubar' class='menubar'img src='tab_viewskills.gif'

[jQuery] Re: [TABS plugin RELATED] Look mum, TABS layout only with CSS !!

2008-01-16 Thread Robert O'Rourke
Enrique Meléndez Estrada wrote: Looking at official TABs plugin, I realized that the HTML structure is not very natural. It uses a list (UL) of tab headers follow by tab bodies (DIV). Normally, what you get from your favorite CMS is something more like : a header (div, h,...), its body

[jQuery] Re: jQuery 1.1.2 Released: Happy 2nd Birthday!

2008-01-16 Thread Sean Catchpole
Great release, love the changes. Thank you ~Sean

[jQuery] Help with Element Replacement on Page Load (with fade effect)

2008-01-16 Thread Brian Talbot
Hi All, I'm still getting my feet wet with JQuery and am having some trouble trying to accomplish the following: I'd like to have one HTML element (in the case of the example below its a div class=initial/div) be replaced by another HTML element (again in this case its div class=replaced/div)

[jQuery] Re: How can I show/hide table row as it is a div?

2008-01-16 Thread Rick Faircloth
Try this code and see the difference in animation. With the div's doing the sliding, there's no jerk as there is with table rows. jQuery: $(document).ready(function() { $(#hide1).click(function() {

[jQuery] IE 6 crashes on effects example documentation pages

2008-01-16 Thread djangst
Hello, I'm finding that the effects example pages on the docs site are crashing Internet Explorer 6 when closing the browser. For example, I access: http://docs.jquery.com/Effects/fadeOut Then I click the paragraph, which fades out (though with jaggedy text as noted in an old post to the

[jQuery] Re: Help with Tabs 3 and struts

2008-01-16 Thread Diego
ok, sorry I learn how call an action from the ajax tab now I have an index page with tabs3, each tab load an action and bring me the parameters from them, but now I need to call others actions from the tabs and reload only in the panel that was active, not the entire page. (an example, i open

[jQuery] Is it possible to make a simple fading color rollover effect for text links?

2008-01-16 Thread quirksmode
I basically want the bg color (behind the text link) to turn red and then quickly fade away when the user highlights a text link. Is there a simple in built command for doing this?

[jQuery] Re: Fade Divs one by one

2008-01-16 Thread Glen Lipka
Maybe this would help? http://www.decodeuri.com/jqueryfxqueues/ Glen On Jan 16, 2008 12:52 AM, Dara Daniyal [EMAIL PROTECTED] wrote: I have table with entries. each entry is contained in the div. What i want to do is to fade them one by one, the slide up the table. is it possible in jquery.

[jQuery] Re: Cycling images based on background-image

2008-01-16 Thread Glen Lipka
There is a cycle plugin, but I wonder if it can work on background images. Maybe ask Mike, the author. www.malsup.com/jquery/*cycle*/ http://www.malsup.com/jquery/cycle/ Otherwise you can use the pause plugin http://blog.mythin.net/projects/jquery.php and just change thebackground.

[jQuery] Re: Is it possible to make a simple fading color rollover effect for text links?

2008-01-16 Thread Rick Faircloth
I was working on a solution and got as far as changing the text background color to red on mouse-over and none on mouse-out, but couldn't come up with a way to fade the red to none. script type=text/javascript $(document).ready(function() {

[jQuery] Re: Is it possible to make a simple fading color rollover effect for text links?

2008-01-16 Thread Glen Lipka
Try the animate function and bind it using hover. http://docs.jquery.com/Effects/animate#paramsoptions http://docs.jquery.com/Events/hover Hover automatically has the on and off stuff so you dont need mouseover, mouseout. If I have time, I can try and whip up a demo. Glen On Jan 16, 2008 6:41

[jQuery] Re: definitely a bug with IE7.0 and 1.22

2008-01-16 Thread Leonardo K
I tried here and it`s working fine in IE 7 On Jan 16, 2008 5:12 AM, Lionel Martelly [EMAIL PROTECTED] wrote: I put up a raw example with the 2 identical pages, changing only the jquery.js (the 1.22 and the one before it) Try with IE 7.0 Drag and drop one portlet in a colored box with

[jQuery] [Tabs3] Changing url

2008-01-16 Thread Diego
How you change the url of a tab 'on the fly' ? for example, clicking the second tab change the url of the first tab? thanks

[jQuery] Re: definitely a bug with IE7.0 and 1.22

2008-01-16 Thread Alexandre Plennevaux
nope, doesn't work for me on IE7. are u using dimension? It's been updated for 1.22 also interface is not supported anymore i think. -- Original Message -- To: Jquery-en (jquery-en@googlegroups.com) From: Leonardo K ([EMAIL PROTECTED]) Subject: [jQuery] Re: definitely a bug

[jQuery] Text Animation Plug-in?

2008-01-16 Thread Rick Faircloth
A few weeks back I saw a new plug-in that would animate text. I experimented with it and found it had great potential. I usually reference somewhere, but I can't find anything I saved about it anywhere. Couldn't find it in the plug-in repo, either. Anyone know what I referring to? Thanks,

[jQuery] Re: Help with Element Replacement on Page Load (with fade effect)

2008-01-16 Thread Brian Talbot
As an update, I've gotten the functionality to work. :o) But the behavior isn't completely correct. Ideally, the initial element (div class=initial/div) would fade out with the replaced element (div class=replaced/div) being visually directly behind it and becoming more visible as the initial

[jQuery] Re: Text Animation Plug-in?

2008-01-16 Thread Rick Faircloth
Well. after looking around in the docs, the animate function will do just as well. Maybe I can combine that with the Shadow plug-in released recently. Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Faircloth Sent: Wednesday, January 16, 2008 11:13 AM

[jQuery] How to make opacity animate with IE6...

2008-01-16 Thread Rick Faircloth
My opacity animation looks great in FF and IE7, but doesn't work at all in IE6. Is is possible for it to work in IE6? Thanks, Rick

[jQuery] Re: jQuery.dequeue is not a function

2008-01-16 Thread Vinçange
Your solution is working, but instead of replacing lines in interface, i'd rather add a function to Jquery : ( function( $ ) { $.dequeue = function( a , b ){ return $(a).dequeue(b); }; })( jQuery ); This allows you to use compressed version of interface.js

[jQuery] project/jCache + path incorrect?

2008-01-16 Thread HanSolo
Hello, i want to use the jquery-plugin: http://plugins.jquery.com/project/jCache but it doesnt work realy good. My problem is maybe very easy but im blind :( im using this script 11 and change onyl the path for a loading file from this function here: function loadFakeData(no) {

[jQuery] Re: definitely a bug with IE7.0 and 1.22

2008-01-16 Thread Lionel Martelly
I don't know what dimension is. Are you sure about interface? This example is interface. So many people are using interface it will be a disaster for all. - Original Message - From: Alexandre Plennevaux [EMAIL PROTECTED] To: Jquery-en jquery-en@googlegroups.com Sent: Wednesday,

[jQuery] SharedObjects with jquery

2008-01-16 Thread [EMAIL PROTECTED]
Hello, to need help for read/remove/get Flash Storage with jquery. Anybody idea ? hans

[jQuery] possible to know if page is transitioning ?

2008-01-16 Thread weepy
Hi - is there an easy way to know if a page is transitioning ? I.e. when I click on a link and the page is waiting to navigate elsewhere ... Jonah

[jQuery] Re: Changing url

2008-01-16 Thread Klaus Hartl
On Jan 16, 4:11 pm, Diego [EMAIL PROTECTED] wrote: How you change the url of a tab 'on the fly' ? for example, clicking the second tab change the url of the first tab? thanks There is a tabsHref method: var $tabs = $('#example').tabs(); // change href of first tab $tabs.tabsHref(1,

[jQuery] jQuery 1.2.2 Event API

2008-01-16 Thread Collin Allen
Congrats jQuery Team on the release of 1.2.2! I'm interested in the new Event API that was briefly mentioned in the release notes -- is there a place for full (or in-progress) documentation on it? it sounds like the sort of thing that could be quite useful in some current projects. Thanks!

[jQuery] Re: Sorting with each()

2008-01-16 Thread monster79
Thanks Erik and Karl! I think for general code maintainability, I'll keep my current solution with the for loop. It's much longer, but I think overall it's easier to understand. I attached that code below in case it would help anyone else later. However I'll be keeping an eye on that jQuery sort

[jQuery] Re: IE 6 crashes on effects example documentation pages

2008-01-16 Thread djangst
Resolved. The culprit was WAT-C's Web Accessibility Toolbar. I'm not sure exactly why. Some sort of DOM hooks/rendering issue? I have no idea. But I reproduced the problem bunches of times with the toolbar showing, and could magically cure it by hiding the toolbar and restarting IE (fresh

[jQuery] clone() problem in IE7

2008-01-16 Thread John M Lauck
Is there an issue using clone() in IE7? I'm not having trouble in Firefox 2 but IE7 seems to ignore this method.

[jQuery] attr - problem getting attributes in IE6 ... IE7 and FF are fine

2008-01-16 Thread skatta
in this issue First off ... i'm using ajax to pull elements into the DOM. So my code uses this (there are probably better ways to do this) ... $(document).ready(function() { $('body').click(function(event) { if ($(event.target).is('.touchRfq')) { var touchco =

[jQuery] Re: possible to know if page is transitioning ?

2008-01-16 Thread Glen Lipka
The page has a few events that fire right when the page is about to exit. Most common is unload on the body tag. Glen On Jan 16, 2008 9:24 AM, weepy [EMAIL PROTECTED] wrote: Hi - is there an easy way to know if a page is transitioning ? I.e. when I click on a link and the page is waiting to

[jQuery] Re: Changing url

2008-01-16 Thread Diego
:( i cant make it work. If I have a tab with a div fragment, then i click in another tab and i change the starter tab's url, should work uh? some code $(document).ready(function() { $('#container').tabs(3); //starting with third tab $('#container').tabs({

[jQuery] Centering Superfish menu?

2008-01-16 Thread Robert Vidrine
Hi all, I cannot figure out how to have a centered Superfish menu! This is the site I'm working on: http://www.wfu.edu/education/NEWtemplatedesignH.html No matter what I do, I always get the Superfish menu left justified with the edge of the parent element. I read on another site that the

[jQuery] Re: jQuery 1.2.2 Event API

2008-01-16 Thread Jörn Zaefferer
Collin Allen schrieb: Congrats jQuery Team on the release of 1.2.2! I'm interested in the new Event API that was briefly mentioned in the release notes -- is there a place for full (or in-progress) documentation on it? it sounds like the sort of thing that could be quite useful in some

[jQuery] Re: attr - problem getting attributes in IE6 ... IE7 and FF are fine

2008-01-16 Thread skatta
oops ... in my example i used event.target.id ... it's event.target like so ... $(document).ready(function() { $('body').click(function(event) { if ($(event.target).is('.touchRfq')) { var touchco = $(event.target).attr(name); alert(touchco); }); }); }); On Jan 16, 12:50 pm, skatta

[jQuery] Re: Changing url

2008-01-16 Thread Diego
nvm It works $(function() { $('#container ul').tabs(3); $('#container ul').tabs({ cache: false }); $('#container ul').tabs({ click: function() { $('#container').tabs().tabsHref(3,'/jsp/BuscarTareas.do'); } }); }); Thanks! On 16 ene, 15:28, Diego [EMAIL PROTECTED] wrote:

[jQuery] jqURL?

2008-01-16 Thread Chris J. Lee
Anyone know if jqURL is up to date with jquery 1.2.2.? http://www.oakcitygraphics.com/jquery/jqURL/jqURLdemo.html?var1=1var2=2var3=3

[jQuery] IE6, the Starts-with Attribute Selector, and the # Sign

2008-01-16 Thread turt182
Hello, I'm using jquery to grab all of the links in a page to named anchors, like so: $(a [href^='#']) This works fine in Firefox, Safari, and Opera, but not in IE6. The issue seems to be the pound sign (#), because IE will work fine if I do something like this: $(a[href^='/test']) Am I

[jQuery] Re: attr - problem getting attributes in IE6 ... IE7 and FF are fine

2008-01-16 Thread skatta
looks like the attribute name is not supported in IE6 On Jan 16, 12:50 pm, skatta [EMAIL PROTECTED] wrote: in this issue First off ... i'm using ajax to pull elements into the DOM. So my code uses this (there are probably better ways to do this) ... $(document).ready(function() {

[jQuery] Re: Still working out drop-down div menu...

2008-01-16 Thread Karl Swedberg
On Jan 16, 2008, at 7:21 AM, Rick Faircloth wrote: @Karl: Hi, Karl... and thanks for the reply! I appreciate the work you did on the site. The problem I noticed right away is that when the link is moused-off, then the corresponding details div slides up. The details for each menu link will

[jQuery] Re: Help with Element Replacement on Page Load (with fade effect)

2008-01-16 Thread Karl Swedberg
HI Brian, One way to do this is to use absolute positioning for the initial and replaced elements and relative positioning for the replacing div. You'll want to set a min-height on the replacing div so things look right. (Note: you can use height rather than min-height in an IE6- only

[jQuery] Re: Still working out drop-down div menu...

2008-01-16 Thread Rick Faircloth
That looks great, Karl! And I see the changing content, also! Where's your wish list? :o) Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Wednesday, January 16, 2008 3:18 PM To: jquery-en@googlegroups.com

[jQuery] middleclick event

2008-01-16 Thread Nikola Ivanov
Hello, I'm working an a very simple behavior: capturing clicks on anchors. Binding the click event and doing the rest of the logic is easy. Problem is the middle click (opens the link in a new tab) and both available options in the context menu: open in new tab/open in new window. While it's

[jQuery] Re: Changing url

2008-01-16 Thread Klaus Hartl
On Jan 16, 8:04 pm, Diego [EMAIL PROTECTED] wrote: nvm It works $(function() { $('#container ul').tabs(3); $('#container ul').tabs({ cache: false }); $('#container ul').tabs({     click: function() {         $('#container').tabs().tabsHref(3,'/jsp/BuscarTareas.do');     }         });

[jQuery] Re: [Release] jQuery Validation plugin 1.2 Release Candidate 1

2008-01-16 Thread Jack Killpatrick
Hi Jörn, Good to hear about this, thanks very much. Some quetions: 1. Is there a what's changed doc somewhere? 2. What's the minimum version of jquery required to use this version of the validate plugin? 3. Are all of the demo's using RC1? 4. Is the metadata plugin still required in

[jQuery] script works in firefox bu not in IE or Safari why???

2008-01-16 Thread hollow
The script presented here works like a charm in firefox 2. But it doens't do anything on IE or safari. What it is supposed to do is take the name of a input field then the id if it is text, div. then change the color depending on the id of the input field if it is text then change the text

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread psy*
Thanks :) Got some other help from the author: An additional filter method: $.validator.addMethod(strippedminlength, function(value, element, param) { return $(value).text().length = param }, $.format(Please enter at least {0} characters)); and a class using this method:

[jQuery] Re: Need to slide my grid/table with a slider like control.

2008-01-16 Thread jimmyc
Just thinking simple, but not sure how effective this would be for you. How about have a table with 1 row and 2 cells. In the first cell you could just show the row headers, then in the second cell you would have a div with a specified width and the overflow attribute set to auto. Inside of that

[jQuery] IE Draggable Bug using Interface

2008-01-16 Thread Eric Teubert
Hi there, I work on a very strange bug at the moment .. it occurs in IE6/7 but not in Firefox. I use jQuery and the draggable-Plugin from http://interface.eyecon.ro/. Using the demo, all works fine - but testing it on another platform always causes the same bug: the object can be dragged once

[jQuery] New to JQuery with error message

2008-01-16 Thread Jian
Dear all: I am new to JQuery and encounted this error message just load the latest JQuery library. Following is the code: script type=text/javascript src=http://tana.am.lilly.com:9045/pgi/ js/jquery-1[2].2.2.pack.js/script And here is the error message: A Runtime Error has occurred. Do

[jQuery] Re: Form plug-in: problem with POST

2008-01-16 Thread [EMAIL PROTECTED]
OH, I think I got it now. So if action=index.php?fnc=doThis, the fnc variable also gets passed as POST? On Jan 16, 3:48 am, Mike Alsup [EMAIL PROTECTED] wrote: Why can't I use type=POST with a function library as described in functionLibrary.php? You can, but you need to use $_POST (or

[jQuery] Re: jqURL?

2008-01-16 Thread Jeroen
On Jan 16, 2008 8:43 PM, Chris J. Lee [EMAIL PROTECTED] wrote: Anyone know if jqURL is up to date with jquery 1.2.2.? http://www.oakcitygraphics.com/jquery/jqURL/jqURLdemo.html?var1=1var2=2var3=3 Why not give it a try and see for yourself? (NoFI) -- Jeroen

[jQuery] Re: Centering Superfish menu?

2008-01-16 Thread Joel Birch
Hi Robert, Inspecting it in Firefox I see no visual difference between JS off and JS on, maybe you fixed it? Joel BIrch.

[jQuery] Re: Form plug-in: problem with POST

2008-01-16 Thread Mike Alsup
Well now that I've actually tried it I see $_GET and $_REQUEST working. Here's my test php: ?php print get: . $_GET['fn'] . \n; print pos: . $_POST['fn'] . \n; print req: . $_REQUEST['fn']; ? And here's the test page I used: html head script type=text/javascript src=jquery-1.2.1.js/script

[jQuery] Re: jQuery Form Plugin, and ajax submit without submit button

2008-01-16 Thread Geoff Millikan
I've tried many variations of the below and they don't work (and don't return any errors). Could you please, please post a very small html snippet showing how to make a click event trigger the ajax form submit. I will donate $100.00 USD to jQuery.

[jQuery] Re: jqURL?

2008-01-16 Thread McLars
I've used it with 1.2.1 and didn't have any problems. I didn't try every method, though. Larry Chris J. Lee wrote: Anyone know if jqURL is up to date with jquery 1.2.2.? http://www.oakcitygraphics.com/jquery/jqURL/jqURLdemo.html?var1=1var2=2var3=3

[jQuery] Re: jQuery Form Plugin, and ajax submit without submit button

2008-01-16 Thread Mike Alsup
You're close! Here you go. $(#internet_service_type_dialup).click(function() { $('#wizard_form').ajaxSubmit(options); return false; }); In you're code you were binding the submit event when the click happened. But what you want is to just send the form straight away, not bind it.

[jQuery] Re: Problem With jquery form plugin and tinymce

2008-01-16 Thread [EMAIL PROTECTED]
I seem to have the opposite problem. Only affects my tinymce textarea in IE. All other form elements and browsers do not show the following behavior I'll describe... My webapp basically like an address book. click a name, and then an ajax call loads some HTML about the person, called a

[jQuery] Re: Problem With jquery form plugin and tinymce

2008-01-16 Thread Mike Alsup
I seem to have the opposite problem. Only affects my tinymce textarea in IE. All other form elements and browsers do not show the following behavior I'll describe... Can you give us a link? Sounds like you've got a lot going on in that page - if I had to guess I'd say that IE is tripping

[jQuery] Re: New to JQuery with error message

2008-01-16 Thread Glen Lipka
That URL doesn't resolve in my browser. Maybe the [2] is messing it up? Glen On Jan 16, 2008 1:34 PM, Jian [EMAIL PROTECTED] wrote: Dear all: I am new to JQuery and encounted this error message just load the latest JQuery library. Following is the code: script type=text/javascript

[jQuery] Re: Still working out drop-down div menu...

2008-01-16 Thread Rick Faircloth
I got the changes implemented that you made, Karl and things are working very well! I've still got to study just what you did to see if I understand it. About the last issue I'm facing is how the details div and content for that div is displaying. If you'll go to http://c21ar.wsm-dev.com and

[jQuery] context menu: how to target an item based on 2 id?

2008-01-16 Thread Lionel Martelly
I have some main td groups which have different group ids (id=allart, id=left, id=right) and each has it's class. They all contain unique divs which I am dragging and dropping in the different td td id=allart class=az valign=top div style=-moz-user-select: none; id=352 class=art/td td

[jQuery] Re: IE Draggable Bug using Interface

2008-01-16 Thread Lionel Martelly
I have a similar problem which I posted yesterday. Mine started to happen right after I upgraded to 1.22 When I switch back to old version, problem disppears... but old version is no good for me as I have other calls in that page. I really wish someone has a solution to this. - Original

  1   2   >