Re: [jQuery] New Forums

2010-01-26 Thread Joe Moore
e a Google Apps account. Hope this helps, Joe Moore On Thu, Jan 21, 2010 at 7:28 PM, Shawn wrote: > My apologies to the list managers. I did not mean to belittle their > efforts in any way. I only meant to state that for me, personally, forums > are not the preferred tool. > > I a

Re: [jQuery] jQuery Version

2010-01-06 Thread Joe Moore
your site. Good luck! Joe On Wed, Jan 6, 2010 at 10:04 AM, Cyberdog wrote: > Hi, > I have a website which has jQuery JavaScript Library v1.3.2 installed. > Should i update this to the latest, or would this cause problems to > the site. > > Thanks > Dave. >

[jQuery] Re: How to check whether an element is bound to an event or not?

2010-01-02 Thread Joe Sondow
Yes, the live function. http://docs.jquery.com/Events/live "Added in jQuery 1.3: Binds a handler to an event (like click) for all current - and future - matched element. Can also bind custom events." On Jan 2, 11:44 pm, "Md. Ali Ahsan Rana" wrote: > hi, thanks. But, what is happening here is: >

[jQuery] Re: json return

2009-12-30 Thread Joe Sondow
Your json string represents an array. The variable "data" is probably that array. There is no idfakultas property on the array, but there is an idfakultas property on each of the two objects in the array. Try this for your alert: alert("tes =" + data[0].idfakultas + " " + data[1].idfakultas);

[jQuery] What is the canonical way of seeing if a selector returns an empty list?

2009-12-17 Thread Joe Grossberg
nothing matches'); } Instead, I do it like this (since zero is false-y in JavaScript): if ( $('.foo').length ) { alert('at least one matching element'); } else { alert('nothing matches'); } But is that the preferred way of doing this? Thanks, Joe

[jQuery] Re: Simple XML Parsing Question

2009-11-18 Thread Joe
xml and > jQuery:http://www.bennadel.com/blog/1054-jQuery-Demo-Working-With-XML-Docume... > > ...or if you want to make the code you have work you can "cheat" and just > change the name of one of the two 'id's in your xml... ;) > > Wil > > On Wed, Nov 18, 2

Re: [jQuery] Simple XML Parsing Question

2009-11-18 Thread Joe Moore
Instead of find, use children? On Nov 17, 2009 2:56 PM, "Joe" wrote: I have been banging my head against the wall and searching for answers for the past week, so any help or direction would be appreciated. I am sure that I am missing something obvious. I have some XML that looks

[jQuery] Simple XML Parsing Question

2009-11-17 Thread Joe
entType variable works find (but there is only one instance. Any ideas on how to fix this? I am at my wits end. thx, Joe C

Re: [jQuery] Re: button value change

2009-11-12 Thread Joe Moore
Certainly more concise! On Thu, Nov 12, 2009 at 10:00 AM, saxan rappai wrote: > iam not sure with this .. but its working... a lil modification.. > > > > > Test Page > > > $(function() { > $('#but').toggle( > function

Re: [jQuery] Re: button value change

2009-11-12 Thread Joe Moore
$('#btn2').toggle( function(event) { $(this).text('Hide Details'); }, function(event) { $(this).text('More Details'); } );

Re: [jQuery] Re: IE7 onclick object.function

2009-11-11 Thread Joe Moore
"varone: " + varone + "\n" + "vartwo: " + vartwo + "\n" + "varthree: " + varthree + "\n" + "varfour: " + varfour + "\n" +

Re: [jQuery] Re: IE7 onclick object.function

2009-11-11 Thread Joe Moore
artwo: " + vartwo + "\n" + "varthree: " + varthree + "\n" + "varfour: " + varfour + "\n" + "varfive: " + varfive ); } More Detai

Re: [jQuery] IE7 onclick object.function

2009-11-11 Thread Joe Moore
_function(parameters); } ); }); More Details HTH, Joe On Wed, Nov 11, 2009 at 1:14 PM, Matthew wrote: > I posted this earlier, but perhaps I didn't explain it right. > > Im trying to get code that

Re: [jQuery] button value change

2009-11-11 Thread Joe Moore
$('div[class^=hide-BAT]').hide(); }); More Details HTH, Joe On Wed, Nov 11, 2009 at 1:01 PM, David pr wrote: > Hello, > > I had an > More details a> > $(this).text($(this).text() == 'More details' ? 'Hide details' : 'More > details'

Re: [jQuery] Re: .hide and .show div's

2009-11-11 Thread Joe Moore
rstand why it is slow... - first jQuery walks across the whole entire DOM tree grabbing every single , and that's whether it's one you are after or not - then id needs to get every single class name, and do a (relatively to other methods anyways) slow "end with" operator Yuc

Re: [jQuery] .hide and .show div's

2009-11-11 Thread Joe Moore
Oops. got the selector wrong. It should be: $( function() { $(div[class^=hide-BAT].hide(); }); Joe On Wed, Nov 11, 2009 at 8:38 AM, Joe Moore wrote: > $( function() { >$(div[class=hide-BAT$].hide(); > }); > > I haven't tested this, but it should work. If not,

Re: [jQuery] .hide and .show div's

2009-11-11 Thread Joe Moore
$( function() { $(div[class=hide-BAT$].hide(); }); I haven't tested this, but it should work. If not, verify the selector. Not sure why you are giving a unique classname to all these elements. If you need it, why not use the I'd attribute? Regards, Joe On Nov 11, 2009 8:17 AM,

Re: [jQuery] Re: Error '$this' is undefined

2009-11-11 Thread Joe Moore
27;,'My Shopping Bag')); }); }); View Cart Joe On Wed, Nov 11, 2009 at 7:30 AM, Daybreak0 wrote: > Joe > > No I dont want anything to happen when you click on the link > > I want to change it beforehand. > > Basically ON LOAD of the html I need certain text replac

Re: [jQuery] Re: Error '$this' is undefined

2009-11-11 Thread Joe Moore
View Cart HTH, Joe On Wed, Nov 11, 2009 at 5:32 AM, Joe Moore wrote: > So the jquery code executes when they click on the link? > If so, do you have a click event attached to the links and this code is on > it? > > On Nov 10, 2009 10:46 PM, "Daybreak

Re: [jQuery] Re: Error '$this' is undefined

2009-11-11 Thread Joe Moore
So the jquery code executes when they click on the link? If so, do you have a click event attached to the links and this code is on it? On Nov 10, 2009 10:46 PM, "Daybreak0" wrote: Joe Here is the Html fom above - I should have continued it into the conversations. HTML Code: Vi

Re: [jQuery] Re: Error '$this' is undefined

2009-11-10 Thread Joe Moore
Well, what are you expecting $(this) to be? What code (HTML & JavaScript ) do you have to show us? On Nov 10, 2009 8:42 PM, "Daybreak0" wrote: Joe and Marcel - I see. Thank you $('.cartSummaryLink').val( $(this).val().replace('Cart','My Shopping Bag&#x

Re: [jQuery] Error '$this' is undefined

2009-11-10 Thread Joe Moore
$this should be $(this). Hth, Joe On Nov 10, 2009 2:12 PM, "Daybreak0" wrote: Hi all, I have the following html, of which I want to replace the text "Cart" with "My Shopping Bag" (The Veiw Cart text is near the end) Code: 1 item(s), Total: £0.00 View Cart Now

[jQuery] Get XML nodes when node name is repeated

2009-11-03 Thread Joe
uot;).text(); It returns "100200" It is returning both "id" nodes, when all i want is the foo id node. How can i select only foo's id node. t thx, Joe C

[jQuery] Re: How to access a JavaScript object from within an ajax call?

2009-10-27 Thread Joe
Thx!!! This is exactly what i was looking for!!! I knew there was a simple solution. Joe C On Oct 27, 11:08 am, Michel Belleville wrote: > Well, you're using $.ajax() and the context of its callbacks make this the > xhr object, so no surprise there. > > This should w

[jQuery] How to access a JavaScript object from within an ajax call?

2009-10-27 Thread Joe
success: requestSuccess }); } function requestSuccess(data){ this.someInfo = $(data).find('type'); } //ENDCODE I am having problems with the last line. How do i get access to the JS object, so that i can set some info on it, based on the ajax call? Any help would be appreciated? thx, Joe C

[jQuery] Re: images show before jquery and cycle plugin work their magic

2009-10-23 Thread joe
Thor I am having the exact same problem - have you found a solution?? can someone explain overflow and overflow of hidden? poundcommapo...@gmail.com your message is cryptic - can you elaborate. I am not calling the plug-in from a parent element, unless would be the parent element? Joe On Oct

[jQuery] images visible when first loading the web page

2009-10-22 Thread joe
gh it does happen on an earlier version of safari. Joe

[jQuery] autocomplete with tooltip

2009-10-08 Thread Joe
Hi Folks, it is possible to combined the autocompleter with the tooltip plugin? I must call " $("#tooltip").tooltip({ track: true, showURL: false });" to acticate the tooltip BUT i dont have the "onComplete" or "onReady" Event on the autocompleter. ;( Or is the the wrong way ? Thx Joe

[jQuery] Auto Slide show with 3 images (a couple of problems) <--> Need Some Assistance

2009-09-08 Thread Joe Kinslow
Hi Folks: I have jquery code on my index.html found here: http://joeyworldfamous.com/ I need to modify the code to include the following: 1. only show the slide show once (remove the repeat). 2. auto direct to another page after the slide show completes once. 3. understand how to delay my "e

[jQuery] Fwd: [jquery-ui] Re: Psychological Assessmet Tool Using JQuery and Personal Construct Theory

2009-08-24 Thread Joe Whitehurst
Is this actuallly related to jQuery UI? If not, please post to the jQuery discussion list: http://groups.google.com/group/jquery-en Otherwise, please provide a more specific description of your problem. jQuery UI support team On Sun, Aug 23, 2009 at 10:49 PM, Joe Whitehurst wrote: > I recen

[jQuery] Re: (Validate) Validation is only occuring the first time "Submit" is clicked

2009-07-22 Thread Joe Devon
Thanks for coming back...I'm having the same problem and your solution doesn't work for me.

[jQuery] Is it possible to add filters to the (validate) plugin?

2009-07-20 Thread Joe Devon
The validation plugin is working wonderfully. On the server side, there is some processing like trimming the input field, lowercasing the input field, etc... Is there an easy way to wrap the fields into such filters prior to processing so that the client check matches the server check? The syntax

[jQuery] Problem with looping autocomplete

2009-06-07 Thread Joe Tseng
nd returns valid values but does not seem to pass my 2nd parameter (jobno). The record from my web server access log is as follows: q=95&fuseaction=j.elements_autocomplete&jobno= Jobnumber should have a large integer value (eg 100245100). What irritates me is that my 1st autocomplete wo

[jQuery] IFrame Question

2009-05-28 Thread Joe L
Hello All! I'm working on a project and within a document I have content being loaded into an iframe. When a user clicks on an item in the iframe, a pop-up div is loaded using the facebox plugin but it's obviously contained by the iframe. Is there any way that I can pull that element out of the

[jQuery] Re: jQuery.support -- No direct support for IE6 detection

2009-04-06 Thread Joe McCann
ixes according to > >> previous knowledge about it's flaws, you check for correct > >> implementations of the exact features you need, browser agnostic. > > >> cheers, > >> - ricardo > > >> On Apr 4, 1:43 pm, Joe wrote: > > >>>

[jQuery] Re: jQuery.support -- No direct support for IE6 detection

2009-04-05 Thread Joe McCann
tead of sniffing the browser and serving fixes according to > > previous knowledge about it's flaws, you check for correct > > implementations of the exact features you need, browser agnostic. > > > cheers, > > - ricardo > > > On Apr 4, 1:43 pm, Joe wrote: &

[jQuery] Re: jQuery.support -- No direct support for IE6 detection

2009-04-05 Thread Joe McCann
of IE and the support method doesn't appear to have that option. Unless I am missing something... Joe On Apr 4, 11:45 pm, Ricardo wrote: > jQuery.support is for feature detection. The whole point of it is to > avoid browser detection - which is still available via jQuery.browser. >

[jQuery] jQuery.support -- No direct support for IE6 detection

2009-04-04 Thread Joe
I'm all for migrating to the jQuery.support() utility method, but there is not definitive test available to detect IE6 specifically. Do we have a consensus on this yet?

[jQuery] Tabs and tables

2009-03-24 Thread Joe Tseng
#x27;ve come to discover this breaks the entire page and was wondering if others have been able to use child tables and Tabs successfully. tia, - Joe -- Failure is always an option -- Adam Savage

[jQuery] Ajax Multiplayer Game

2009-02-25 Thread Joe
I've been writing a little ajax based game. It will be multiplayer, and is written with jquery. http://code.google.com/p/ajaxmmo enjoy :)

[jQuery] Re: select next n "somethings"

2009-01-22 Thread Joe
This: var preBefore = $('p:eq(3)').prev('pre').text(); Only grabs the text of the preceding text contained within the tag. If you need all the tags prior, then use prevAll() http://docs.jquery.com/Traversing/prevAll Joe http://www.subprint.com On Jan 19, 5:03

[jQuery] Re: select next n "somethings"

2009-01-19 Thread Joe
Here ya go: http://www.w3.org/1999/xhtml"; xml:lang="en-us" lang="en" dir="ltr"> http://ajax.googleapis.com/ ajax/libs/jquery/1.3/jquery.min.js"> $(function(){ var preBefore = $('p:eq(3)').prev('pre').text();

[jQuery] Re: simple click event won't fire

2009-01-19 Thread Joe
What is a "one" event? On Jan 19, 6:48 am, mmvdl wrote: > Within a each first of every row has an tag. > But I want the whole to be clickable. > > To avoid recursion I've put a .one() event on the like so: > > $("table.vacatures tbody tr").one("click", function(){ >    $(this).find("a:first

[jQuery] Issue upgrading to 1.3

2009-01-14 Thread Joe Morgan
1.3. Am I doing something incorrectly? - Joe

[jQuery] Re: append() not working on dynamically-created nodes in IE

2009-01-12 Thread Joe White
Yep, that was all it took. Thanks! On Jan 11, 3:43 pm, "Karl Rudd" wrote: > Try closing the tag, ie: > > $('#myDiv').append($('')); > > Actually the second $() shouldn't be needed: > > $('#myDiv').append(''); &g

[jQuery] append() not working on dynamically-created nodes in IE

2009-01-11 Thread Joe White
I'm troubleshooting a problem where my text wasn't showing up in IE. I've narrowed the problem down to creating a DOM node dynamically (with $(html)) and then passing it to append(). In FireFox, append will add the node as expected; but when passed a dynamically-created node in IE, it does nothing

[jQuery] Re: jQuery-dependent TouchGraph Visualization (experiment)

2009-01-07 Thread Joe
Very impressive! Seems a bit sluggish at times in FF 3.0.5, but nice work! Joe On Jan 7, 5:12 am, David Decraene wrote: > I had some fun creating a pure HTML-DOM based Force-directed graph > layout, similar to a touchgraph (http://www.touchgraph.com/) view. > > Built with the he

[jQuery] Re: feature suggestion: .attr() without params returns the whole list of attributes

2009-01-07 Thread Joe
Oh nice! Yeah what I need to do is get the source from you and add the cookie settings to the plugin. It's been working like a charm! joe On Jan 6, 11:45 am, Balazs Endresz wrote: > Hi Joe! > > Sorry, I was wrong, as the namespace is reversed. But maybe using it > this wa

[jQuery] [OT] form input field value

2009-01-07 Thread Joe
step behind. That is, if I've typed a string that says foobar, the database is given the string fooba. If I've deleted the string to say foo, the database is passed the string foob. Has anyone seen this before and figured it out? tia, - Joe

[jQuery] Re: feature suggestion: .attr() without params returns the whole list of attributes

2009-01-06 Thread Joe
Balazs, That throws an error in the data method. Joe On Jan 6, 10:06 am, Ricardo Tomasi wrote: > You can't see all data saved either.. > > On Jan 6, 12:01 pm, Balazs Endresz wrote: > > > Why not use $(el).data() for that? > > > On Jan 6, 12:57 pm, "Alexan

[jQuery] Re: How can I replace some text to another fragment? Wrappers don't support it

2009-01-05 Thread Joe
There is no "ReplaceTo" method in jQuery. You will need to create your own method. Appears some simple regex replace would work. Joe On Jan 5, 6:20 am, ranium wrote: > Hello. How can I replace some text to another fragment? For example, > if I want to highlight all words ‘the

[jQuery] Re: checkboxes, array and $.post

2009-01-04 Thread Joe
$(':submit').click(function(){ var serial = $('form').serialize(); var subVal = $('#submitButton').val(); var param = $('#submitButton').attr('name'); var data = serial + subVal + param; $.post("delete.php", data, function(){ ... });

[jQuery] Re: How to check all required fields after each field is filled...

2009-01-04 Thread Joe
$req.each(function(){ $(this).blur(function(){ $.scan() }); }); }); On Jan 3, 9:58 pm, "Rick Faircloth" wrot

[jQuery] Re: How to check all required fields after each field is filled...

2009-01-03 Thread Joe
any required input (because technically the user could skip around on the form)? You obviously can't do it on submit because the button is disabled. I have an idea of how to do it, but you need to dictate the event handler that is going to do trigger the scanning. Joe http://www.subprint.com O

[jQuery] Re: Submit not propagating.

2009-01-02 Thread Joe
What is the code for the context menu? I have a hunch it is somewhere in there. Joe On Jan 2, 11:17 am, TimW66 wrote: > Thanks for the response.  I changed the name attribute to be "save", > but that didn't work either.  I think what's happening is there are >

[jQuery] Re: How can I call a function if I have that function name stored in a string?

2009-01-02 Thread Joe
Nice trickery there Mike! I dig it! On Jan 2, 3:34 am, "Michael Geary" wrote: > I don't know about the $.fn.myplugin part - that's not how you would > typically call a plugin function in the first place. > > But in general, given any object 'foo' and any property 'bar', you can > reference the

[jQuery] Re: live stats + setinterval

2008-12-31 Thread Joe
up. Joe http://www.subprint.com On Dec 31, 1:15 am, Commandos wrote: > is there a better way to write this code to avoid server problem if > the site gets a lot of visitors ? > > (keeping the "live" stats) > > > > // the call for the update (it just change

[jQuery] Re: checkboxes, array and $.post

2008-12-31 Thread Joe
he console, you will see the length of the wrapped set, the number of inputs with class "item_id". Check the API again: http://brandonaaron.net/docs/livequery/#api Also, $.each method is similar to a for-loop: http://docs.jquery.com/Core/each That's a start for sure... Cheers.

[jQuery] Re: Problem link,href,tree, etc.

2008-12-31 Thread Joe
Could you point me to a link or show more code? Not sure exactly what your trying to accomplish here. Joe On Dec 31, 9:40 am, vcs wrote: > Hello everyone! > My description: > I have a field (type div), under which links links are available to > some country's regions and

[jQuery] Re: pausing jquery

2008-12-30 Thread Joe
Geary" wrote: > > > Not only will that lock up the current browser, in many browsers it > > > will lock up *every* browser window or tab. Plus, if someone is > > > running on battery power it will drain the battery needlessly. > > > > As Richard said, setTimeout i

[jQuery] Re: pausing jquery

2008-12-30 Thread Joe
e Now'); A simple way of doing it, but it will lock the browser... Cheers. Joe http://www.subprint.com On Dec 30, 10:23 am, bwdev wrote: > I have the following code and want to basically write something out, > let it sit for a while, and then write something else out...how do I &g

[jQuery] Re: .load quircky

2008-12-30 Thread Joe
}); return false; }); }); The way you currently have your code written will load display.php immediately after delete.php?... is executed. If I'm understanding you correctly, you want it to load AFTER delete.php has run its course. Is this what you intended? Cheers. Joe

[jQuery] Re: Selector Logic

2008-12-30 Thread Joe
No problem, Dave...glad I could help. Joe http://www.subprint.com On Dec 30, 4:29 am, daveyoi wrote: > Thanks both for your excellent suggestions.. and thanks for the links > on Context Joe. :)

[jQuery] Re: Selector Logic

2008-12-29 Thread Joe
v_1". You can read more about context here: http://docs.jquery.com/Core/jQuery#expressioncontext Cheers. Joe http://www.subprint.com On Dec 29, 9:51 am, Eric Martin wrote: > Depending on what you are trying to do: > > $("#div_1 .headerButton img"); // return the img in heade

[jQuery] Re: I wrote a YUI Multi FIle Compression Utility

2008-12-23 Thread Joe
Very interesting. We added the Java .jar file to our build process so it keeps our code in source control "legible" and the code pushed to prod compressed. YUI compressor, IMO, is the best and most consistent. Joe http://www.subprint.com On Dec 23, 11:03 am, "Alexandre Ple

[jQuery] Re: incompatible while creating image element with IE

2008-12-15 Thread joe
i use the three way to create a image element,it works on all browsers except IE, IE just not show the image element. thank you. On 12月16日, 上午2时25分, brian wrote: > On Mon, Dec 15, 2008 at 10:41 AM, joe wrote: > > > $("").attr({src:imagesrc,alt:"joe"}) > >

[jQuery] incompatible while creating image element with IE

2008-12-15 Thread joe
$("").attr({src:imagesrc,alt:"joe"}) .mouseover(function(){this.src=imagel+imageid;}) .mouseout(function(){this.src=images+imageid;}) .appendTo($("#bc"+bookrecno)); $("") .mouseover(function(){this.src=imagel+imageid;}) .mouseout(function(){this.src=image

[jQuery] Re: Click Handler Not Returning False in IE7 Due to getScript()?

2008-12-11 Thread Joe
Strange, I get the jumpy response On Dec 10, 6:15 pm, donb <[EMAIL PROTECTED]> wrote: > Seems perfectly fine to me.  IE version 7 > > On Dec 10, 5:32 pm, Joe <[EMAIL PROTECTED]> wrote: > > > Any leads on this? > > > On Dec 6, 2:01 pm, Joe <

[jQuery] Re: Click Handler Not Returning False in IE7 Due to getScript()?

2008-12-10 Thread Joe
Any leads on this? On Dec 6, 2:01 pm, Joe <[EMAIL PROTECTED]> wrote: > Go here: > > http://www.theshedbbq.com/gulfport/photos/ > > Click one of the photo gallery links.  In IE7, it does not return > false and immediately jumps back to the top of the page.  Within the >

[jQuery] Re: bind a function to another function

2008-12-06 Thread Joe
d be class1-fun1 and called1-fun2 should be class1- fun2, right? Joe On Dec 6, 11:22 am, "Prajwala Manchikatla" <[EMAIL PROTECTED]> wrote: > Hi all, > >     I released my first jquery plugin. It is about binding or connecting a > function to another function. It is just li

[jQuery] Re: Click event broken by AJAX - explain please?

2008-12-06 Thread Joe
I'm having the exact same issue, but ony in IE 6/7, using getScript (). I'm wondering if it has to do with sending a GET request and IE is funky about it??? On Dec 6, 7:16 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > Doesn't this work? > > $("a").click(function() { >     var self = this; >    

[jQuery] Re: if ($("#field").val() == '') or something more elegant?

2008-12-06 Thread Joe
Karl's suggestion is how I always do it...simplest IMO. On Dec 6, 8:19 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Sure, that's fine. You could also do this: > > if (!$('#text').val()) > > --Karl > > > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Dec 6, 2008, at

[jQuery] Click Handler Not Returning False in IE7 Due to getScript()?

2008-12-06 Thread Joe
Go here: http://www.theshedbbq.com/gulfport/photos/ Click one of the photo gallery links. In IE7, it does not return false and immediately jumps back to the top of the page. Within the clickhandler, I'm grabbing some data from the anchor tags' attributes, then calling getScript(). Do I need t

[jQuery] Re: Simple Selector Question -- Context

2008-12-04 Thread Joe
n Dec 3, 1:17 pm, Liam Potter <[EMAIL PROTECTED]> wrote: > > > it would be this > > > $('p.error:visible') > > > Joe wrote: > > > If I have the following: > > > > var pError = $('p.error'); > > > > Then I c

[jQuery] Re: Simple Selector Question -- Context

2008-12-04 Thread Joe
]> wrote: > it would be this > > $('p.error:visible') > > Joe wrote: > > If I have the following: > > > var pError = $('p.error'); > > > Then I can do the following with no problem: > > > pError.text('lorem"); > > > Yet, I

[jQuery] Simple Selector Question -- Context

2008-12-03 Thread Joe
If I have the following: var pError = $('p.error'); Then I can do the following with no problem: pError.text('lorem"); Yet, I want to check for the paragraphs that have the class "error" that are visible, I would think it is something like this: var visibleError = $(':visible', pError); Howe

[jQuery] Re: jQuery / XML / IE

2008-12-01 Thread JOE VELEZ
Jemo - Your link appears to be working in IE7 ... probably since you've updated your script since this posting/solution below. Do you have your original code that wasn't working? It would be nice to see the differences in your code. Thanks - Joe

[jQuery] Re: remove() Method Causes Flicker in Firefox

2008-11-05 Thread Joe
Any ideas on this? Still stuck... On Nov 1, 4:33 pm, Joe <[EMAIL PROTECTED]> wrote: > I have to remove it, because the code directly following shows it > loading the new image and appending it to the parent div.  So in order > for the image that was faded out to not be ther

[jQuery] Re: remove() Method Causes Flicker in Firefox

2008-11-01 Thread Joe
k on the back end as well. Cheers. Joe www.subprint.com On Nov 1, 1:43 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Not sure why you wouldremovethe photo... What happens when you hide > it. > > On my G4 mac everything looks good except on the photo of "Li

[jQuery] Re: jQuery Leaderboard?

2008-10-02 Thread Joe
yeah what are you trying to accomplish? Not clear from the static image you posted. Cheers. Joe www.subprint.com On Oct 2, 9:53 am, "David Meiser" <[EMAIL PROTECTED]> wrote: > I'm not quite sure what it is you're looking for, here.  Are you looking for > a r

[jQuery] Re: Hover Events Can't "Keep Up" With FadeIn and FadeOut? Events Queue?

2008-10-01 Thread Joe
Still no luck. Been trying to keep track of a flag value and it doesn't help at all. Any suggestions? On Oct 1, 9:40 am, Joe <[EMAIL PROTECTED]> wrote: > Go here: > > http://www.uisore.com/dev/new_placard/ > > Now, mouseover the first thru the fifth thumbnails at t

[jQuery] Hover Events Can't "Keep Up" With FadeIn and FadeOut? Events Queue?

2008-10-01 Thread Joe
ortions of the jQuery API and have had no luck with my current scenario. thanks. Joe www.subprint.com

[jQuery] Processing.js Google Group Now Formed!

2008-09-24 Thread Joe
Head here: http://groups.google.com/group/processingjs And discuss! I already have one question and don't want to post it here on the jQuery board so I figured I'd go ahead and create the group. Cheers. Joe

[jQuery] FF3 Error With Preloaded CSS Images -- Works in IE?!!

2008-08-27 Thread Joe
pported by the underlying object" code: "15 And the code in the plugin where the error is firing is here: if(sheets[i].cssRules){//w3 Any clues? Thanks. Joe www.subprint.com

[jQuery] Re: Using instead of with Superfish

2008-08-26 Thread Joe
text like me, then be sure to remove the css styling the that you removed. On Aug 26, 8:22 am, Joe <[EMAIL PROTECTED]> wrote: > Thanks Joel, > > Putting in blank anchors worked perfectly. > > thanks > > -Joe > > On Aug 25, 10:51 pm, "Joel Birch" <[EM

[jQuery] Re: Using instead of with Superfish

2008-08-26 Thread Joe
Thanks Joel, Putting in blank anchors worked perfectly. thanks -Joe On Aug 25, 10:51 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Hi Joe, > > Be aware that by using spans instead of anchors you will be breaking > keyboard access to the submenus. Maybe us

[jQuery] Using instead of with Superfish

2008-08-24 Thread Joe
ion(i){ var $li = $a.eq(i).parents('li'); $a.eq(i).focus(function(){over.call($li);}).blur(function() {out.call($li);}); }); o.onInit.call(this); Any help would be very much appreciated. -Joe

[jQuery] Re: loading image for blockui on form submit

2008-08-20 Thread Joe
I've used blockUI for many things and never had this issue. Maybe explicitly make the image display: block or apply it as a background image to the h1 or another tag. Joe On Aug 19, 9:41 pm, xxkylexx <[EMAIL PROTECTED]> wrote: > Hey guys, > I am trying to use the blockui plugin i

[jQuery] Re: Your jQuery Best Practices

2008-08-18 Thread Joe
Wow now that's what I'm talkin about! Well done all! Keep'em coming, if we haven't covered them already. cheers. Joe On Aug 15, 10:38 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Aug 15, 2008, at 8:32 PM, Michael Geary wrote: > > > > >>&g

[jQuery] Jquery Problem in IE 6

2008-08-18 Thread Joe
Dear friends, i am working in a site, in which i have used jquery scripts. In Jquery the .html() is not working. I used .html() to print the output to one div from one file. If i use .html() in ie6 means the site in keep on loading. Please help me to fix the error. It is very Urgent

[jQuery] Jquery Problem in IE 6

2008-08-18 Thread Joe
Dear friends, i am working in a site, in which i have used jquery scripts. In Jquery the .html() is not working. I used .html() to print the output to one div from one file. If i use .html() in ie6 means the site in keep on loading. Please help me to fix the error. It is very *Urgent*

[jQuery] what 's the matter with jqgrid's website?

2008-07-21 Thread Double Joe
Tony ,what 's the matter with jqgrid's website, Is it down?

[jQuery] Re: Multiple Instances of the same effect without unique IDs

2008-07-16 Thread Joe S
link $(this.parentNode).find('.extraContent').slideToggle(); }); On Jul 16, 12:09 pm, Joe S <[EMAIL PROTECTED]> wrote: > OK, spoke too soon... on further testing, I'm getting an unintended > (but really stupid, on my part) side effect... > > if i put another anchor

[jQuery] Re: Multiple Instances of the same effect without unique IDs

2008-07-16 Thread Joe S
istening for (the click of the [Title]) or ignore clicks within the extraContent (again, without resorting to unique IDs for each row)? --joe On Jul 16, 8:59 am, Joe S <[EMAIL PROTECTED]> wrote: > Hi Karl, > Thanks so much for the help - it definitely got me in the right > dire

[jQuery] Re: Multiple Instances of the same effect without unique IDs

2008-07-16 Thread Joe S
ting weird thing happening with the 'td:first-child' approach. is anything i'm doing terribly bad form? again, thanks! On Jul 15, 7:51 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Joe, > > Assuming that the additional information that you're initially hiding  

[jQuery] Closures, Callbacks, Return Values and Google Maps API!!!

2008-07-15 Thread Joe
I have 2 js files. 1 is the jquery jmaps plugin (jmaps.js) (basically porting the google maps api to make creating google maps easier) and then the other file is all the actionable code (agency.js) to do stuff. I've been extending the plugin to add some features the original author did not put i

[jQuery] Multiple Instances of the same effect without unique IDs

2008-07-15 Thread Joe S
I know this has got to be in here somewhere; I'm not familiar enough with jQuery syntax to know what a valid search string is (i keep looking for EACH and THIS and MULTIPLE but I'm not returning anything useful). So I apologize that my noob stripes are showing through... I've got (basically) a ta

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-10 Thread Joe
ucker/Superfish style. Any insight on this? Have you tried it out for the non-JS, IE6 user? Joe On Jul 10, 10:44 am, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Okay, so the drop shadows are not applied in IE6 or 7 - will continue > to ponder workarounds there. Other than that, ju

[jQuery] Re: Combining Animation Methods: fadeOut and slideUp

2008-07-09 Thread Joe
Karl's tuts are priceless. Definitely read up on those. Helped me many a time. I would say if you wanted to do one after the other, you could do it as a callback function after the current function had completed, but that seems counterintuitive as you don't want to slide something up after it's

[jQuery] Re: Links injected with jQuery not active in IE6

2008-07-07 Thread Joe
Can you post a link? On Jul 6, 11:13 pm, "M. Miller" <[EMAIL PROTECTED]> wrote: > I am using jQuery to insert a series of links into a containing div. > Upon insertion, these links are active in Firefox and Safari, but are > not active (clickable) in IE6 (what a surprise.) While Internet > explor

  1   2   >