[jQuery] Re: Traversing up the DOM to make a decision (using NOT or otherwise?)

2007-06-05 Thread George
Hi Miro, ideally filtering by parent would go something like this: $(A:not(#form A)).addClass(navAway).click(...) BUT in fact you need to write your own little filter function like this: $(A).filter(function(){ return !$ (this).parents().is(FORM) }).addClass(navAway).click(...) If you

[jQuery] Re: Get the checked status from radio button?

2007-06-05 Thread Rob Desbois
The difference between your first and second statements is that document.getElementById() returns a DOM object, but $() returns a jQuery object. This will work (although untested): console.debug( $(#type_1)[0].checked ); or this: console.debug( $(#type_1).attr(checked) ); --rob On

[jQuery] Re: Question about jQuery effects and append method

2007-06-05 Thread radzio
Thanks a lot jqModal is what I was trying to do. I don't how I didn't see in on Google. Thanks again Karl. --radzio On 5 Cze, 05:21, Karl Swedberg [EMAIL PROTECTED] wrote: If you just want it to appear when you click a link, then you probably don't want to append it to the body on

[jQuery] Re: animating with unit '%'

2007-06-05 Thread JMParsons
I had been using Interface's plug-ins, that's why my markup took on the style: versus the non-Interface markup. The last example got me up to speed quick. I know about the chaining of events, but just couldn't figure out how it was handled, especially in terms of functions. I am using

[jQuery] Re: jquery Form enctype=multipart/form-data problem

2007-06-05 Thread Mike Alsup
Sure. Add an iframe option to your form options and it will force the iframe-mode of submitting the form (which uses multipar/form-data). var options = { iframe: true, // other options... }; $('#myForm').ajaxForm(options); Mike This is generating a server side error. It seems that

[jQuery] Re: Get the checked status from radio button?

2007-06-05 Thread Erik Beeson
Also: if($('#type_1').is(':checked')) ... --Erik On 6/5/07, howard chen [EMAIL PROTECTED] wrote: Using the traditional method, it worka console.debug ( document.getElementById(type_1).checked ); But this one failed... console.debug( $(#type_1).checked ); any method to get using

[jQuery] Re: Loading additional photos after page load

2007-06-05 Thread Mike Alsup
window.onload was just an example. If you add the images via script then you can run the script whenever you choose. If the images are in the markup then the browser will download them immediately, so you need to remove them from the markup and add them to the DOM when you need them. Mike

[jQuery] Re: animating with unit '%'

2007-06-05 Thread Erik Beeson
Ah, I've never used the interface version of animate. Sorry about the typo. That's what I get for not testing it :) Glad it helped. --Erik On 6/4/07, JMParsons [EMAIL PROTECTED] wrote: I had been using Interface's plug-ins, that's why my markup took on the style: versus the non-Interface

[jQuery] OnChange not fired in Opera

2007-06-05 Thread Diego A.
I developed this plugin... http://www.fyneworks.com/jquery/multiple-file-upload/ and someone has just reported to me that it doesn't work in Opera. I checked and it doesn't work because the onchange event isn't being fired on the file input field. has anyone had a similar problem? Thanks!

[jQuery] Re: Question about jQuery effects and append method

2007-06-05 Thread Karl Swedberg
:-) right. that's because I was just dropping in radzio's code. I didn't mean for it to work perfectly on my server, just to give him something he could copy and paste. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 4, 2007, at 11:37 PM, John

[jQuery] Re: Traversing up the DOM to make a decision (using NOT or otherwise?)

2007-06-05 Thread Karl Swedberg
Nice one, George! Love that use of the .filter() method! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 5, 2007, at 3:21 AM, George wrote: Hi Miro, ideally filtering by parent would go something like this: $(A:not(#form

[jQuery] Insert option into form select list

2007-06-05 Thread sublimenal
Is it possible to inject an option into a html form select list with ajax? I need to set up a search system and when the user clicks a name it puts that name in the select list as an option. Thanks _Tony

[jQuery] Re: Delete a table row with JQuery

2007-06-05 Thread Tony
infosoft написа: Hi I have a table where I browse the records of the database. I implemented a delete button in each row. When I press this button, I send an ajax request to the server. If the response is ok, I need to delete the row of the table that have the data I was deleted. Hi,

[jQuery] toggle() append: how to?

2007-06-05 Thread Alexandre Plennevaux
hello jQ-zillos ! i have a list of links organised in subsections, and i would like to modify each section title, adding to it a value provided by the link. Clicking on another link should reset the section title and append it with the new link 's value. I'm puzzled on how to code this

[jQuery] OK, why does *this* function kill Interface Drag/Drop?

2007-06-05 Thread dennis
New to javascript. New to jQuery. I've hit the wall. Interface Drag/Drop works, my search photos by tags works. Add/delete images to/from database works. All work as separate pieces. But when I try to add my search ajax function to same page where drag/drop stuff resides, the latter stop

[jQuery] Keeping a div of controls and stats in Viewport

2007-06-05 Thread SamCKayak
Anyone have a jQuery-esque method of keeping a DIV of information (or controls) in the viewport when the window has vertical scrolling? Sam

[jQuery] security advice

2007-06-05 Thread Michael Stuhr
hi list, i'd like to have some opinions on how one should/can secure an ajax application/backend (preferred server language PHP). every hint/link appreciated micha

[jQuery] Re: dynamic jdMenu help

2007-06-05 Thread Brian Miller
My guess is that it's a behaviors issue. The jdMenu plugin expects the list to already be there when it runs, and it attaches a bunch of events. IF you add stuff to the DOM afterwards, those events don't get attached unless you run the plugin again on the list. Of course, you probably would

[jQuery] Re: Find set of questions

2007-06-05 Thread SamCKayak
I am learning, I am learning... I missed the subtle difference in the documentation: $('a, b') and $('a', 'b') !!! The way to filter my list is using a function.. like so: ('ol.ol1 li').filter( function() { return $('li.correctchosen', this).length != 0 } ) // Filters the first set

[jQuery] Re: security advice

2007-06-05 Thread Alexandre Plennevaux
That's a rather vague question, hence my vague answer :): have your php script called via ajax check for the user authentication session before performing the request. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Stuhr Sent: mardi 5

[jQuery] Weird IE behavior - need help

2007-06-05 Thread devsteff
Hi jQuery community, I've written a complex jQuery table plugin wich supports different selection models (single, multiple, exclusive), nested/hierarchical tables (like a tree) etc. Everything works well, but now - while the application goes testing by some clients - I stumbled by an very ugly

[jQuery] Re: security advice

2007-06-05 Thread Michael Price
Hi Michael, On my website I have a lot of pages called via AJAX, some of which are quite sensitive (private messages, user submission data etc.). At the top of every page I have a PHP include which, as well as opening the database connection etc., also includes code to check and authenticate

[jQuery] Re: Weird IE behavior - need help

2007-06-05 Thread Karl Rudd
Part of the problem (the flickering cursor) is due to IE doing it's cache checks on changes in background images. To fix that put this at the top of one of your jQuery scripts: if ( $.browser.msie ) document.execCommand(BackgroundImageCache, false, true) Karl Rudd On 6/5/07, devsteff [EMAIL

[jQuery] Re: security advice

2007-06-05 Thread Michael Stuhr
Alexandre Plennevaux schrieb: That's a rather vague question, hence my vague answer :) i know :-) thanks anyway. Michael Price schrieb: Hi Michael, [...] thanks for your detailed answer. i think what i really was after, was a small 'framework' that does the thing for me. i can include

[jQuery] Re: dynamic jdMenu help

2007-06-05 Thread Jonathan Sharp
Hi Christ, I hope I can clear up some of the confusion and frustration. jdMenu binds unbinds it's events on each show/hide which allows for easy updating of a dynamic menu. The documentation is lacking quite a bit so I appologize. I realized that this works best for sub-menus as opposed to a

[jQuery] Re: jquery Form enctype=multipart/form-data problem

2007-06-05 Thread juliandormon
You rock yet again Mike! Where can I donate some money to ya? :respect: malsup wrote: Sure. Add an iframe option to your form options and it will force the iframe-mode of submitting the form (which uses multipar/form-data). var options = { iframe: true, // other options...

[jQuery] Remove DOM siblings after current item

2007-06-05 Thread [EMAIL PROTECTED]
I have the following DOM: ul liblah 1/li li id=appendExtraAppointmentsblah 2/li liblah 3/li liblah 4/li /ul I would like to remove the li elements after the li id=appendExtraAppointmentsblah 2/li. I tried doing something like this, but it didn't work:

[jQuery] Re: toggle() append: how to?

2007-06-05 Thread Emil Ivanov
I think the best way to do this will be to put an span that you can select via jQuery and update it's text. $('h3', $ (this).parent().parent().parent()).find('.my_cool_span').text($ (this).text()); Also you might consider optimizing this parent().parent()... stuff bu using a selector..

[jQuery] Re: Remove DOM siblings after current item

2007-06-05 Thread Mario Moura
Not tested $().remove($('#appendExtraAppointments').children()); or $().remove($('#appendExtraAppointments').siblings()); Not sure, Mario 2007/6/5, [EMAIL PROTECTED] [EMAIL PROTECTED]: I have the following DOM: ul liblah 1/li li id=appendExtraAppointmentsblah 2/li liblah 3/li liblah

[jQuery] Re: dynamic jdMenu help

2007-06-05 Thread Chris Jordan
@Ben, Thanks man. I appreciate it. @Brian, I think you've hit the nail on the head, actually. Jonathan's post seems to bear that out. @Jonathan, Thanks I think that's what I was missing when I was doing this in 1.2.1. However, I'm having a separate issue in 1.3 in that I can't get it to work

[jQuery] Re: dynamic jdMenu help

2007-06-05 Thread Chris Jordan
On Jun 5, 8:53 am, Jonathan Sharp [EMAIL PROTECTED] wrote: Hi Christ, Oh, and I am a great guy... but I don't walk on water, Jonathan... lol! :o) I hope I can clear up some of the confusion and frustration. jdMenu binds unbinds it's events on each show/hide which allows for easy updating

[jQuery] Re: Remove DOM siblings after current item

2007-06-05 Thread Emil Ivanov
var next = $('#appendExtraAppointments').next('li'); while (next.size() != 0) { next = $('#spc').next('li'); next.remove(); } Regards, Emil Ivanov On Jun 5, 5:02 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have the following DOM: ul liblah 1/li li

[jQuery] Re: Bug? $('#foo #bar')

2007-06-05 Thread patcoll
I second this notion. A perfect example from a current project: I have two page templates: home and interior. On each I have the client's logo, but they are different sizes. I use an id of logo on both because something bothered me about using #home-logo and #interior-logo. If I put an id of

[jQuery] Re: OK, why does *this* function kill Interface Drag/Drop?

2007-06-05 Thread dennis
I'm really stuck. I've not gotten any replies. Am I asking the question in the wrong way? /dennis On Jun 5, 8:42 am, dennis [EMAIL PROTECTED] wrote: New to javascript. New to jQuery. I've hit the wall. InterfaceDrag/Dropworks, my search photos by tags works. Add/delete images to/from

[jQuery] Problem getting first paragraph

2007-06-05 Thread Sebastián V . Würtz
How i get the first p of each div page inside the id book? This not work $('#book .page').each(function(index) { var first_paragraph = $(this + p).eq(0); div id=book div class=page h1xxx/h1 p/p pdd/p /div div class=page h1asdasdas/h1 p/p p/p /div

[jQuery] Re: Find set of questions

2007-06-05 Thread Rob Desbois
Ah ok I follow you now. Ok I'm not certain this will work; I haven't tested it but give it a go and see what you get. From the jQuery selectors documentation: Hide all Paragraph elements that contain a link: $(p[a]).hide(); So my guess at how to do what you want would be:

[jQuery] Re: Remove DOM siblings after current item

2007-06-05 Thread Brandon Aaron
All you need is general sibling combinator like this: $('#appendExtraAppointments ~ li').remove(); More info on the selector. http://www.w3.org/TR/2005/WD-css3-selectors-20051215/#general-sibling-combinators http://docs.jquery.com/DOM/Traversing/Selectors -- Brandon Aaron On 6/5/07, [EMAIL

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Joel Birch
How about: var first_paragraphs = $('#book div.page p:first'); Joel. On 06/06/2007, at 12:34 AM, Sebastián V. Würtz wrote: How i get the first p of each div page inside the id book? This not work $('#book .page').each(function(index) { var first_paragraph = $(this + p).eq(0); div

[jQuery] Re: how to load an HTML in a div and to display it from a certain subheadline (jump to anchor)

2007-06-05 Thread web2002
I understood that Get might not with anchors.. Could you please suggest an alternative solution? Thank you! Anca

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Sebastián V . Würtz
versión gratuita de SPAMfighter para usuarios privados. Ha eliminado 2470 correos spam hasta la fecha. Los abonados no tienen este mensaje en sus correos. ¡Pruebe SPAMfighter gratis ya! __ NOD32 2309 (20070605) Information __ This message was checked by NOD32 antivirus system. http

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Joel Birch
On 06/06/2007, at 12:48 AM, Sebastián V. Würtz wrote: Right. but i need all the first paragraph of each page, to execute an each function for each one :) Sorry if I am misunderstanding, but as far as I can tell this should work: $('#book div.page p:first').each(function() { /*do

[jQuery] Re: OK, why does *this* function kill Interface Drag/Drop?

2007-06-05 Thread Dan G. Switzer, II
Dennis, I'm really stuck. I've not gotten any replies. Am I asking the question in the wrong way? Are you re-initializing the drag/drop code after you update the HTML? If you're changing the DOM, you need to also make sure to reflect those changes with Interface. -Dan On Jun 5, 8:42 am,

[jQuery] DC Drupal User's Group

2007-06-05 Thread Michael Haggerty
Tonight, there will be a meeting of the DC Drupal Users Group at the Science Club at 1136 19th Street, NW. Everyone on this list in invited to come join us for drinks and talk about code with some interesting people. See the announcement at http://groups.drupal.org/node/4324. Drupal, in case

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Joel Birch
On 06/06/2007, at 12:57 AM, Joel Birch wrote: On 06/06/2007, at 12:48 AM, Sebastián V. Würtz wrote: Right. but i need all the first paragraph of each page, to execute an each function for each one :) Sorry if I am misunderstanding, but as far as I can tell this should work: $('#book

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Sebastián V . Würtz
({'background-color':'yellow'}); }); )}; Good luck. Joel. Scratch that. For starters I forgot to wrap 'this' in $(). Also, it only seems to get the the first para of the first .page element. I'll try again. __ NOD32 2309 (20070605) Information __ This message was checked by NOD32

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Michael Price
Try this. Given the following HTML: div id=book div class=page pParagraph one, page one/p pParagraph two, page one/p pParagraph three, page one/p /div div class=page pParagraph one, page two/p

[jQuery] Re: Keeping a div of controls and stats in Viewport

2007-06-05 Thread SamCKayak
I found a prototype.js solution here: http://www.prototypejs.org/feed/api/position/atom.xml Note the div in the top-right of the page. Anyone done anything similar in jQuery? Plans for the future? Sam

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Joel Birch
On 06/06/2007, at 1:13 AM, Michael Price wrote: The following jQuery code should do the trick: $(#book .page).each(function() { $(p:first,this).css(backgroundColor,yellow); }); Thanks Michael., that should do it. So Sebastián's solution could look like: $(#book

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Joel Birch
On 06/06/2007, at 1:30 AM, Joel Birch wrote: $('p:first','#book .page').each(function(){ /* do stuff ... */ }); Actually, :first may only ever return one element, maybe this works better: $('p:eq(0)','#book .page').each(function(){ /* do stuff ... */ }); Sorry for the

[jQuery] Re: What is the jQuery Sortable code?

2007-06-05 Thread [EMAIL PROTECTED]
Hi Dave, did you find a solution to your problem? I'm having the same problem here Matthias On 1 Mai, 23:58, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I have a group of items that I makesortablewhen my document is ready $('div.listGroup1').Sortable(

[jQuery] Re: dynamic jdMenu help

2007-06-05 Thread Jonathan Sharp
On 6/5/07, Chris Jordan [EMAIL PROTECTED] wrote: On Jun 5, 8:53 am, Jonathan Sharp [EMAIL PROTECTED] wrote: Hi Christ, Oh, and I am a great guy... but I don't walk on water, Jonathan... lol! :o) Oops! I don't think my coffee had kicked in yet! (Nope I wasn't trying to take the Lords'

[jQuery] Re: Weird IE behavior - need help

2007-06-05 Thread devsteff
wow thanks! the mouse cursor flickering is gone. but why is the cache checking activatetd AFTER the first click on the page? where can i find some more information of document.execCommand(...) do you have a link? i found some but, the bumpy slow motion tracking still ruins my nerves... On Jun

[jQuery] Re: DC Drupal User's Group

2007-06-05 Thread dennis
Michael Haggerty changed my original post title, and hijacked for his drupal announcement. Why would you do that? It seems pretty hostile to me. I am trying to learn something here. /dennis On Jun 5, 10:55 am, Michael Haggerty [EMAIL PROTECTED] wrote: Tonight, there will be a meeting of the DC

[jQuery] Why does *this* function kill Interface Drag/Drop?

2007-06-05 Thread dennis
My ajax search function populates a div with thumbnails, but then the Drag/Drop code no longer works. Me scratches head. Dan Switzer was kind enough to provide the information that I need to reinitialize the Drag/Drop Interface code. Can someone help me understand how to do that? I did a quick

[jQuery] jQuery, Ajax Form and memory usage

2007-06-05 Thread Vivi
Hi guys. I am discovering jQuery and i find it very attractive and useful. I just have a problem : I used to have a form which allows me to display pictures submitted on my website (to moderate them); it displayed 100 pictures at a time and for each picture, i choose if i delete it or not. It

[jQuery] Re: DC Drupal User's Group

2007-06-05 Thread John Resig
It appears to be an honest mistake. I only see what you mention on Google Groups, in my email client they are completely separate threads, I wouldn't worry about it. --John On 6/5/07, dennis [EMAIL PROTECTED] wrote: Michael Haggerty changed my original post title, and hijacked for his drupal

[jQuery] Re: NEWS: HTML entity lookup tool built in jQuery

2007-06-05 Thread Remy Sharp
Thanks for the feedback - I've since upgraded the lookup to include a 'compressed' view (since I figured I wanted that too). There's some other features like copying the entity to the clipboard and adding your own keywords to the entity. http://leftlogic.com/lounge/articles/entity-lookup/

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread sebastianw wurtz
Thx guys both solutions work very good and my guestbook look perfect. The next i want to do is study to resolve howto implent something like a pagination withount next page, only with the mousewheel and ajax callback But, this is other story ;) thx again - Mensaje original De: Joel

[jQuery] Re: Bug? $('#foo #bar')

2007-06-05 Thread Sean Catchpole
I suppose I can see a few applications of using multiple id's, but I'm still curious why using classes instead is not a better option. On 6/5/07, patcoll [EMAIL PROTECTED] wrote: #home #logo #interior #logo You could for example have div id=home class=logo My point is that, id's and

[jQuery] Re: Why does *this* function kill Interface Drag/Drop?

2007-06-05 Thread Chris W. Parker
On Tuesday, June 05, 2007 9:38 AM dennis said: Dan Switzer was kind enough to provide the information that I need to reinitialize the Drag/Drop Interface code. Can someone help me understand how to do that? How can we while not knowing what Dan provided? Did he send it off list? If so,

[jQuery] [ot] hijacking threads for non-threaded readers.

2007-06-05 Thread Ⓙⓐⓚⓔ
Some time ago I was lectured about hijacking a thread... I thought what the ___? Some e-mail programs keep track of the internal headers of e-mails and group them by those headers instead of by the subject. While this can be good if everyone knows about it, and uses it... it can lead to

[jQuery] InnerFade without javascript support

2007-06-05 Thread tzmedia
Hi All, I'm hoping this is an easy fix. Normally on the images list sample: http://medienfreunde.com/lab/innerfade/ The images all load when there is now javascript support. I'm planning to use an innerfade list of images in the header design of a site. I'ld like for the innerfade images to not

[jQuery] Re: [ot] hijacking threads for non-threaded readers.

2007-06-05 Thread Sean Catchpole
On 6/5/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: So, for us gmail users, we have to remember to compose a new message , rather then hitting reply and changing the subject. Just to make sure I understand you. Gmail users can still hit reply as long as they don't change the subject right? ~Sean

[jQuery] Re: InnerFade without javascript support

2007-06-05 Thread Joel Birch
On 06/06/2007, at 3:12 AM, [EMAIL PROTECTED] wrote: Hi All, I'm hoping this is an easy fix. Normally on the images list sample: http://medienfreunde.com/lab/innerfade/ The images all load when there is now javascript support. I'm planning to use an innerfade list of images in the header design

[jQuery] Re: [ot] hijacking threads for non-threaded readers.

2007-06-05 Thread Ⓙⓐⓚⓔ
that is the normal behavior! You just did it... and so did I! On 6/5/07, Sean Catchpole [EMAIL PROTECTED] wrote: On 6/5/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: So, for us gmail users, we have to remember to compose a new message , rather then hitting reply and changing the subject. Just to make

[jQuery] Re: DC Drupal User's Group

2007-06-05 Thread dennis
Thanks for that clarification, John, I only have the browser view. My apologies to Michael for the accusation. /dennis On Jun 5, 12:40 pm, John Resig [EMAIL PROTECTED] wrote: It appears to be an honest mistake. I only see what you mention on Google Groups, in my email client they are

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Brandon Aaron
Here is the mouse wheel plugin to help get you started with that. :) http://jquery.com/plugins/project/mousewheel -- Brandon Aaron On 6/5/07, sebastianw wurtz [EMAIL PROTECTED] wrote: Thx guys both solutions work very good and my guestbook look perfect. The next i want to do is study to

[jQuery] Re: InnerFade without javascript support

2007-06-05 Thread tzmedia
Is there a way to call the div containing the fade list code, only if there is jquery support. Obviously it wouldn't load if there was no js. The absolute positioning and z-indexing sounds troublesome. I try not to absolutely position anything normally. ty Thanks joel. On Jun 5, 1:31 pm, Joel

[jQuery] Re: NEWS: HTML entity lookup tool built in jQuery

2007-06-05 Thread Andy Matthews
Kick ASS Remy. Great job. It looks fantastic and works flawlessly. Good job. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Remy Sharp Sent: Tuesday, June 05, 2007 11:52 AM To: jQuery (English) Subject: [jQuery] Re: NEWS: HTML entity lookup

[jQuery] What event is fired when all images are loaded and displayed?

2007-06-05 Thread Daemach
I'm using body onload to reset a menu, but the onload event seems to be fired before the images are actually displayed. This causes the menu to be in the wrong position on the initial load, though it works correctly once the images are cached. Is there another event that gets fired when

[jQuery] Re: InnerFade without javascript support

2007-06-05 Thread Joel Birch
On 06/06/2007, at 3:56 AM, [EMAIL PROTECTED] wrote: Is there a way to call the div containing the fade list code, only if there is jquery support. Obviously it wouldn't load if there was no js. The absolute positioning and z-indexing sounds troublesome. I try not to absolutely position anything

[jQuery] Re: InnerFade without javascript support

2007-06-05 Thread tzmedia
Thanks again Joel, since I'm just beginning the layout, I could build it so the images all loading wouldn't be a problem. If the images were not contained in a header div, but a right-hand sidebar div, that only looked like it was in the header and there wouldn't be a problem. It wouldn't

[jQuery] Re: What event is fired when all images are loaded and displayed?

2007-06-05 Thread Ⓙⓐⓚⓔ
I was playing with this code, the window load code should help: var blackout = $('div style=width: 100%; height: 100%; position: absolute; top: 0px; left: 0px; z-index: 100; background-color: black/div') .prependTo($('html')); $(function(){ blackout.css('background-color','gray').debug()

[jQuery] Re: Why does *this* function kill Interface Drag/Drop?

2007-06-05 Thread dennis
Chris, Have a look at 'OK, why does *this* function kill Interface Drag/ Drop?' on this newsgroup. That's where the thread began. The thread subject was accidently changed to 'DC Drupal User's Group' when someone else posted. There is evidently a bug in the underlying newsgroup engine. /dennis

[jQuery] Re: DC Drupal User's Group

2007-06-05 Thread Bil Corry
dennis wrote on 6/5/2007 9:12 AM: Michael Haggerty changed my original post title, and hijacked for his drupal announcement. Why would you do that? It seems pretty hostile to me. I am trying to learn something here. It happens when someone wants to send a new message to the list, but rather

[jQuery] block plugin

2007-06-05 Thread oscar esp
I use the block pluggin in my App. I have a Page with this structure: div /div div id=iframe iframe /div if I execute the blockUI action in the iframe content only blocks the iframe window... I would like to block the main window in order to block all the screen? Any idea¿?

[jQuery] Re: dynamic jdMenu help

2007-06-05 Thread Christopher Jordan
Thanks Jonathan. I'm stuck at a different client right, now but later on today I'll try adding the line you suggested to my ($function()); code. Thanks again for the help, and I'll holler if I've got more questions. Chris Jonathan Sharp wrote: On 6/5/07, *Chris Jordan* [EMAIL PROTECTED]

[jQuery] Re: Bug? $('#foo #bar')

2007-06-05 Thread R. Rajesh Jeba Anbiah
On Jun 5, 9:54 pm, Sean Catchpole [EMAIL PROTECTED] wrote: I suppose I can see a few applications of using multiple id's, but I'm still curious why using classes instead is not a better option. snip 1. CSS designers don't have to scratch their heads forming the selectors. It's simple,

[jQuery] Help With Pan View Code

2007-06-05 Thread [EMAIL PROTECTED]
Hello, I've customized the panview code to accommodate what I want it to do, but I'm having a problem with it in IE. Firefox works fine. Panning the image in IE doesn't work and I think it has something to do with scrollTop, but i have no idea what to do to fix it. If I take the pan image

[jQuery] Re: What event is fired when all images are loaded and displayed?

2007-06-05 Thread Karl Swedberg
Hmm. Not sure about absolutely everything, but the image complete property is a non-standard but well-supported option that might help. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 5, 2007, at 2:03 PM, Daemach wrote: I'm using body onload to

[jQuery] testing, please ignore.

2007-06-05 Thread Josh Nathanson
Testing, please ignore.

[jQuery] Re: Bug? $('#foo #bar')

2007-06-05 Thread Matt Kruse
On Jun 5, 11:54 am, Sean Catchpole [EMAIL PROTECTED] wrote: My point is that, id's and classes are the same except for the fact that you can only have one id per element, and only one of each id per page. If you remove that uniqueness of id's then it strips much of it's purpose. CSS

[jQuery] Re: jquery Form enctype=multipart/form-data problem

2007-06-05 Thread Mike Alsup
Ha, thanks for making me smile. Send a few bucks to your favorite charity! Mike You rock yet again Mike! Where can I donate some money to ya? :respect:

[jQuery] Newbie: Superfish menu help

2007-06-05 Thread JLuther
Hi, I'm new to JavaScript and jQuery, so I apologize if I sound like an idiot. I am trying to set a delay for when the mouse rolls off a menu, but I don't seem to be able to get it to work right. You can view the drop down menu and see how Superfish was called at a href=http://

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-05 Thread oscar esp
I am trying to find some code to do the conversion... however I did get any thing right now On 4 jun, 21:37, Bil Corry [EMAIL PROTECTED] wrote: Mike Alsup wrote on 6/4/2007 8:15 AM: 2. Add support in the ASP page to convert UTF-8 into 8859. I don't know if this will help, but here's all

[jQuery] Re: Superfish v1.1 released

2007-06-05 Thread Jörn Zaefferer
Joel Birch wrote: Hi jQuistadores, I have made some changes to my Superfish menu plugin and probably need to give it a version number. I think the previous version was stable and this version adds a feature so I'm calling this version Superfish v1.1. I don't really know versioning but this

[jQuery] Re: Why does my ajax function kill drag/drop?

2007-06-05 Thread dennis
Hi Jean, I got the following information from Dan Switzer, it might help you. I plan to give his suggestions a try later on after work. Every bit of knowledge helps. Since you're replacing the DOM, the first thing you should do before you upgrade the DOM is probably remove the Drag/Drop zones

[jQuery] Re: Why does my ajax function kill drag/drop?

2007-06-05 Thread Jean Nascimento
i think all ajax calls kill drag, i have troubles with that and a friend mine too On 6/4/07, dennis [EMAIL PROTECTED] wrote: I have Interface 1.2 Drag/Drop working. I can drag images (hardcoded) from div id=theSearchResultImages to my dropable area just fine. But when I try to add my ajax

[jQuery] Re: Newbie: Superfish menu help

2007-06-05 Thread Andy Matthews
In IE 7 and FF2 for the PC, I get a JS error when I load that page. Looks like you might be missing a closing curly brace around line 21. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JLuther Sent: Tuesday, June 05, 2007 2:56 PM To: jQuery

[jQuery] Processing ajax load content before it gets added to DOM ?

2007-06-05 Thread ZebZiggle
Hi again, I have a snippit of code that ajax loads content for me. I want to add target='_blank' to all the anchors before displaying it. I'm trying thing: function ... $('#foo').load(/get/733/).find('a').each(function() { this.target = _blank; }); A similar scheme

[jQuery] Re: Newbie: Superfish menu help

2007-06-05 Thread JLuther
Andy, Thanks, I tried adding the curly brace, but still no change in FF. The menu won't even display in IE7 now. On Jun 5, 4:09 pm, Andy Matthews [EMAIL PROTECTED] wrote: In IE 7 and FF2 for the PC, I get a JS error when I load that page. Looks like you might be missing a closing curly brace

[jQuery] Re: What event is fired when all images are loaded and displayed?

2007-06-05 Thread Daemach
Thanks to all of you - I'll try both. On Jun 5, 2:40 pm, Mika Tuupola [EMAIL PROTECTED] wrote: On Jun 5, 2007, at 9:03 PM, Daemach wrote: I'm using body onload to reset a menu, but the onload event seems to be fired before the images are actually displayed. This causes the menu to be

[jQuery] Re: Bug in jQuery implementation of EXT, works with other libraries.

2007-06-05 Thread cdomigan
Can I just say that I've started using Jquery 1.1.3a with Ext and it's a HUGE improvement. Most bugs are gone and animations are smooth as silk - thanks to everyone behind this release! Chris

[jQuery] Re: What event is fired when all images are loaded and displayed?

2007-06-05 Thread Mika Tuupola
On Jun 5, 2007, at 9:03 PM, Daemach wrote: I'm using body onload to reset a menu, but the onload event seems to be fired before the images are actually displayed. This causes the menu to be in the wrong position on the initial load, though it works correctly once the images are cached.

[jQuery] Re: Bug in jQuery implementation of EXT, works with other libraries.

2007-06-05 Thread Rey Bango
Chris, Post some sample code bud! I'm sure we could all benefit from seeing how you're incorporating Ext. Rey cdomigan wrote: Can I just say that I've started using Jquery 1.1.3a with Ext and it's a HUGE improvement. Most bugs are gone and animations are smooth as silk - thanks to everyone

[jQuery] Re: Processing ajax load content before it gets added to DOM ?

2007-06-05 Thread Ⓙⓐⓚⓔ
the A in Ajax is for Asynchronous! just because you .load() something doesn't mean it's there. It will be there later. the callbacks are called back when it load is done. load(url, params, callback) Load HTML from a remote file and inject it into the DOM. Returns jQuery Parameters - *url*

[jQuery] Interface: How to rotate objects by a certain angle?

2007-06-05 Thread Paolo
Hi, I'd like to rotate by a certain angle (e.g. a box by 45 degrees); that object is going to be draggable. What are the options? I'd like to avoid swf approaches that rotate objects after loading them rather than before. Thanks! Paolo

[jQuery] Re: Ext Calendar on top of jQuery

2007-06-05 Thread IGx89
This doesn't seem to have made it into the v1.1.3a test release; any chance of making the final? On Apr 17, 12:52 pm, Brandon Aaron [EMAIL PROTECTED] wrote: Moving to addEventListener and attachEvent is on the todo list. When will it be done? Soon :) It will involve a lot of regression

[jQuery] Are horizontal Sortables possible?

2007-06-05 Thread adept
Is it possible to implement a horizontal sort rather than vertical? I'm wanting to use it to add elements from a vertical list to a horizontal list in order to build a customizable toolbar. Is it just a css thing and Sortable already supports that? I've been playing with this all day and cant

[jQuery] Interface: How to rotate objects by a certain angle?

2007-06-05 Thread Paolo
Hi, I'd like to rotate by a certain angle (e.g. a box by 45 degrees); that object is going to be draggable. What are the options? I'd like to avoid swf approaches that rotate objects after loading them rather than before. Thanks! Paolo

  1   2   >