[jQuery] Re: prevent checkbox to check when click

2007-10-19 Thread Erik Beeson
.click(...) and .bind('click', ...) should do the same thing. What version of jQuery are you using? This also works for me, again on FF2/Mac: $(':checkbox').bind('click', function(e) { this.blur(); e.preventDefault(); }); --Erik On 10/18/07, james_027 [EMAIL PROTECTED] wrote: is that

[jQuery] disable effect in images

2007-10-19 Thread Alessandro Feijó
Its possible to turn any image to gray simulating a disabled effect?? I'm trying to find it out but don't know what are the keywords to search for Thanks! -- huge hug Feijó

[jQuery] Re: AjaxCFC + jQuery tutorial: part 2

2007-10-19 Thread Andy Matthews
I'll forgive your lateness if you post the link. :) andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: Thursday, October 18, 2007 11:35 PM To: jQuery Group Subject: [jQuery] AjaxCFC + jQuery tutorial: part 2 I realize that this is

[jQuery] Re: Unsubscribe

2007-10-19 Thread Rey Bango
Hi Anthony, Go to your google groups account and you should be able to leave the group. Sorry to see you go. Rey Anthony Coy wrote: Hello, How can I unsubscribe from the JQuery mailing list? Thanks! **Anthony Coy, President/Owner*** ***High Velocity Media - Accelerated Internet

[jQuery] How would I modify this to...

2007-10-19 Thread Rick Faircloth
.close an open row, when another row is clicked to open? It's working great to open rows when they are clicked, but now I'd like to close the open row upon opening another. Rick $(document).ready(function() { $('div.calendar').find('div.details').hide().end().find('table.clickme').cli

[jQuery] AJAX and dynamically created dropdowns

2007-10-19 Thread Yaz
Hello everyone, I have a script that basically just reads some data from an xml file, then the data gets loaded into a select dropdown, by dynamically creating option tags. Here's the working sample: http://yazmedia.com/sandbox/ View source for the code. XML:

[jQuery] Re: Getting a div with scroll bar to stay scrolled down

2007-10-19 Thread Dave Methvin
Nope, I was utilizing the scrollTop() method from dimensions. Okay, the next time I think you made a mistake I'll rethink it a bit. :)

[jQuery] Re: AJAX problem

2007-10-19 Thread Yaz
I'm not completely sure about this, but I think it doesn't like the http://129.219.208.31/email/email.php; bit. I had to change my file and put it in the same directory as mine. Hope it helps. Maybe someone else can give you a better explanation, and/or prove me right/ wrong. :o) -yaz On Oct

[jQuery] Re: jQuery Logging (to firebug)

2007-10-19 Thread Glen Lipka
I whipped up a demo using it. http://www.commadot.com/jquery/consoleLog.php I probably (definitely) overused it. :) Glen On 10/19/07, Nikola Ivanov [EMAIL PROTECTED] wrote: How about integrating it in the core? After if ( console ) of course

[jQuery] Re: jQpanels 1.0.1

2007-10-19 Thread [EMAIL PROTECTED]
On 19 Ott, 16:34, Rey Bango [EMAIL PROTECTED] wrote: Hi Andrea. Great work on the plugin. This is such a common bit of functionality and the plugin is very useful. Here's some feedback. 1) In IE, your demo page doesn't seem to render correctly. The header that says, Andrea's Blog Sliding

[jQuery] Re: How to position this div?

2007-10-19 Thread Wizzud
jQuery('#idOfImageToBeClicked').bind('click', function() { jQuery('#newDiv').show(); }); On Oct 19, 10:03 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I have a 16x16 image that will be dragged around the screen as part of a larger DIV. When someone clicks on the image, I'd like

[jQuery] The Easy Button

2007-10-19 Thread Glen Lipka
The post is a little demonstration of xPath selections in jQuery. Check the image at the bottom of the post. http://www.bennadel.com/index.cfm?dax=blog:1003.view I asked Ben to upgrade to 1.2. That @ symbol s SOoo last version! Glen

[jQuery] How to position this div?

2007-10-19 Thread [EMAIL PROTECTED]
Hi, I have a 16x16 image that will be dragged around the screen as part of a larger DIV. When someone clicks on the image, I'd like another DIV (id=newDiv) to appear directly beneath the image. The DIV with id=newDiv is initially hidden. How do I do this with JQuery? Thanks, - Dave

[jQuery] Re: Problem with ajax in jquery.(Unable to figure this out)

2007-10-19 Thread VJ
Thanks a ton. It was a cross domain issue.. regards

[jQuery] $.ready and https

2007-10-19 Thread nick
I get mixed mode popups over https when using the $.ready() function. The line of code that's causing the problem is: if(script)script.onreadystatechange=function(){if(this.readyState! =complete)return;jQuery.ready(); I think there was a few threads discussing the same problem but nothing came

[jQuery] Re: Getting window portal size in 1.2.1

2007-10-19 Thread Karl Swedberg
Hi Jeffrey, This was a known issue. Something to do with the migration of that piece of Dimensions into core. It's fixed in SVN now. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 19, 2007, at 3:08 PM, Jeffrey Kretz wrote: Using jQuery 1.2.1, I

[jQuery] Re: problem with recursive $.get

2007-10-19 Thread Jack Killpatrick
I found a workaround, but maybe there's an issue with $.get in jquery 1.1.2 that messes with using it recursively, or some option I could set? I replaced the $.get with this and it worked like a charm: $.ajax({ type: 'GET', url: filePath,

[jQuery] iTunes album flipping simulation

2007-10-19 Thread Steve Finkelstein
Greetings all! This might be more UI related, and if it is, apologies for spamming this list. I'm surfing iTunes album art flipping, the same thing that's on the iPhone, and I believe amazon has something very similar (but theirs is done in flash. :-( ) I was curious if any of the brilliant

[jQuery] Re: looking for advice on the best way to do this... autocomplete then fetch more data

2007-10-19 Thread Dan G. Switzer, II
Jim, I've got an autocomplete field (based on Jörn Zaefferer's plugin) which works great. I'm using it to grab a user from a database. What I need to do now is after the user selects their choice from the dropdown - I need to return to the db and grab more info based on their choice (address,

[jQuery] Re: Changes to $(selector).append

2007-10-19 Thread 胡争辉
Sorry to reply so late. Have you solved this problem? 2007/9/18, Bob Buffone [EMAIL PROTECTED]: I totally gave you the wrong URLs No issue with IE http://incubator.apache.org/xap/docs/xmodify/content/jquery-index.html issue with IE

[jQuery] problem with recursive $.get

2007-10-19 Thread Jack Killpatrick
Losing some hair over this one maybe someone can help? I'm using jquery 1.1.2 (and must use that rev). I have a list of html files (snippets of html) that I want to fetch sequentially via a $.get and store in a hash. I'm doing something like this, using while and shift() to loop through

[jQuery] Masked Input Plugin Direction

2007-10-19 Thread Josh Bush
A lot of people seem to need dynamic width number masking. Where currency symbols, decimal separators, and thousands separators are applied automatically. I'm thinking about taking this on, but I have a few questions. 1.Should is be a part of the masked input plugin or a separate new plugin?

[jQuery] Re: How would I modify this to...

2007-10-19 Thread Rick Faircloth
You're actually correct, Wizzud... In experimenting with opening and closing a details section I started with trying to manipulate table rows, but the animation would stutter and jerk. I finally got totally smooth animation by using separate tables for each row. Looks exactly the same as a

[jQuery] Re: How would I modify this to...

2007-10-19 Thread Wizzud
The code you have seems to imply that you're opening/closing tables, not rows. Some html would help, otherwise one has to guess as to the structure. Possibility ... $(this).siblings(':visible:not(.clickable)').slideUp(); On Oct 19, 7:16 pm, Rick Faircloth [EMAIL PROTECTED] wrote: .close an

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-19 Thread Chris Jordan
Yaz, View Source will never show you dynamically generated content. Download the FireFox extension: View Source Charthttps://addons.mozilla.org/en-US/firefox/addon/655. It's quite handy, and shows you dynamically generated content. It's often helped me to figure out problems where I really need

[jQuery] Re: jQuery Datagrid Plugin v.7

2007-10-19 Thread spills
Awesome job! I was hoping to work on getting a JSON dataset to work with this. Any chance you have looked into this yet? Robb On Oct 3, 5:15 pm, reconstrukt [EMAIL PROTECTED] wrote: Hey all, I just released Just finished the initial release of my datagrid plugin. I named her Ingrid. :)

[jQuery] Re: disable effect in images

2007-10-19 Thread Wizzud
The simplest way is to reduce it's opacity ... jQuery('img').css({opacity:0.5}); On Oct 19, 10:31 am, Alessandro Feijó [EMAIL PROTECTED] wrote: Its possible to turn any image to gray simulating a disabled effect?? I'm trying to find it out but don't know what are the keywords to search for

[jQuery] Re: jQuery Logging (to firebug)

2007-10-19 Thread Nikola Ivanov
How about integrating it in the core? After if ( console ) of course

[jQuery] Ajax/load doesn't load Google Ads?

2007-10-19 Thread Trans
Hi-- I am using AJAX to load a sidebar into my page: $('#side').load('side.html') It loads fine except for the the Google Ad code that is in side.html: div style=margin-left: 3px; script type=text/javascript!-- google_ad_client = pub-; google_ad_width = 160;

[jQuery] Re: slideDown problem in IE6 and IE7

2007-10-19 Thread Wizzud
And the code/html would be ? Or a test page maybe? On Oct 19, 10:51 am, chrisandy [EMAIL PROTECTED] wrote: Very new to this but really puzzled by an error in IE6 and IE7. I'm using the fx slideDown effect and it is giving me an 'Invalid Argument' error - Fine in FF and Safari. I've

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-19 Thread Yaz
With the select plugin I get the same results. Added the form tag. Still no results. Btw, I noticed that even though in Firefox the dropdown does get populated, at view source there is no list of schools Thanks for the suggestion guys. -yaz On Oct 19, 2:31 pm, Jack Killpatrick [EMAIL

[jQuery] Re: Ajax/load doesn't load Google Ads?

2007-10-19 Thread Marshall Salinger
I believe Google does that to prevent click fraud. Trans wrote: Hi-- I am using AJAX to load a sidebar into my page: $('#side').load('side.html') It loads fine except for the the Google Ad code that is in side.html: div style=margin-left: 3px; script type=text/javascript!--

[jQuery] [NEWS] jQuery Logging (to firebug)

2007-10-19 Thread Glen Lipka
It's very simple, but really powerful. http://ajaxian.com/archives/jquery-logging Glen

[jQuery] Re: Does anyone know about Easy Dom?

2007-10-19 Thread polyrhythmic
Charliend, That blog entry IS the original website, and it has a download link. (Look about a page and a half down, where it says Here is the source code, or you can download it:) The source is also plainly written in the blog entry. I have used EasyDOM as part of the basis for my SuperFlyDOM

[jQuery] Re: disable column resizer

2007-10-19 Thread rolfsf
I'm not sure what plugin you're using, but you say you're using tabs -- if so, then perhaps each tab is not really a 'page' but a container on the page (3 tabs = 3 containers on a single page). In that case, you would need to restrict your ':last' to the last column within each container, rather

[jQuery] Re: Add Table row

2007-10-19 Thread camilo_u
Hi! I just finished the script on my application, almost everything seems to work fine so far (Firefox, IE6/7), but i have a little problem, this line of code does not seems to add the attribute on IE7: $( #delete_link+ intCurrentRowId , clonedRow ).attr( onclick, someJSfunction( this ) ); $(

[jQuery] Re: Problem with ajax in jquery.(Unable to figure this out)

2007-10-19 Thread Benjamin Sterling
Also, Do this instead: a href=#Click here to send email/a $(a).click(function() { alert(about to send); $.ajax({ type: GET,

[jQuery] Re: Problem with ajax in jquery.(Unable to figure this out)

2007-10-19 Thread VJ
I did put it , but still it isnt working... the url when pasted on the address bar in the browser(with a valid email) works fine.. but it's just not working here. On Oct 19, 9:10 am, John Resig [EMAIL PROTECTED] wrote: You forgot to put a $(document).ready(function(){ }); Around your

[jQuery] Re: Problem with ajax in jquery.(Unable to figure this out)

2007-10-19 Thread VJ
thanks, but it still does not seem to work.. if you copy paste the url on the browser, it seems to work... but when passed thru the ajax method. it fails.. On Oct 19, 9:10 am, John Resig [EMAIL PROTECTED] wrote: You forgot to put a $(document).ready(function(){ }); Around your code.

[jQuery] jqModal validation (repost)

2007-10-19 Thread bostone
I'm using jqModal to display a form that gets populated through AJAX. I need to add validation so when Submit is clicked I need to make AJAX call to the server and then if validation error is detected instead of dismissing the dialog (which I do now) I need to display warning and leave jqModal

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-19 Thread Jack Killpatrick
FWIW, I've never had any problems with id and name being the same on controls in IE. I don't see a form tag on the page, maybe that's the issue? You might also want to try this: http://www.texotela.co.uk/code/jquery/select/ - Jack Chris Jordan wrote: Could it be because you're name and id

[jQuery] table pagination plugin

2007-10-19 Thread Bhaarat Sharma
Hi is there a good table pagination plugin out there that explains how to use it as well? I came across this example but it doesnt explain how to use it :( http://tablesorter.com/docs/example-pager.html it just shows this snippet $(document).ready(function() { $(table)

[jQuery] Re: Getting a div with scroll bar to stay scrolled down

2007-10-19 Thread Jonathan Sharp
On 10/19/07, Dave Methvin [EMAIL PROTECTED] wrote: $('#divname').scrollTop( $('#divname')[0].scrollHeight ); I think you meant: $('#divname')[0].scrollTop( $('#divname')[0].scrollHeight ); Nope, I was utilizing the scrollTop() method from dimensions. Here's another way that avoids

[jQuery] Re: jqGrid new version

2007-10-19 Thread Tony
ads_german, In the demo page (Examples) I have write a step by step example and a easy way of creating json data using PHP. Look on every example - there is a detailed code. Regards Tony On 18 Окт, 16:17, ads_german [EMAIL PROTECTED] wrote: ads_german wrote: I am using php to return a json

[jQuery] Online jQuery Live Syntax Highlighting Editor????

2007-10-19 Thread Koka
Does that already exist, a Online jQuery Live Syntax Highlighting Editor?

[jQuery] Can Not change characteristic color beside a:hover , a:visited i.t.d

2007-10-19 Thread serverofworld
Can Not change characteristic color beside a:hover , a:visited i.t.d

[jQuery] Does anyone know about Easy Dom?

2007-10-19 Thread charliend
Hello all, I'm currently working on a project which used previously EasyDom based on Jquery. I would like to find some information about it. But, except on this website: http://mg.to/2006/02/27/easy-dom-creation-for-jquery-and-prototype , I can't find anything. I can't even find the original

[jQuery] Re: Getting a div with scroll bar to stay scrolled down

2007-10-19 Thread Dave Methvin
$('#divname').scrollTop( $('#divname')[0].scrollHeight ); I think you meant: $('#divname')[0].scrollTop( $('#divname')[0].scrollHeight ); Here's another way that avoids redundant selector expressions: $('#divname').each(function(){this.scrollTop = this.scrollHeight});

[jQuery] Re: Calling hide/show methods from existing JavaScript function

2007-10-19 Thread Glen Lipka
Are you using the onclick event inside your html? input type=radio onclick=... if so, you might want to consider using jQuery to bind the onclick events. Check out www.jquery.com/api or http://www.visualjquery.com and find click. It will make your html much cleaner and your code easier to

[jQuery] Re: iframe bug document.defaultView.getComputedStyle(elem,null)

2007-10-19 Thread codylindley
This is just a fix to stop the error, but it does not change the fact that FF has issue with iframes that are injected into the dom with a style of display:none. While the error goes away, the code inside the iframe still fails. For example, loading the ui jquery tabs into an iframe that is

[jQuery] Re: Superfish: Menu keeps jumping around

2007-10-19 Thread [EMAIL PROTECTED]
Thanks for your reply but unfortunately on PC IE the menu still jumps around http://elearningrd.info/portal/test3.php even though I specified a width for the nav element. Any other ideas? Thanks, - Dave On Oct 18, 11:14 pm, Joel Birch [EMAIL PROTECTED] wrote: Hi Dave, Simply apply

[jQuery] Re: Calling hide/show methods from existing JavaScript function

2007-10-19 Thread Gurevich, Gerry (NIH/NIEHS) [C]
Thanks to Jim Priest, I think I already have an answer. Looks like the code should be. function checkReviewers(){ if (somecondition) { alert('reviewers off...do some stuff here'); $('.classname').hide(); } I would

[jQuery] Calling hide/show methods from existing JavaScript function

2007-10-19 Thread Gurevich, Gerry (NIH/NIEHS) [C]
I have a javascript function that needs to do a variety of things and then it also needs to hide a section. Here is my function. It is called from a radio button on click event. Can anyone help me correct this syntax so I hide the code inside div class=classname Hide me /div

[jQuery] Re: Unsubscribe

2007-10-19 Thread Priest, James (NIH/NIEHS) [C]
How can I unsubscribe from the JQuery mailing list? Thanks! You can also send an email from the acct you signed up with to: [EMAIL PROTECTED] Jim

[jQuery] Re: Unsubscribe

2007-10-19 Thread Andy Matthews
Your best bet is to visit Google Groups and do it that way: http://groups.google.com _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Anthony Coy Sent: Friday, October 19, 2007 9:00 AM To: jquery-en@googlegroups.com Subject: [jQuery] Unsubscribe Hello,

[jQuery] Re: Case-insensitive version of :contains(text) ?

2007-10-19 Thread Karl Swedberg
On Oct 19, 2007, at 2:09 AM, Erik Beeson wrote: You could add your own expression for it (tested on FF2/Mac): jQuery.extend(jQuery.expr[':'], { containsIgnoreCase: (a.textContent||a.innerText||jQuery(a).text ()||'').toLowerCase().indexOf((m[3]||'').toLowerCase())=0 }); Usage:

[jQuery] looking for advice on the best way to do this... autocomplete then fetch more data

2007-10-19 Thread Priest, James (NIH/NIEHS) [C]
I've got an autocomplete field (based on Jörn Zaefferer's plugin) which works great. I'm using it to grab a user from a database. What I need to do now is after the user selects their choice from the dropdown - I need to return to the db and grab more info based on their choice (address,

[jQuery] Unsubscribe

2007-10-19 Thread Anthony Coy
Hello, How can I unsubscribe from the JQuery mailing list? Thanks! Anthony Coy, President/Owner High Velocity Media - Accelerated Internet Solutions http://www.hvmdesign.com/ http://www.hvmdesign.com | mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]

[jQuery] Re: AjaxCFC + jQuery tutorial: part 2

2007-10-19 Thread Priest, James (NIH/NIEHS) [C]
http://cjordan.us/index.cfm/2007/10/18/jQuery--AjaxCFC-Tutorial-Part-2-H andling-Complex-Data Jim -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, October 19, 2007 9:16 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: AjaxCFC + jQuery tutorial:

[jQuery] Re: binding dynamically inserted DOM elements

2007-10-19 Thread Andy Matthews
Yep... There's another plugin called LiveQuery. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Flesler Sent: Friday, October 19, 2007 7:20 AM To: jQuery (English) Subject: [jQuery] Re: binding dynamically inserted DOM elements are there

[jQuery] jQuery Interface Sortable: loosing the style of dragged item

2007-10-19 Thread NiKo
Hi, I'm quite a newbie and I'm using jQuery 1.12 and interface 1.2 (interface.eyecon.ro) and I have a strange behavior on my sortable elements : the divs I drag have no style applied to, the style comes back when I stop dragging them. Here's my code : $('#ph_columns td.sortable').Sortable(

[jQuery] Re: jQpanels 1.0.1

2007-10-19 Thread [EMAIL PROTECTED]
Thnaks for the suggestion. I will update the script and api accordingly. Andrea On 19 Ott, 13:07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: that's getting better and better, congratz! i would suggest simply renaming that {status:'open'} option to open and making it a boolean value

[jQuery] Re: Drupal Form + jQuery Forms Plugin + File Uploads (Drupallers jQuery gurus please)

2007-10-19 Thread micha149
Hi! I dont submit the from via ajax, because i dont works :-). The Page reloads not until the file has been uploaded completely. So I can check the progress in a loop. Is the file too smal, it uploads so fast, that you cant see it. Is the file too big, the server doesn't accept it. Check your

[jQuery] Re: How to suck web content from an iframe to a div

2007-10-19 Thread Mike Alsup
Julian, Getting the contents from an IFrame served from the same domain works fine. The security only kicks in for x-domain content. Mike On 10/15/07, juliandormon [EMAIL PROTECTED] wrote: Thanks Mike, That makes sense. And what if it was the same domain? This is also the case with our

[jQuery] jQpanels 1.0.1

2007-10-19 Thread [EMAIL PROTECTED]
Hi, I have now uploaded the version 1.0.1 of my jQ plugin for sliding panels. Some new feature added and a decent API has been written. can find anything here: http://www.andreacfm.com/examples/jQpanels/ Please give me your feedback and suggestions Andrea

[jQuery] Re: Drupal Form + jQuery Forms Plugin + File Uploads (Drupallers jQuery gurus please)

2007-10-19 Thread Giovanni Battista Lenoci
micha149 ha scritto: I think it must work. Bu i'n not an yui man. I make it with jQuery: $(document).ready( function() { // define the check progress function var getProgress = function() { $.ajax({ type: GET, url: document.URL +

[jQuery] Re: problem with recursive $.get

2007-10-19 Thread Michael Geary
That's good that you found a workaround. I can't help but think there is more to the story than we are seeing here. Maybe another library in your page extending Object.prototype, or some weird thing like that? What does this display if you execute it in your page: for( var name in {one:1} )

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-19 Thread Yaz
Nop. Just tested and its the same. On Oct 19, 2:15 pm, Chris Jordan [EMAIL PROTECTED] wrote: Could it be because you're name and id are identical? select name=SchoolID id=SchoolID /select Perhaps IE doesn't like this? Just a guess. Chris On 10/19/07, Yaz [EMAIL PROTECTED] wrote:

[jQuery] Age Verification - Validation Plugin

2007-10-19 Thread will
Has anyone already written an age verification method for Jörn's validator.js? Something that would take a given date in an input field and compare it to Today's date minus X years? Thanks, Will

[jQuery] Re: Problem with ajax in jquery.(Unable to figure this out)

2007-10-19 Thread Benjamin Sterling
Vijay, Are you working on that domain? Meaning, is url test url starting with http://129.219.208.31? http://129.219.208.31/email/email.php? If not, I would assume there is a cross domain issue. Do you have test page up that we can look at? On 10/19/07, VJ [EMAIL PROTECTED] wrote: I did put

[jQuery] Re: Problem with ajax in jquery.(Unable to figure this out)

2007-10-19 Thread John Resig
You forgot to put a $(document).ready(function(){ }); Around your code. --John On 10/19/07, VJ [EMAIL PROTECTED] wrote: I am unable to get the ajax to work in jquery. Whenever i pass a .php url to $.ajax. it does not return and none of the callbacks are executed. It justt hangs with no

[jQuery] Re: [Plugin] Password Strength Meter

2007-10-19 Thread Mortimer
Hello, this is a very nice plugin. I made some additions to the options of the plugin to be able to specify ALL the strings of the display as 3 of them were hard coded in version 1.2. I have also modified a few things in the plugin to make other strength test: 1- if a passwords contains one of

[jQuery] Re: A few suggestions for the password strength plugin

2007-10-19 Thread Mortimer
Hello, I made a few modifications to the version 1.2 of the plugin to fix that: 1- if a passwords contains one of the common word (for example test=89, 12345bs, etc...) it gets a bad score 2- replaced the regexp for special characters with \W, as this will match more of the possible special

[jQuery] Re: jQpanels 1.0.1

2007-10-19 Thread Rey Bango
Hi Andrea. Great work on the plugin. This is such a common bit of functionality and the plugin is very useful. Here's some feedback. 1) In IE, your demo page doesn't seem to render correctly. The header that says, Andrea's Blog Sliding Panels for jQuery simply doesn't appear. It looks fine

[jQuery] slideDown problem in IE6 and IE7

2007-10-19 Thread chrisandy
Very new to this but really puzzled by an error in IE6 and IE7. I'm using the fx slideDown effect and it is giving me an 'Invalid Argument' error - Fine in FF and Safari. I've got so far with this project I can't believe I'm getting stuck on this. Many thanks

[jQuery] Re: jQpanels 1.0.1

2007-10-19 Thread Alexandre Plennevaux
that's getting better and better, congratz! i would suggest simply renaming that {status:'open'} option to open and making it a boolean value (since it can only have 2 states) {open: true} -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[jQuery] Re: Case-insensitive version of :contains(text) ?

2007-10-19 Thread Erik Beeson
You could add your own expression for it (tested on FF2/Mac): jQuery.extend(jQuery.expr[':'], { containsIgnoreCase: (a.textContent||a.innerText||jQuery (a).text()||'').toLowerCase().indexOf((m[3]||'').toLowerCase())=0 }); Usage: $('...:containsIgnoreCase(foo)'); Or you could use a filter

[jQuery] Re: jQuery.AJAX statement

2007-10-19 Thread Sergei NZ
Umm. it can do both GET and POST. =] Depends which way you're specified in the type option for the .ajax call. =] On Oct 19, 3:56 pm, Bhaarat Sharma [EMAIL PROTECTED] wrote: Hey Thanks a lot. so if my jQuery.ajax is calling mycontent.php page will it also send ? q=test appened to the url?

[jQuery] Re: How to suck web content from an iframe to a div

2007-10-19 Thread Erik Beeson
IIRC, sub-domains can also be made to work if all pages involved set the same document.domain But back to the OP, your iframe can deal with scrolling itself if you set its size in the containing page, and that you can do cross-domain. Maybe I don't quite get what you're trying to do... --Erik

[jQuery] Re: binding dynamically inserted DOM elements

2007-10-19 Thread Flesler
are there any other known methods? http://jquery.com/plugins/project/Listen

[jQuery] Getting window portal size in 1.2.1

2007-10-19 Thread Jeffrey Kretz
Using jQuery 1.2.1, I wanted to get the window portal size for use in some layer positioning. I am able to obtain the correct width but NOT the correct height. Here is a sample page: http://www.scorpiontechnology.com/Cobalt/windowtest.htm I've set the window resize event, so you