[jQuery] Re: Horizontal Superfish with 100% width

2009-06-05 Thread Per Hansen
I think i solved the problem (at least in FF 3 and Safari 4 on my Mac). #menu { width: 100%; float: left; display: table;}     #menu ul { display: table-row; }     #menu ul li { display: table-cell; min-width: 20%; } I don't see right now why it didn't work, but by changing line two and

[jQuery] Text Scroller vertical

2009-06-05 Thread simon
I am after a simple div scroller that scrolls text up/down within a fix sized div, with two scroll buttons that can be set to hover/click, i have found a load that use it for li tags or images and scrolls only up by set ammount, but i wouo d like this for text etc thanks si

[jQuery] Named and anomymous functions

2009-06-05 Thread SamCKayak
o.fnTest = function(){ alert('Hello World') } o.fnTest = function fnTest(){ alert('Hello World') } both seem to assign the function to o.fnTest. Most of the plugin libraries I've seen use the anomymous function assignment. The latter (a named, not anomymous function in FireBug) is easier to

[jQuery] Stack Overflow at line 0

2009-06-05 Thread SamCKayak
I occasionally get this error in IE8 when refreshing a page. The debugger is locked out making it difficult to identity the cause. There's a snippet of code I am using to preload images which when I borrowed it, mentioned this problem. I've posted it below. Any suggestions on how this code

[jQuery] jquery validation plugin. Need help with passing variable to jQuery.format

2009-06-05 Thread talisien
I'm having some troubles with passing variables to jQuery.format I have a script (php) that's checks if the domain part exists. If not it will show an message The following code works #1 It split an email address and assigns the domain name to the var hostName $(document).ready(function() {

[jQuery] Help required on JQuery Autocomplete plugin

2009-06-05 Thread Azzu
Hey guyz need some help with JQuery. I have a requirement in my project to provide an autocomplete feature for a textBox like the one recently applied on google. I need to fetch data on each keystroke so I am calling a JQuery fuction on keypress. The problem is the Autocomplete feature gets

[jQuery] ui sortable - cancel action if list is too long

2009-06-05 Thread Robert Bobrowski
I have few lists with ui sortable/droppable and I want to have let say max 4 elements in one. So: $(ul[id^='sortable']).sortable({ connectWith: '.user-list', dropOnEmpty: true }) $(.accept-drop).droppable({ drop: function(event, ui) { //some code

[jQuery] HELP: FireFox page reload bug using jQuery for deferred loading (using html() function)

2009-06-05 Thread colnector (colnect.com)
Hi all, To enhance user experience on my site, I've moved a few page elements (well, the ads...) to the end of the page (in a hidden div) and when the page is loaded the content of such divs are copied to their appropriate location on the page. This makes the content load much faster and thus

[jQuery] Finding elements - difference between Firefox and IE

2009-06-05 Thread PeterD
Hello, I am new to jQuery; I am trying to write a script that looks for empty fields in a table, and if it finds them to remove the empty div elements. The following script works fine on Firefox, but not on IE. What is the problem? any advise for getting this to work? var fieldName =

[jQuery] autocomplete

2009-06-05 Thread BBCLX
I am using the jQuery autocomplete plugin (http://bassistance.de/ jquery-plugins/jquery-plugin-autocomplete) it works fine and has me made a happier person as a whole. I am using the plugin in remote-mode meaning that I fetch a seperated list from my server. The problem now is that this server

[jQuery] ui sortable - cancel action if list is too long

2009-06-05 Thread Robert Bobrowski
I have few lists with ui sortable/droppable and I want to have let say max 4 elements in one. So: $(ul[id^='sortable']).sortable({ connectWith: '.user-list', dropOnEmpty: true }) $(.accept-drop).droppable({ drop: function(event, ui) { //some code

[jQuery] Getting too much recursion y FF3 and out of memory on IE7.

2009-06-05 Thread nomen
Hi all: I have develop this javascript code ( http://www.phpriot.com/2237 ). This is a simple carrousel. I´m using JQuery 1.3.2. In the code you can see an array with images and the code is simply changing the source of the img with the ID carruselimg. I´m getting too much

[jQuery] jQuery Leaving Unwanted Whitespace On remove

2009-06-05 Thread Ryan
Hello, So I have a problem and no solution for it. On my website I use jQuery remove to take divs off of the screen. The problem is I do this a lot (the site is constantly putting divs on and off the screen) and everytime I use remove it is leaving whitespace. After a couple of thousand times

[jQuery] HELP: FireFox page reload bug using jQuery for deferred loading (using html() function)

2009-06-05 Thread colnector (colnect.com)
Hi all, To enhance user experience on my site, I've moved a few page elements (well, the ads...) to the end of the page (in a hidden div) and when the page is loaded the content of such divs are copied to their appropriate location on the page. This makes the content load much faster and thus

[jQuery] hover + inside elements

2009-06-05 Thread Thomas
Hi, I have a layout with 4 collumn divs. When the mouse hovers over each collumn, a simple fadein is performed on another element. Now what happens is, when i move over another element INSIDE a collumn div (a h2 for instance), the same fadein runs again... Am I doing something wrong with the

[jQuery] Re: can someone translate this syntax ?

2009-06-05 Thread Vincent Robert
options = $.extend({ ... }, options) is a popular construct in plugins. It allows to define default values for a options hash that is passed as the only parameter. On Jun 5, 4:22 am, runrunforest craigco...@gmail.com wrote: thank you, I don't see that in other plugin, acutually so far i've not

[jQuery] repeatly fadein/fadeout an object

2009-06-05 Thread Davis
Hello, I got following to fadeout, then fadein an class, but how can i keep it repeatly running? $(a.tm_link).fadeOut(slow).fadeIn(slow); Many thanks/Davis.

[jQuery] finction width(divs) is not defined

2009-06-05 Thread runrunforest
Hi, style type=text/css div { width:40px; height:40px; margin:10px; float:left; border:2px solid blue; } /style script type=text/javascript src=js/jquery-1.3.2.min.js/script script type=text/javascript $(function(){ var divs = $('div','body'); var

[jQuery] Re: ui sortable - cancel action if list is too long

2009-06-05 Thread Richard D. Worth
Maybe you could supply a function for the accept option and have it return false if the max is reached, otherwise true: http://docs.jquery.com/UI/Droppable#option-accept Also note, there's a dedicated mailing list for jQuery UI plugins: http://groups.google.com/group/jquery-ui - Richard On

[jQuery] Re: hover + inside elements

2009-06-05 Thread Thomas Decrick
Is it possible to check if the mouse is hovering over a parent element ? On 05 Jun 2009, at 02:15, Thomas wrote: Hi, I have a layout with 4 collumn divs. When the mouse hovers over each collumn, a simple fadein is performed on another element. Now what happens is, when i move over another

[jQuery] Re: Selectors only matching first element

2009-06-05 Thread Casey Wise
input typ=checkbox class=myCheck name=myCheck value=1 input typ=checkbox class=myCheck name=myCheck value=2 input typ=checkbox class=myCheck name=myCheck value=3 input typ=checkbox class=myCheck name=myCheck value=4 $(.myCheck).each(function() { $(this)attr('checked', true); }); I know

[jQuery] Re: Help required on JQuery Autocomplete plugin

2009-06-05 Thread MorningZ
Why are you also manually binding a keypress event when the autocomplete plugin already does so? On Jun 5, 6:46 am, Azzu mailazz...@gmail.com wrote: Hey guyz need some help with JQuery. I have a requirement in my project to provide an autocomplete feature for a textBox like the one recently

[jQuery] Re: finction width(divs) is not defined

2009-06-05 Thread MorningZ
change $(function() { to $(window).load(function() { to give the DOM time to be finished, then the width will work On Jun 5, 7:35 am, runrunforest craigco...@gmail.com wrote: Hi, style type=text/css  div { width:40px; height:40px; margin:10px; float:left;         border:2px solid blue;

[jQuery] Re: DragDrop Plugin that will allow users drop information on a form to autocomplete

2009-06-05 Thread Richard D. Worth
Have you seen jQuery UI Drag and Drop? http://jqueryui.com/demos/droppable/ It doesn't have anything to move the data into the dropped fields. You would handle that in the 'drop' event callback. - Richard On Thu, Jun 4, 2009 at 8:37 PM, efet efetun...@gmail.com wrote: I have a simple

[jQuery] simple(fy) data count

2009-06-05 Thread Peter Marino
Hi jQuery, I have the following: if ( $(.div_count).data(clone_count)==undefined ) { $(.div_count).data( clone_count, 1 ); } else { $(.div_count).data( clone_count, $(.div_count).data(clone_count)+1 ); } var clone_count = $(.div_count).data( clone_count ); is there any method that can do this a

[jQuery] Re: Request: build hoverFlow in jquery core

2009-06-05 Thread Mark
On Tue, Jun 2, 2009 at 10:48 PM, Ralf Stoltzeralf.stol...@googlemail.com wrote: Hi Mark, First let me say that your request might be better suited for the jquery-dev list. As the author of hoverFlow I'm not quite sure if and how hoverFlow should be included in core. I think that

[jQuery] Accordion Mouseover Event

2009-06-05 Thread Alaa
Hello, I am trying to implement an accordion with event = mouseover, when I write $(function() { $(#accordion).accordion({ event: mouseover }); }); It shows the accordion and I can navigate by mouseover, but , when I write

[jQuery] Drag and drop prob

2009-06-05 Thread Perfektus
Hallow fellows. Recently i installed Dragg Dropp plugins for my jquery, and is working acually its brilliant i love it! But something is missing, i got my drop zone aswell as i got my drag element, these 2 elements is of same size. i got revert: 'invalid' So that you may only drop in drop

[jQuery] Dragg and dropp problem! :/

2009-06-05 Thread Perfektus
Hallow fellows. Recently i installed Dragg Dropp plugins for my jquery, and is working acually its brilliant i love it! But something is missing, i got my drop zone aswell as i got my drag element, these 2 elements is of same size. i got revert: 'invalid' So that you may only drop in drop

[jQuery] How to check if an element is done loading

2009-06-05 Thread Jeff Rose
I'm looking for suggestions on how I can implement the following using jQuery 1.3 and whatever plugins may help. I need to insert an iframe or img that links to an external resource onto a page, and if that iframe or img does not load within a certain period of time, remove it and insert one

[jQuery] Dragg and dropp problem! :/

2009-06-05 Thread Perfektus
Hallow fellows. Recently i installed Dragg Dropp plugins for my jquery, and is working acually its brilliant i love it! But something is missing, i got my drop zone aswell as i got my drag element, these 2 elements is of same size. i got revert: 'invalid' So that you may only drop in drop

[jQuery] Select box .show problem

2009-06-05 Thread Mark Smith
Hi , I'm just trying jQuery out for the first time... Is this a bug in jQuery or am I doing something wrong? I am trying to chain together a bunch of drop down select boxes. Whenever I just use .hide() and .show() it works fine. But if I use .show(slow) it adds big gaps between some of the

[jQuery] Re: [autocomplete] hard time with accent

2009-06-05 Thread Tom Worster
On 6/4/09 2:17 PM, James james.gp@gmail.com wrote: What are you using to do the string matching? depends on the kind of search i need. For me, I was using autocomplete to search for something stored in a MySQL database, i think that's a very common scenario. and MySQL by default

[jQuery] Re: autocomplete

2009-06-05 Thread Tom Worster
On 6/5/09 3:37 AM, BBCLX beat.bes...@gmail.com wrote: I am using the plugin in remote-mode meaning that I fetch a seperated list from my server. The problem now is that this server uses basic authentication and whenever I start typing I get prompted for the username and password, which is

[jQuery] Re: autocomplete

2009-06-05 Thread Stephen Sadowski
On Fri, 05 Jun 2009 09:34:05 -0400, Tom Worster f...@thefsb.org wrote: not for basic auth which is handled in http. you need to fix this on the server. i don't think there's much point in user auth for autocompletion lookups so i would turn it off. Well you could expose your auth un/pw by

[jQuery] Re: Complicated setup help.

2009-06-05 Thread Aaron Gundel
Hi Dave, It appears that your method signature for attr function is incorrect. See http://docs.jquery.com/Attributes for details (Looks like you're passing in an anonymous function as the third parameter of the attr function...this won't work. You'd need to pass it in as the second value --

[jQuery] Re: How to check if an element is done loading

2009-06-05 Thread waseem sabjee
script $function() { $(#myelementid).load(function() { alert(my element is fully loaded); }); }); /script On Fri, Jun 5, 2009 at 2:35 PM, Jeff Rose carrie.n.j...@gmail.com wrote: I'm looking for suggestions on how I can implement the following using jQuery 1.3 and whatever plugins may

[jQuery] Re: Can jQuery parse XML locally?

2009-06-05 Thread kevinm9876
I've never been able to get IE to work locally when using jquery to parse XML. I am not sure what it is but I think it is a security thing in IE. Once you put it on a server though, it should work (at least it did for me). On Jun 4, 1:51 pm, fredriley fred.ri...@gmail.com wrote: On Jun 2, 6:42 

[jQuery] Re: Text Scroller vertical

2009-06-05 Thread waseem sabjee
Hi there. I haven't seen a non-buggy vertical scroller. I am trying to make one though. the scolling works properly with up and down arrows but the scrollbar causes some buggy behavior. i will let you know when i resolved my bugs. On Fri, Jun 5, 2009 at 10:50 AM, simon si...@uvfx.tv wrote: I

[jQuery] Re: Getting too much recursion y FF3 and out of memory on IE7.

2009-06-05 Thread waseem sabjee
Try this script i wrote out just now THE HTML div id=control div id=images img src=imgpath1.jpg border=0 / img src=imgpath2.jpg border=0 / img src=imgpath3.jpg border=0 / img src=imgpath4.jpg border=0 / img src=imgpath5.jpg border=0 / /div /div THE CSS style * { margin:0; padding:0; } //

[jQuery] Re: Text Scroller vertical

2009-06-05 Thread simon
thanks, I have tried and am continuing to experiment with things like carosel, simpleScroll ect, but nothing yet again thanks Si

[jQuery] Re: Text Scroller vertical

2009-06-05 Thread waseem sabjee
cool. yeah...its not easy to get right. would you mind it without the scroll bar for now ? you would have arrows for scroll up and scroll down. but not a scroll bar. email me on : waseemsab...@gmail.com On Fri, Jun 5, 2009 at 4:48 PM, simon si...@uvfx.tv wrote: thanks, I have tried and am

[jQuery] Re: Text Scroller vertical

2009-06-05 Thread simon
Yeah! dont really require a scroll bar just the up and down arrows, I can use scrollPane for the wholw thing but its with just buttons thats hard to find. thanks On Jun 5, 3:52 pm, waseem sabjee waseemsab...@gmail.com wrote: cool. yeah...its not easy to get right. would you mind it without the

[jQuery] document.body is null or is not an object

2009-06-05 Thread Lideln
Hi ! I have an issue... What is weird, is that my colleagues don't have it ! (and I did not have it this morning) It happens only on IE6... Everything is fine under Firefox (3), Safari (4 beta) and Opera (9.64). When logging in into my application, IE tells me document.body is null or is not an

[jQuery] Confusing and probably inaccurate documentation for noConflict()

2009-06-05 Thread Alex Ehlke
The online documentation for jQuery.noConflict() seems to be incorrect, or ambiguous at best. Here is the text I'm referring to, from http://docs.jquery.com/Core/jQuery.noConflict : NOTE: This function must be called after including the jQuery javascript file, but before including any other

[jQuery] JQuery DatePicker Plugin

2009-06-05 Thread Bluesapphire
Hi! Iam using JQuery DatePicker Plugin , created by Kelvin Luck (http:// www.kelvinluck.com/). Plugins default format is d/m/Y. Can someone guide me how to change its default format to US Date format (m/d/Y). Thanks in advance

[jQuery] Cluetip mouseout event doesn't trigger when we hover away from the target

2009-06-05 Thread sduffer
Hi, I am facing a problem of triggering on mouseout event when we move mouse away from target. But it does trigger this event when we mouseover the cluetip and mouse out. Now I want to work in same way for target or the selector on which I hover to see the tooltip. It is annoying if I

[jQuery] Re: JQuery DatePicker Plugin

2009-06-05 Thread Mauricio (Maujor) Samy Silva
Set in options: dateFormat: mm dd yy Maurício -Mensagem Original- De: Bluesapphire Para: jQuery (English) Enviada em: sexta-feira, 5 de junho de 2009 12:04 Assunto: [jQuery] JQuery DatePicker Plugin Hi! Iam using JQuery DatePicker Plugin , created by Kelvin Luck

[jQuery] Re: Confusing and probably inaccurate documentation for noConflict()

2009-06-05 Thread waseem sabjee
it's like namespace faking var $myvar = JQuery.noConflict(); $myvar(function() { $myvar(body).animate({ opacity:0}, 500); }); On Fri, Jun 5, 2009 at 5:06 PM, Alex Ehlke capt...@gmail.com wrote: The online documentation for jQuery.noConflict() seems to be incorrect, or ambiguous at best.

[jQuery] Re: repeatly fadein/fadeout an object

2009-06-05 Thread Davis
after page load, i want make this effect ( fadein/out ) on a text until user click on it and stop this effect. thanks for any advise how to implement it. many thanks/Davis.

[jQuery] Newbie: jQuery performance with 1000s of form elements

2009-06-05 Thread ravi
Hello all, a newbie question: In a web page, I have a table with 300+ rows each with 15 or so form elements, adding up to 4500+ form elements in that single page. The table is created and maintained dynamically using jQuery+AJAX. Each element has a class associated with it and I have

[jQuery] Calling C#-function in the validator

2009-06-05 Thread Ivar Kunst
Hello all, I'm quite new to Jquery, so I need some sort of advice. I'm working on a webbased application with a webservice. First it was a simple html site, but later I started using Jquery. Data is inserted in some forms, this I can easily validate through the validator. Now after all the

[jQuery] jquery append in ie6

2009-06-05 Thread liam
Not sure if I am doing something wrong here, but this fails in IE6: $.getJSON(links.htt, { get_favorites : 1 }, function(data){ $.each(data, function(key) { $(#selectModule).append( $(option/option).html(key).attr(value, key) );

[jQuery] Re: Newbie: jQuery performance with 1000s of form elements

2009-06-05 Thread ravi
On Jun 5, 2009, at 1:04 PM, ravi wrote: Hello all, a newbie question: In a web page, I have a table with 300+ rows each with 15 or so form elements, adding up to 4500+ form elements in that single page. The table is created and maintained dynamically using jQuery+AJAX. Each element has

[jQuery] Re: jquery append in ie6

2009-06-05 Thread waseem sabjee
try this notice the single and double quote usage 'div id=mydiv\/div'; notice i wrapped the whole statement in single quotes so that i may use double quotes just like i do for normal html then i used \/div instead of /div this is due to the way JavaScript escapes text. '\/' will output '/'

[jQuery] drag and drop portlet system based on DotNetNuke

2009-06-05 Thread Armand Datema
Hi Just wanna show of our portal system based on DotNetNuke jQuery and jQueryUI We took the sortable example and modified it with up down movement animation slide into place smooth animation drag to delete and click to delete restore functionality Inspiration was the bbc.co.uk site

[jQuery] context issues when using $.ajax please help!

2009-06-05 Thread Alex Weber
I'm having problems returning values from within functions that make use of $.ajax functions For example: var obj = { this.foo = 'foo', this.bar = function(variable){ $.post('myscript.php', 'var='+variable, this.callback, 'json'); }, this.callback = function(json){

[jQuery] Re: jquery append in ie6

2009-06-05 Thread liam
ok, i did this instead, $(.pulldownOptionsContainerHidden).append( $(div class='pulldownOption'/div).html(key).attr(value, key) ); maybe ie gets confused when not being specific enough? fortunately in this case i am not counting on dealing with an array. Liam On

[jQuery] Re: jquery append in ie6

2009-06-05 Thread liam
thanks for your suggestion, though i hadn't given it a shot before i figured something else out. but im thankful for your quick response! On Jun 5, 1:19 pm, waseem sabjee waseemsab...@gmail.com wrote: try this notice the single and double quote usage 'div id=mydiv\/div'; notice i wrapped

[jQuery] Re: jquery append in ie6

2009-06-05 Thread liam
thanks for your suggestion, though i hadn't given it a shot before i figured something else out. but im thankful for your quick response! On Jun 5, 1:19 pm, waseem sabjee waseemsab...@gmail.com wrote: try this notice the single and double quote usage 'div id=mydiv\/div'; notice i wrapped

[jQuery] Re: jquery append in ie6

2009-06-05 Thread liam
thanks for your suggestion, though i hadn't given it a shot before i figured something else out. but im thankful for your quick response! On Jun 5, 1:19 pm, waseem sabjee waseemsab...@gmail.com wrote: try this notice the single and double quote usage 'div id=mydiv\/div'; notice i wrapped

[jQuery] Re: A beginerhaving problems with jquery

2009-06-05 Thread BrownPrince
I downloaded the libraries but i couldnt see the jquet.js file. All i see is jquery.1.2.3.js On Jun 4, 4:04 pm, waseem sabjee waseemsab...@gmail.com wrote: have you downloaded th Jquery Javascript library fromhttp://jquery.com/? have you added the script refference you your page ? head

[jQuery] Re: A beginerhaving problems with jquery

2009-06-05 Thread BrownPrince
I downloaded the libraries but i couldnt see the jquet.js file. All i see is jquery.1.2.3.js On Jun 4, 12:46 pm, BrownPrince tochiuna...@yahoo.co.uk wrote: I just started using jquery recently. I do understand the codes and how they work but i cant understand how to reference external jquery

[jQuery] Re: A beginerhaving problems with jquery

2009-06-05 Thread BrownPrince
I downloaded the libraries but i couldnt see the jquet.js file. All i see is jquery.1.2.3.js On Jun 4, 4:06 pm, MorningZ morni...@gmail.com wrote: And to add to that, the actual name of the js file makes absolutely no difference  (i think that was the question actually asked by the original

[jQuery] Re: Calling C#-function in the validator

2009-06-05 Thread waseem sabjee
your web service mymethod.asmx.cs [webmethod] public string[] getData() { // note i used a dataset EventsTableAdapters.EventsTableAdapter ta = new EventsTableAdapters.EventsTableAdapter(); Events.EventsDataTable dt new Events.EventsDataTable(); // C# string list Liststring result as new

[jQuery] Re: A beginerhaving problems with jquery

2009-06-05 Thread waseem sabjee
that is the correct file name say if the jquery.1.2.3.js sits on your desktop and the index.html sits on your desktop in your head code you will say script src= jquery.1.2.3.js/script On Fri, Jun 5, 2009 at 7:30 PM, BrownPrince tochiuna...@yahoo.co.uk wrote: I downloaded the libraries but

[jQuery] Re: finction width(divs) is not defined

2009-06-05 Thread Ricardo
There is no global 'width' function in jQuery. It's a method of jquery objects, try it this way: script type=text/javascript $(function(){ console.log( $('div').width() ); }); On Jun 5, 8:35 am, runrunforest craigco...@gmail.com wrote: Hi, style type=text/css  div { width:40px;

[jQuery] Re: jquery append in ie6

2009-06-05 Thread liam
ok, i did this instead, $(.pulldownOptionsContainerHidden).append( $(div class='pulldownOption'/div).html(key).attr(value, key) ); maybe ie gets confused when not being specific enough? fortunately in this case i am not counting on dealing with an array. Liam On

[jQuery] Re: finction width(divs) is not defined

2009-06-05 Thread waseem sabjee
you can try this var divsize = $(div).width(); however if one div size differs you won't get an accurate reading so try this var divsize; $(div).each(function(i) { divsize += $(div).eq(i).width() + ', '; }); this will return the widths of each div seperated by a comma in your variable we

[jQuery] Re: drag and drop portlet system based on DotNetNuke

2009-06-05 Thread Richard D. Worth
This is great. Would you mind posting here as well? http://groups.google.com/group/jquery-ui Thanks. - Richard On Fri, Jun 5, 2009 at 1:23 PM, Armand Datema nok...@gmail.com wrote: Hi Just wanna show of our portal system based on DotNetNuke jQuery and jQueryUI We took the sortable

[jQuery] Re: Newbie: jQuery performance with 1000s of form elements

2009-06-05 Thread James
Try giving this post a read for tips on inserting large amount of data into the DOM: http://groups.google.com/group/jquery-en/browse_thread/thread/9889ebd5e10c9122 As for having many form elements, are these elements hidden by default? Usually the page becomes slower as you add more content on

[jQuery] Help preventing click

2009-06-05 Thread Dave Maharaj :: WidePixels.com
I have 6 links , each loads a form into its respective div. How can I disable the links if one of the 6 is clicked preventing a user from opening up 6 forms at once? I have $('a[class^=edit_]').unbind('click'); which stops the click from working but once the form is submitted i now need to

[jQuery] Re: Issue with hoverIntent

2009-06-05 Thread sduffer
Did you get any clue to solve this issue. I am facing the same problem now On May 17, 6:24 am, Lideln lid...@gmail.com wrote: Hi, I have been using clueTip, and decided to use the hoverIntent feature. Unfortunately, in some cases, the tooltip does not hide when I move away from the element,

[jQuery] Re: Help preventing click

2009-06-05 Thread MorningZ
First off, you are starting off with some really bad habits... something like a href=... class=edit_oneOne/a a href=... class=edit_twoTwo/a a href=... class=edit_threeThree/a and then saying 'a[class^=edit_]' is a bad way to access those links, as class acts a little different than a

[jQuery] What happened to 'this week in jQuery'?

2009-06-05 Thread MorningZ
http://blog.jquery.com/ this week in jQuery-s last entry: May 1st :-( Nothing new for the jQuery peeps to note in 5 weeks?

[jQuery] Re: Help preventing click

2009-06-05 Thread James
Just had to ask, are you also providing the callback function also? $('a[class^=edit_]').bind('click'); should be: $('a[class^=edit_]').bind('click', someFunction); On Jun 5, 8:13 am, MorningZ morni...@gmail.com wrote: First off, you are starting off with some really bad habits... something

[jQuery] Re: Confusing and probably inaccurate documentation for noConflict()

2009-06-05 Thread Ricardo
jQuery saves the '$' object on init, if it exists. noConflict() 'returns' it to the old owner. Passing true the 'jQuery' object is also freed. There's not much to it: jQuery.extend({ noConflict: function( deep ) { window.$ = _$; if ( deep )

[jQuery] Re: Help preventing click

2009-06-05 Thread Dave Maharaj :: WidePixels.com
This is what I have so far So this is the initial click which loads a form . $('a[class^=edit_]').click(function(){ var url_id = $(this).attr('href'); var e = $(this).attr('class'); var x = $(this).attr('id').split('_'); var y = x[0]; var z = x[1];

[jQuery] Using jQuery to insert IFrame dynamically after page loads.

2009-06-05 Thread Amit Saurav
Hello, I have a use case in which I need to insert an IFrame as a child to an existing DIV just after the page load completes. That is, the request to fetch content for this Iframe should go to the server after all the media in the page has loaded, basically after the page load event and not the

[jQuery] Re: drag and drop portlet system based on DotNetNuke

2009-06-05 Thread Armand Datema
ok just joined and posted there Armand On Fri, Jun 5, 2009 at 7:48 PM, Richard D. Worth rdwo...@gmail.com wrote: This is great. Would you mind posting here as well? http://groups.google.com/group/jquery-ui Thanks. - Richard On Fri, Jun 5, 2009 at 1:23 PM, Armand Datema

[jQuery] Re: repeatly fadein/fadeout an object

2009-06-05 Thread duggi
geez, it's so frkn hard to post a reply here. i had to signup, make a nickname, select email prefs gaaah. but, i spent a looong time with this same issue, fix is to use the stop () method: $(a.tm_link).stop().fadeOut(slow).fadeIn(slow); this stops the animation when minute changes occur,

[jQuery] [jQuery Validate] One error message for multiple invalid elements

2009-06-05 Thread dannet
Hello I'm using the jquery validate plugin from bassistance.de. In my form I have 3 select (day, month and year) to determine the birth date of the user (the 3 inputs are used as independent fields). My problem is that when I validate it, if the user has not entered the day, month of year, I get

[jQuery] One error message for multiple invalid elements jquery validate

2009-06-05 Thread dannet
Hello I'm using the jquery validate plugin from bassistance.de. In my form I have 3 select (day, month and year) to determine the birth date of the user (the 3 inputs are used as independent fields). My problem is that when I validate it, if the user has not entered the day, month of year, I get

[jQuery] Re: Help preventing click

2009-06-05 Thread James
I didn't look through what the code does, but doing what you want to do should have the code separated out similar to this: http://snipt.org/kGk On Jun 5, 8:32 am, Dave Maharaj :: WidePixels.com d...@widepixels.com wrote: This is what I have so far So this is the initial click which loads a

[jQuery] Re: repeatly fadein/fadeout an object

2009-06-05 Thread GaVrA
Im not sure if there is some function for this, but i guess you could use something like this: var a = 1; while(a == 1){ $(a.tm_link).fadeOut(slow).fadeIn(slow); }; and then on click you just put smtn like this: a = 2; :) maybe some tweeks but i guess it should work... On Jun 5, 6:59 pm,

[jQuery] Re: Using jQuery to insert IFrame dynamically after page loads.

2009-06-05 Thread GaVrA
I am not really sure, but i think this would be the way to make it: $(function() { //jquery code }); And maybe put that on page bottom or something like that. On Jun 5, 8:54 pm, Amit Saurav amitsau...@gmail.com wrote: Hello, I have a use case in which I need to insert an IFrame as a child

[jQuery] Re: Accordion Mouseover Event

2009-06-05 Thread GaVrA
Try using hover event. It accepts two functions, 1st for mouseover, and 2nd for mouseout. Something like this: $(function() { $(selector).hover({function () { //function for mouseover },function () { //function for mouseout }); }); On Jun

[jQuery] Re: Confusing and probably inaccurate documentation for noConflict()

2009-06-05 Thread waseem sabjee
to be honest. it would not be wise using multiple different js libraries. you basically have multiple definitions that do the exact same thingit really is best to stick to a specific library as much as you can. On Fri, Jun 5, 2009 at 8:29 PM, Ricardo ricardob...@gmail.com wrote: jQuery

[jQuery] Re: Help preventing click

2009-06-05 Thread waseem sabjee
$(#mylink).live(click, function() { alert(this alert will fire); }); $(#mylink).die(click, function() { alert(this alert will not fire); }); On Fri, Jun 5, 2009 at 9:31 PM, James james.gp@gmail.com wrote: I didn't look through what the code does, but doing what you want to do should

[jQuery] Re: Using jQuery to insert IFrame dynamically after page loads.

2009-06-05 Thread waseem sabjee
$(function() { // wait for DOM to fully load $(#target).html('iframe id=imageUpload src=imgupload.php\/iframe''); $(#imageUpload).live(load, function() { alert(iframe loaded); }); }); On Fri, Jun 5, 2009 at 9:43 PM, GaVrA ga...@crtaci.info wrote: I am not really sure, but i think this would

[jQuery] Re: Issue with hoverIntent

2009-06-05 Thread Brian Cherne
I exchanged a few messages with Renaud (aka LideIn), trying to get sample code... but that effort stalled. I've got a busy weekend, but if you supply some sample code or send me a URL (on or off-list) I'll take a look early next week. Cheers, Brian. On Fri, Jun 5, 2009 at 11:11 AM,

[jQuery] Re: Issue with hoverIntent

2009-06-05 Thread Karl Swedberg
I'll also try to look into it this weekend. Might have to do with animations running. Will see if I need to put a stop() in somewhere. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 5, 2009, at 4:08 PM, Brian Cherne wrote: I exchanged a few

[jQuery] ajax.request equivalent in jquery

2009-06-05 Thread deex
Hey all... I am doing a conversion of prototype to jquery and am stuck on a script... I can't figure out how to define certain fields. Here's the prototype call: new Ajax.Request(url, { method:'post', postBody: 'media_id='+media_id,

[jQuery] Cycle Plugin and Wordpress not playing nice

2009-06-05 Thread LTdMAg
http://www.ltdmag.com/hometest/ If you view the above URL the TEST IMAGE at the top is actually a custom field image for 3 blog posts. the HTML seems to be formatted correctly and my cycle plugin also seems to be called and formatted correctly. I have disabled ALL plugins as well, and tested

[jQuery] Cycle Plugin and Wordpress not playing nice

2009-06-05 Thread LTdMAg
http://www.ltdmag.com/hometest/ If you view the above URL the TEST IMAGE at the top is actually a custom field image for 3 blog posts. the HTML seems to be formatted correctly and my cycle plugin also seems to be called and formatted correctly. I have disabled ALL plugins as well, and tested

[jQuery] re-establish user selection in a div with designmode=true

2009-06-05 Thread dhoover
I have a web app where I have created a div to masquerade at a textarea so I can add highlighting according to so rules. I rely on setting designmode=true. After certain amounts of idle time my code grabs the text from the div, which consists of p tags and span tags and re-generates the html with

[jQuery] plugin validate

2009-06-05 Thread Leonardo Aidar
When i valid the formulary with j-query validate, it increases the width(or size) of my imput. How can i take out this option? Please help me, its urgent! thanks.

[jQuery] Re: Using jQuery to insert IFrame dynamically after page loads.

2009-06-05 Thread infoaddicted
There is, AFAIK, no more robust onload function. The shorthand for it is quite easy: instead of: $(document).ready(function () { ... you only have to do $(function() { ... Make sure that you're not confusing the template if() block, which would be server side, with

[jQuery] Re: jquery validation plugin. Need help with passing variable to jQuery.format

2009-06-05 Thread talisien
On 5 jun, 12:11, talisien globalnewsgrab...@gmail.com wrote: I'm having some troubles with passing variables to jQuery.format I have a script (php) that's checks if the domain part exists. If not it will show an message The following code works #1 It split an email address and assigns

[jQuery] Re: What happened to 'this week in jQuery'?

2009-06-05 Thread infoaddicted
This Week in jQuery, vol. 6 - http://blog.jquery.com/2009/05/01/this-week-in-jquery-vol-6/ ? On Jun 5, 2:15 pm, MorningZ morni...@gmail.com wrote: http://blog.jquery.com/ this week in jQuery-s last entry:  May 1st  :-( Nothing new for the jQuery peeps to note in 5 weeks?

  1   2   >