[jQuery] Re: Plug-in Mailing list?

2007-05-16 Thread John Resig
I haven't had the opportunity to set it up yet - that along with the dev and web lists. I'll be moving them to Google Groups shortly. --John On 5/16/07, Christopher Jordan [EMAIL PROTECTED] wrote: Is the plug-in mailing list still alive? I'm writing a plug-in and I've got some questions I'd

[jQuery] Re: Getting a checkbox value

2007-05-16 Thread Skilip
Thanks a lot for helping me out! I've figured out that $ (this).attr(checked); returns true or false.

[jQuery] Re: DOM friendly link creation

2007-05-16 Thread Gordon
Sorry, guess I should have been clearer from the start. I really do want a proper fix, something that's truely cross browser and doesn't rely on regex and hacks. But the thing is I'm developing this stuff commercially and I have deadlines to meet. In which case a sticky plaster solution to get

[jQuery] Re: kelvinluck - date-picker V2

2007-05-16 Thread Sam Collett
On May 15, 11:21 pm, Kelvin Luck [EMAIL PROTECTED] wrote: Hi, Sorry about the console.log statement - I should have removed that... I'm afraid I don't have IE7 here to test with... Can you confirm that you experience the problem on my demo page:

[jQuery] Re: Getting a checkbox value

2007-05-16 Thread Erik Beeson
I prefer to use the is() function for this type of thing because I think it reads really well: if($(this).is(':checked')) { ... } else { ... } It reads if this is checked..., which I like. --Erik On 5/16/07, Skilip [EMAIL PROTECTED] wrote: Thanks a lot for helping me out! I've figured

[jQuery] jquery in several iframes

2007-05-16 Thread mandschulz
Using several iframes on one page, I want to load jquery (1.1.2) (and extensions) in one special iframe (jqueryload) and then use it also in the other iframes, e.g. jqueryuse, where it is not explicitly loaded. I'm trying to reference it, via: $ = parent.frames[jqueryload].window.$;

[jQuery] Re: Getting a checkbox value

2007-05-16 Thread Erik Beeson
Way to just rain all over my jQuery parade man :). jQuery has made me a lousy javascript coder. It really feels like a new language with javascript syntax, not just a javascript library (Prototype, for example, just feels like a library). Sometimes I forget you don't always need a $ in front of

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Mandy Singh
This script does not work for me when I have a - in my rules $(document).ready(function() { $.validator.setDefaults({ debug: true }); var container = $('div.container'); // validate the form when it is submitted $(#form1).validate({ errorContainer: container, errorLabelContainer:

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Karl Rudd
Put quotes (double or single) around the name: intro-currentFirstName: Please enter a valid email Technically/ideally that's what all the keys should be list as they are strings. It's just an allowed shortcut to leave off the quotes. Karl Rudd On 5/16/07, Mandy Singh [EMAIL PROTECTED]

[jQuery] Re: kelvinluck - date-picker V2

2007-05-16 Thread Vincent Majer
In fact, the code on your demo page works with IE7.. seems it's my integration of your plugin which is not good.. maybee an interaction with other scripts running on that page, i'll search.. thanks anyway for that plugin.. very helpful Cordialement, Vincent Majer, Responsable technique,

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Mandy Singh
Ahhh...Thanks Karl! That worked.. :) Mandy On 5/16/07, Karl Rudd [EMAIL PROTECTED] wrote: Put quotes (double or single) around the name: intro-currentFirstName: Please enter a valid email Technically/ideally that's what all the keys should be list as they are strings. It's just an

[jQuery] Re: Form plugin: Multiple submit buttons

2007-05-16 Thread wyo
On May 15, 3:25 pm, Scott Sauyet [EMAIL PROTECTED] wrote: You could easily do this in JQuery, but then you have to realize that the site would not work with Javascript disabled. Since you are going to have to do server-side processing anyway, it doesn't seem that big a deal to do the

[jQuery] Text Replacement with Luteman´s Flash Plugin [Character-Problem]

2007-05-16 Thread Alexander Farkas
Hi, I use Luteman´s Flash Plugin for Text Replacement. But the script has some problems with several special characters, especally with (german) vowel mutations (ä,ö,ß etc.), even if i embed more charcters to the flash-file, it does not work. The character encoding of my website is

[jQuery] wrap span tags around the contents/text of a link

2007-05-16 Thread Marie du Toit
Hi, I am trying to wrap span/span elements around the text within a href=#/a elements, like this: *before:* ul id=mainlevel lia href=# class=mainlevelLink/a/li lia href=# class=mainlevelAnother Link/a/li lia href=# class=mainlevelSome Other Link/a/li /ul *after:* ul id=mainlevel

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Dan G. Switzer, II
Mandy, BTW, would anyone be interested in a short write up on this or the info on the plugin page is fine for everyone to understand? As I had some difficulties in catching up with it (coming from the prototype world), I thought I'll whip something up real fast. Thoughts? The more information

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Karl Swedberg
On May 16, 2007, at 8:11 AM, Dan G. Switzer, II wrote: Mandy, BTW, would anyone be interested in a short write up on this or the info on the plugin page is fine for everyone to understand? As I had some difficulties in catching up with it (coming from the prototype world), I thought I'll

[jQuery] Set the position of an element using the dimensions plugin

2007-05-16 Thread Skilip
Hi, With the plugin 'dimensions' I figured out how to get the position of an element. But what do I have to do to set it?

[jQuery] Re: Set the position of an element using the dimensions plugin

2007-05-16 Thread Brandon Aaron
The offset method returns an object with a top and left property. $('#myDiv').offset() = { top: 100, left: 100 } Since the .css() method can take an object you can just pass the result of .offset() directly to .css(). var offset = $('#myDiv').offset(); $('#myOtherDiv').css( offset ); You

[jQuery] newbie onmouseover onmouseout

2007-05-16 Thread SamCKayak
Just getting started... I have several unordered lists on a page. I want to add a class 'hilite' to an ordered list onmouseover and remove the class onmouseout. So far, so good. My problem is that while the mouse is inside the ordered list, an onmouseout event fires when the mouse moves over

[jQuery] Re: Set the position of an element using the dimensions plugin

2007-05-16 Thread Skilip
Far out! jQuery rules! Thanks a lot!

[jQuery] Using the history plugin for non-Ajax purposes

2007-05-16 Thread Sam Collett
I am wanting to use the history plugin for a situation where Ajax is not used. Like how it works for the tabs plugin. Here is what I have so far: http://www.texotela.co.uk/sandbox/historytest/ The example on the test page (http://stilbuero.de/jquery/history/ index.html) is only for remote pages,

[jQuery] Re: jquery.innerfade.js Random Problem

2007-05-16 Thread Aaron
Thanks for the reply!!! So would i add this to the 2 sections that have the random code or would i replace the randome code there with this code? Thanks again and cant wait to try it out! :) On May 15, 2:15 pm, Scott Sauyet [EMAIL PROTECTED] wrote: I think this would do it. The original code

[jQuery] Re: wrap span tags around the contents/text of a link

2007-05-16 Thread Sam Collett
You could try using wrapInner (not part of jQuery): jQuery.fn.wrapInner = function(html){ return this.each(function(){ jQuery(html).append(this.childNodes).appendTo(this); }); }; From http://groups.google.com/group/jquery-en/msg/476244ba168c57e0 On May 16, 12:41 pm, Marie du Toit

[jQuery] DOM issues with an AJAX loaded form

2007-05-16 Thread Michael Sharman
Hi guys, I have a page which contains javascript validation for an existing form. There is also a link where another form can be loaded onto the page via ajax, this step is working fine. My problem is that the validation/submission code in the page header isn't picking up my *new* form (from

[jQuery] Re: DOM issues with an AJAX loaded form

2007-05-16 Thread Jake McGraw
Mike: Do you have a live example? - jake On 5/16/07, Michael Sharman [EMAIL PROTECTED] wrote: Hi guys, I have a page which contains javascript validation for an existing form. There is also a link where another form can be loaded onto the page via ajax, this step is working fine. My

[jQuery] Re: wrap span tags around the contents/text of a link

2007-05-16 Thread RobG
On May 16, 9:41 pm, Marie du Toit [EMAIL PROTECTED] wrote: Hi, I am trying to wrap span/span elements around the text within a href=#/a elements, like this: *before:* ul id=mainlevel lia href=# class=mainlevelLink/a/li lia href=# class=mainlevelAnother Link/a/li lia

[jQuery] Re: DOM friendly link creation

2007-05-16 Thread Scott Sauyet
Gordon wrote: Now elements such as divs can contain more child nodes, or plain text, or a combination of both. What I need to know is how to get at the text of a div with a mixture of text nodes and other HTML elements. Doing $(element).text returns all the text in the child elements as well,

[jQuery] Re: Convert xml string to dom document

2007-05-16 Thread Sam Collett
You could try using the dataType option in $.ajax: $.ajax({ type: GET, url: mypage.php, data: id=1, dataType: xml success: function(msg){ // do something } }); The HTML should be valid XML as well (i.e. if you changed the extension to 'xml' you could open it in IE (or

[jQuery] Re: DOM issues with an AJAX loaded form

2007-05-16 Thread Michael Sharman
Hi Jake, There is a version here: http://www.21goals.com/demo/ Basically when you submit the 'Add Goal' page (when it's empty) you get jquery validation. If I then click the 'login' link from the header the login page is loaded via Ajax. It is this page which I want to validate exactly like

[jQuery] Re: jquery in several iframes

2007-05-16 Thread Bil Corry
mandschulz wrote on 5/16/2007 1:53 AM: But i get the error this.setArray is not a function. What would be the correct syntax for referencing jquery from another iframe? Maybe you can use $.frameReady() to add jQuery to the iFrame: http://ideamill.synaptrixgroup.com/?p=6 - Bil

[jQuery] Re: DOM issues with an AJAX loaded form

2007-05-16 Thread Karl Swedberg
Hi Michael, I think this tutorial will help you solve the problem: http://docs.jquery.com/Tutorials:AJAX_and_Events --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 16, 2007, at 9:49 AM, Michael Sharman wrote: Hi Jake, There is a version here:

[jQuery] Re: New jTip, Plugged In (alpha)

2007-05-16 Thread Scott Sauyet
Karl Swedberg wrote: I've been toying around with a new version of the jTip plugin, which was originally created by Cody Lindley. [ ... ] http://test.learningjquery.com/jtip/ Excellent! Two suggestions: First, on the documentation page, it would be nice if all the examples showed the HTML

[jQuery] Re: New jTip, Plugged In (alpha)

2007-05-16 Thread rolfsf
Great news, Karl!! I'll try plugging it in to a page where I was using the old jTip and having a number of problems with it and see how she does. -- View this message in context: http://www.nabble.com/New-jTip%2C-Plugged-In-%28alpha%29-tf3762049s15494.html#a10642855 Sent from the JQuery

[jQuery] Re: Plug-in Mailing list?

2007-05-16 Thread Christopher Jordan
Thanks John. I know you've been busy. Thanks for all the hard work! :o) Chris John Resig wrote: I haven't had the opportunity to set it up yet - that along with the dev and web lists. I'll be moving them to Google Groups shortly. --John On 5/16/07, Christopher Jordan [EMAIL PROTECTED]

[jQuery] Re: Strangeness with fade(), alpha-opacity PNGs and IE

2007-05-16 Thread Glen Lipka
Anyone have a solution for this yet? IE7 PNG-24 using FadeTo shows a black background where the transparency should be. Is there any way to change the overall opacity of a PNG through JavaScript? Glen On 1/30/07, spl1nter [EMAIL PROTECTED] wrote: Unfortunately it doesn't :( Brandon Aaron

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-16 Thread rolfsf
I just spotted jquery on John Edward's site, http://www.supportthetroopsendthewar.com/ I was curious about the script they're using for the rotating google map, but that appears not to be jquery http://www.supportthetroopsendthewar.com/script/MapRotate.js Rey Bango-2 wrote: Just a quick

[jQuery] chaining question

2007-05-16 Thread bleen
If the function below (which is called in a mouseover event) is run too many times, too quickly it doesn't work (i.e. the html in question is not changed) function loadedContentProcess(tab,result){ content[tab] = result; $

[jQuery] Re: chaining question

2007-05-16 Thread Andy Matthews
Do you have an online example of both methods? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bleen Sent: Wednesday, May 16, 2007 9:55 AM To: jQuery (English) Subject: [jQuery] chaining question If the function below (which is called in a

[jQuery] Re: DOM friendly link creation

2007-05-16 Thread RobG
On May 13, 10:28 am, Gordon [EMAIL PROTECTED] wrote: I had previously written a javascript that scans a div inside a HTML document for keywords and then wraps those words in hyperlinks, as part of adynamic help system. This worked by modifying the innerHTML of the div in question. This

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-16 Thread boermans
Another for the list - put together by my friends and colleagues at Fusion for another Adelaide crew: Krix speakers http://www.krix.com.au/ (Note: I believe there are some outstanding issues in Safari.)

[jQuery] Re: jquery tabs and IE 6

2007-05-16 Thread Klaus Hartl
jafar1978 wrote: Hi, I have been using JQuery and it is great. I have a problem which is related to viewing more than anything else. When I click on the tab the text of the div appears on the right of the last tab rather under the tabs. When I use FireFox the text is displayed correctly. I

[jQuery] Re: jquery tabs and IE 6

2007-05-16 Thread jafar1978
Hi Klaus, First of all, what you have created is the best I have ever seen. It is just so fantastic. This is what I did: I included the the jquery.tabs-ie.css file in the dir. then I uncommented the following: Recommended usage (Conditional Comments): !--[if lte IE 7] link rel=stylesheet

[jQuery] Re: jquery tabs and IE 6

2007-05-16 Thread jafar1978
Hi Klaus, You are the best. That did it...Thank you for the great app and your answer. Regards, --jh On May 16, 11:18 am, Klaus Hartl [EMAIL PROTECTED] wrote: jafar1978 wrote: Hi, I have been using JQuery and it is great. I have a problem which is related to viewing more than

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-16 Thread Christopher Jordan
What are they using for their navigation menus? Those are nice. Are they jQuery? I took a real brief glance at the source, but couldn't tell straight away what was being used. Cheers! Chris boermans wrote: Another for the list - put together by my friends and colleagues at Fusion for

[jQuery] Re: Concurrent Ajax request

2007-05-16 Thread Stefano Sala
Noone? :( here is a screenshot with the issue: http://ste.spa.it/upload/Immagine.png the second post wait until the first finished... Tnx in advance!! Stefano On 15 Mag, 16:04, Stefano Sala [EMAIL PROTECTED] wrote: Maybe it's a firefox limit?

[jQuery] Re: jquery tabs and IE 6

2007-05-16 Thread Klaus Hartl
jafar1978 wrote: Hi Klaus, First of all, what you have created is the best I have ever seen. It is just so fantastic. This is what I did: I included the the jquery.tabs-ie.css file in the dir. then I uncommented the following: Recommended usage (Conditional Comments): !--[if lte IE 7] link

[jQuery] Re: DOM issues with an AJAX loaded form

2007-05-16 Thread Michael Sharman
Hi Karl and Jake, Thank you for those super quick replies, sensational! Jake I did try yours after reading your reply, but it wasn't working. The find(form) was still 'finding' the original form...not the ajax loaded one. This was actually my main problem, because the new form (from the ajax

[jQuery] Re: DOM friendly link creation

2007-05-16 Thread Gordon
After a day's coding, I have come up with this. It's closer to what I need but the final link creation phase isn't there ye.t (also each link will have attributes that point to a different URL, different event handlers, etc, so don't think they're only going to have a jargonbuser class and

[jQuery] Re: jqModal question

2007-05-16 Thread Shelane Enos
Ok, so I explained what I'm trying to do below, in part. I also have this function: statusChange = function(scope){ $('.invited, .accepted, .declined', scope).css('cursor','pointer').click(function(){ var url = 'ajaxunited.lasso?task=eventmethod=invitationvolunteer='; url

[jQuery] Re: Convert xml string to dom document

2007-05-16 Thread Ⓙⓐⓚⓔ
if the files is xhtml (or xml of some type) and it's being served as text/html, the browser won't give you a dom. UNLESS you override the mime-type! beforeSend : function(req){req.overrideMimeType('text/xml')}, dataType: xml, inside the $,ajax call. On 5/16/07, tcollogne [EMAIL PROTECTED]

[jQuery] Re: Convert xml string to dom document

2007-05-16 Thread Ⓙⓐⓚⓔ
ps... this may not work in IE! On 5/16/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: if the files is xhtml (or xml of some type) and it's being served as text/html, the browser won't give you a dom. UNLESS you override the mime-type! beforeSend : function(req){req.overrideMimeType('text/xml')},

[jQuery] Re: Convert xml string to dom document

2007-05-16 Thread Mike Alsup
Here's a fn for converting strings to docs: function stringToDoc(s) { var doc; if (window.ActiveXObject) { doc = new ActiveXObject('Microsoft.XMLDOM'); doc.async = 'false'; doc.loadXML(s); } else doc = (new DOMParser()).parseFromString(s, 'text/xml');

[jQuery] Re: Small delay in animate function - how can I fix it?

2007-05-16 Thread Geoffrey Knutzen
Have you found any info about this? I am seeing this too _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Tuesday, May 15, 2007 6:38 AM To: jquery-en@googlegroups.com Subject: [jQuery] Small delay in animate function - how can I fix it?

[jQuery] Re: jqModal question

2007-05-16 Thread Benjamin Sterling
Shelane, Do you have a url I can take a look at? I have some thoughts, but I need to see it in action. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] ajax issue with ie6 ie7 ?

2007-05-16 Thread Jose
Hi, I have this ajax call: $.get(/cgi/check, function(data) { $(#check).append(data); }); as part of my local home page. The first time this loads on IE6 , IE7 it prompts an Operation cancelled alert, but later viewing/launching of the home page do not cause this behavior. This works ok

[jQuery] Re: New jTip, Plugged In - now clueTip

2007-05-16 Thread Karl Swedberg
On May 16, 2007, at 10:05 AM, Scott Sauyet wrote: Two suggestions: First, on the documentation page, it would be nice if all the examples showed the HTML markup as well as the JS, the way you do with the non-link H4 example. Second, it's probably only really useful with non-link elements,

[jQuery] Descendant axis with node context

2007-05-16 Thread billhowe
The following script throws the error this.getElementsByTagName is not a function using the current jquery release. $(//tr).each(function(i) { f = $(//td, this).text(); alert(f); }); The problem appears to be in lines 869-880, where jQuery assumes that an XPath

[jQuery] Re: Descendant axis with node context

2007-05-16 Thread John Resig
This problem is resolved in jQuery SVN. It'll be included in jQuery 1.1.3 (which should be coming out this weekend). --John On 5/16/07, billhowe [EMAIL PROTECTED] wrote: The following script throws the error this.getElementsByTagName is not a function using the current jquery release.

[jQuery] Next/Previous Links

2007-05-16 Thread Bradley32
Hey all! Here is the URL for the issue I am referring to: http://manhattanwest.com/media-center/video-images.php Problem: I need to make the Previous and Next links function to rotate through the 4 columns of links below the image area and unfortunately I am not the best with Javascript so

[jQuery] Re: kelvinluck - date-picker V2

2007-05-16 Thread Kelvin Luck
Sam Collett wrote: On May 15, 11:21 pm, Kelvin Luck [EMAIL PROTECTED] wrote: Hi, Sorry about the console.log statement - I should have removed that... I'm afraid I don't have IE7 here to test with... Can you confirm that you experience the problem on my demo page:

[jQuery] Re: kelvinluck - date-picker V2

2007-05-16 Thread Kelvin Luck
Vincent Majer wrote: In fact, the code on your demo page works with IE7.. seems it's my integration of your plugin which is not good.. maybee an interaction with other scripts running on that page, i'll search.. thanks anyway for that plugin.. very helpful Cool. Good lick with the

[jQuery] Re: Linking each list item to respective div container.

2007-05-16 Thread [EMAIL PROTECTED] d
*Not sure why my prev message isn't showing up, so posting again. Thanks Karl, I tried using the functions you suggested, but now I think using id's is the best approach... Earlier I wasn't keen on using them because I want to dynamically generate/delete list items... Any way.. All I have is a

[jQuery] Re: kelvinluck - date-picker V2

2007-05-16 Thread tlphipps
Kelvin, Did you ever have any luck at getting the date selector to detect the edge of the browser window and re-position itself? On May 16, 1:59 pm, Kelvin Luck [EMAIL PROTECTED] wrote: Vincent Majer wrote: In fact, the code on your demo page works with IE7.. seems it's my integration of

[jQuery] Re: Linking each list item to respective div container.

2007-05-16 Thread Emil Ivanov
Hi, Now, I feel this is the right way to do this (and the most simple, also): The menu caption (e.g. Add an Item (»)) and the menu itself should be in the same container (ul, div, whatever). Then you bind the hover event (http://docs.jquery.com/Events#hover.28_over.2C_out_.29)

[jQuery] Re: kelvinluck - date-picker V2

2007-05-16 Thread tlphipps
Thanks! I think that will work for our needs. On May 16, 3:40 pm, Kelvin Luck [EMAIL PROTECTED] wrote: tlphipps wrote: Kelvin, Did you ever have any luck at getting the date selector to detect the edge of the browser window and re-position itself? Hi, I decided that it would

[jQuery] Jquery mailinglist suggestion

2007-05-16 Thread Alexandre Plennevaux
hello to the jQuery team, i was wondering, does google group allows to have the post thread weblink automatically appended to each message? This would be useful to me because i don't use gmail but outlook to follow the discussion, and sometimes i'd wish to just have a link to click to get

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
firebug says it works! after the click the dom was changed to : htmlheadtitleAjax with jQuery Example/title script type=text/javaScript src=/js/jquery.js/script script type=text/javaScript $(document).ready(function(){ $(#ajax).click(function(){ $(#quote p).load(test2.html); }); });

[jQuery] Adding a Callback function.

2007-05-16 Thread Christopher Jordan
Hi folks, I've got a need for one of my functions to accept a callback function as a parameter (if that's even the right way to do it). Anyway, I'm having trouble and I'm hoping that someone here could help me. This particular situation deals with a parent page, and a child page which is

[jQuery] Re: Next/Previous Links

2007-05-16 Thread Sean Catchpole
I was storing the onclick text, and eval() evaluates a string of javascript. This means that the functions that would be executed on click would instead be executed right then (at the eval). I hope that helps. ~Sean

[jQuery] Re: what is the license of this beautiful plugin innerfade

2007-05-16 Thread joomlafreak
Thanks Sean! On May 16, 7:02 pm, Sean Catchpole [EMAIL PROTECTED] wrote: If there is no license, then it's probably safe to assume opensource, like MIT style. ~Sean

[jQuery] Re: DOM friendly link creation

2007-05-16 Thread RobG
On May 17, 1:49 am, Gordon [EMAIL PROTECTED] wrote: After a day's coding, I have come up with this. It's closer to what I need but the final link creation phase isn't there ye.t (also each link will have attributes that point to a different URL, different event handlers, etc, so don't think

[jQuery] Re: Jquery mailinglist suggestion

2007-05-16 Thread Sam Sherlock
would you mean having this link automatically attached to this mail as http://groups.google.com/group/jquery-en/browse_thread/thread/2050e744b4ee7fbf you could always get a gmail account - and use that for your mailing lists On 16/05/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hello

[jQuery] Disabling Tooltips + Tooltip Text

2007-05-16 Thread DaveG
1] I'd like to make a request to have a flag to turn off all tool-tips (http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/). The easiest way to do this might be to retain existing object events, and simply put a flag in the code to not process tip events. Alternately is there a

[jQuery] Re: Linking each list item to respective div container.

2007-05-16 Thread Karl Rudd
I don't have a lot of time at the moment. For the delayed hover effect have a look at this plugin. http://cherne.net/brian/resources/jquery.hoverIntent.html Emil has given you the link to the AJAX documentation. Karl Rudd On 5/17/07, [EMAIL PROTECTED] d [EMAIL PROTECTED] wrote: *Not

[jQuery] OT: My Collection of Ajax Feeds

2007-05-16 Thread Rey Bango
Here's my list of feeds that I review daily. Some offer more than just Ajax-related content but I read these mainly for the Ajax material. http://jquery.com/blog/feed/ http://ajaxian.com/index.xml http://www.dzone.com/feed/frontpage/ajax/rss.xml http://blogs.pathf.com/agileajax/rss.xml

[jQuery] Re: NEWS: Wordpress 2.2 Switches to jQuery

2007-05-16 Thread joomlafreak
Jquery is making its presence felt everywhere On May 16, 10:05 pm, Rey Bango [EMAIL PROTECTED] wrote: You can read the details here: http://ajax.phpmagazine.net/2007/05/wordpress_22_released_and_swit.html Rey... -- BrightLight Development, LLC. 954-775- (o) 954-600-2726 (c)

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
if you have a link on the net, maybe some IE user can hit it... the code looked good to me, and runs for me on Opera, Firefox Safari. On 5/16/07, Sean [EMAIL PROTECTED] wrote: I just tried it on a different computer, using the exact same code except I just downloaded the latest uncompressed

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Sean
I don't have it up on the net, but anyone with windows can set up the files pretty quick. I will see what I can do tomorrow about getting it online to help out. Thanks for the suggestions though. On May 16, 9:48 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: if you have a link on the net, maybe some IE

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
My link is live! ANY IE TAKERS??? http://cigar.dynalias.org/test1.html On 5/16/07, Sean [EMAIL PROTECTED] wrote: I don't have it up on the net, but anyone with windows can set up the files pretty quick. I will see what I can do tomorrow about getting it online to help out. Thanks for the

[jQuery] Re: How to use easing plugin equation in innerfade plugin

2007-05-16 Thread joomlafreak
got it! On May 16, 10:37 pm, joomlafreak [EMAIL PROTECTED] wrote: I have been trying hard for some time now to use the equations of a href=http://gsgd.co.uk/sandbox/jquery.easing.php;easing plugin/a in innerfade plugin. I included the easing plugin JS in page. This is the innerfade

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Karl Swedberg
Here are my results: Firefox 2 Mac: worked. IE 6 Win: did not work, but no JavaScript error. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 16, 2007, at 11:02 PM, Ⓙⓐⓚⓔ wrote: http://cigar.dynalias.org/test1.html

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Bil Corry
Ⓙⓐⓚⓔ wrote on 5/16/2007 8:02 PM: My link is live! ANY IE TAKERS??? http://cigar.dynalias.org/test1.html I get a runtime error within jquery.js: Line: 0 Error: Unknown runtime error It's highlighting the error as c[e[d]]=a within this bit:

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Chad Burrus
I can help out a little there. I started stepping through the error with a debugger. Since it's the packed version, I don't know where exactly it's breaking, but I can tell you that your ajax request is working properly. Here's what little I can tell you. The execution breaks in an anonymous

[jQuery] question about the jQuery which is the ext adapter

2007-05-16 Thread Shuai Yang
i'm familiar with jQuery ,new to ext. I wanna know when I use jQuery with ext. Can i coding with the jQuery style? This is very important to me.thank you!

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Bil Corry
Ⓙⓐⓚⓔ wrote on 5/16/2007 9:05 PM: Bill, do a refresh for the guy, it's now on the full jQuery! Ok, now I get the error in the jQuery.js: Line: 1571 Error: Unknown runtime error The error highlights elem[fix[name]] = value within the attr function: // Certain

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
agh! what does that mean is it the p inside the p IE hates me as much as I hate IE!!! On 5/16/07, Bil Corry [EMAIL PROTECTED] wrote: Ⓙⓐⓚⓔ wrote on 5/16/2007 9:05 PM: Bill, do a refresh for the guy, it's now on the full jQuery! Ok, now I get the error in the jQuery.js:

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
So I booted up my windows machine, and ran a modified version, http://cigar.dynalias.org/test3.html http://cigar.dynalias.org/test1.html basically the same without the pp issue it works. Who knew IE would care about such things So, the moral of the story is Don't pp on IE, or it will

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Matt Vanderpol
A quick search uncovered some discussion around this problem here: http://piecesofrakesh.blogspot.com/2007/02/ies-unknown-runtime-error- when-using.html -Matt On May 16, 2007, at 9:55 PM, Ⓙⓐⓚⓔ wrote: So I booted up my windows machine, and ran a modified version,

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Bil Corry
Ⓙⓐⓚⓔ wrote on 5/16/2007 9:41 PM: agh! what does that mean is it the p inside the p I'm not sure, but since it's the attr function, and there's a few bugs reported for the attr function with IE (including one of mine), I can only surmise it is probably related. - Bil

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Bil Corry
Matt Vanderpol wrote on 5/16/2007 10:00 PM: A quick search uncovered some discussion around this problem here: http://piecesofrakesh.blogspot.com/2007/02/ies-unknown-runtime-error-when-using.html Ah, Internet Explorer, defender of web standards! - Bil

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Ⓙⓐⓚⓔ
And to all , a good night!!! On 5/16/07, Bil Corry [EMAIL PROTECTED] wrote: Matt Vanderpol wrote on 5/16/2007 10:00 PM: A quick search uncovered some discussion around this problem here: http://piecesofrakesh.blogspot.com/2007/02/ies-unknown-runtime-error-when-using.html Ah, Internet

[jQuery] Re: Simple .load does not work in IE7

2007-05-16 Thread Bil Corry
Matt Vanderpol wrote on 5/16/2007 10:00 PM: A quick search uncovered some discussion around this problem here: http://piecesofrakesh.blogspot.com/2007/02/ies-unknown-runtime-error-when-using.html For kicks, I tried it in both Standards and Quirks mode, same error with both. - Bil