[jQuery] CSS styles being lost in IE after Ajax Form Submission

2007-06-05 Thread juliandormon
Hi there, I am getting a strange behavior in IE 6 and 7 where not only do I lose my CSS styling in the replaced DIV but some of the jQuery swap classes code no longer works after an ajax form is submitted. I am using jQuery Forms to post the data and use the exact same approach on the same page wi

[jQuery] Re: files upload

2007-06-05 Thread Emil Ivanov
You'll have to do the uploaded asynchronously, using an iframe, and then query the backend for the progress... In php 5.2+ this is possible using the APC http://martinjansen.com/2007/04/upload-progress/ Note that this is quite buggy... In other languages it's possible, too. Regards, Emil Ivanov

[jQuery] Form Validation

2007-06-05 Thread John Farrar
http://jquery.bassistance.de/validate/demo-test/radio-checkbox-select-demo.html This library looks great but there appears to be a few bugs. (Like on this page in IE7 and FF2 the validation failures push the list so you see one less item when the validation errors appear. Does anyone have a fi

[jQuery] Re: Newbie: Superfish menu help

2007-06-05 Thread Joel Birch
On 06/06/2007, at 12:22 PM, Joel Birch wrote: Then the only problem you have is CSS related. Your submenu widths are sort-of collapsed until fully animated in, and then they suddenly go to their proper width. I have experienced this before and it can be solved by making sure that all the su

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

2007-06-05 Thread Rhapidophyllum
Perl & Python are great at converting character sets. On Jun 5, 2007, at 4:00 PM, oscar esp wrote: 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. Ad

[jQuery] Re: Newbie: Superfish menu help

2007-06-05 Thread Joel Birch
Hi again Jason, I have your superfish menu working within Firefox using Firebug. If you fix the points I mentioned in my previous emails you will find that it mostly works. What doesn't work is the delay on mouseout and I have tracked that down to the fact that in your CSS you are spelli

[jQuery] files upload

2007-06-05 Thread Will Arp
Dear list, is there a nice jQuery file upload, something like: http://digitarald.de/playground/upload.html is there a way to get filesize before uploading using javascript? I know flash can but.. Thank you! -will

[jQuery] Re: Ext Calendar on top of jQuery

2007-06-05 Thread IGx89
Ok, great! It appears some bad caching was my problem :/ On Jun 5, 6:00 pm, "Aaron Heimlich" <[EMAIL PROTECTED]> wrote: > On 6/5/07, IGx89 <[EMAIL PROTECTED]> wrote: > > > > > This doesn't seem to have made it into the v1.1.3a test release; any > > chance of making the final? > > It's there > al

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

2007-06-05 Thread Brandon Aaron
Thanks for the kind words and testing out jQuery 1.1.3a! Hopefully the last couple of bugs in 1.1.3a will be resolved soon and 1.1.3 will be out the door. -- Brandon Aaron On 6/5/07, cdomigan <[EMAIL PROTECTED]> wrote: Can I just say that I've started using Jquery 1.1.3a with Ext and it's a H

[jQuery] Re: Newbie: Superfish menu help

2007-06-05 Thread Joel Birch
Whoops, sorry Jason - you're not Andy! Anyway, another thing that is stopping your code from working (in addition to my previous point about the closing bracket etc.) is that the div that contains your nav has an id of 'nav', not a class. Therefore, you need to change your code to: $(doc

[jQuery] Re: Newbie: Superfish menu help

2007-06-05 Thread Joel Birch
On 06/06/2007, at 7:35 AM, JLuther wrote: Andy, Thanks, I tried adding the curly brace, but still no change in FF. The menu won't even display in IE7 now. Hi Andy, You are actually missing the closing bracket (not curly this time) and semicolon for the $(document).ready() function. Insert

[jQuery] Re: Superfish v1.1 released

2007-06-05 Thread Joel Birch
On 06/06/2007, at 6:37 AM, Jörn Zaefferer wrote: Your description at "What is it?" implies that the menu is able to degrade. When I turn off JS, I don't see any menu at all, I think that was the idea behind it. Hi Jörn, Just to be clear, Superfish is a plugin that enhances an existing pu

[jQuery] Problem using jScrollPane with .load

2007-06-05 Thread steve love
Hi all. I've got a table with 18 rows that I'm forcing to scroll along the y axis. I'd like to be able to theme the scroll bar using jScrollPane, but I'm having an issue with loaded content. It works as expected when the functions are called on the same page as the table, but when I insert the tab

[jQuery] Re: Loading additional photos after page load

2007-06-05 Thread Jared Hawkins
Thanks. However, will your example break if the images tht need to be preloaded already have a class such as class="inline right"? I've tried your approach and changed the class on the images to now read "hover inline right" then I change the "hover" text in the script to "hover inline right". I b

[jQuery] Re: Weird IE behavior - need help

2007-06-05 Thread Karl Rudd
Regarding the "document.execCommand("BackgroundImageCache", false, true)", the first entry in a Google search for "BackgroundImageCache" turns up this: http://misterpixel.blogspot.com/2006/09/forensic-analysis-of-ie6.html As to the slowing "tracking", it looks like IE has a bit of a pause be

[jQuery] Re: datePicker v2 beta

2007-06-05 Thread Kelvin Luck
Rob Desbois wrote: I've had an issue in Firefox2.0 using the plugin with the 'clickInput' option turned on. When the input field has the focus, clicking on it to display the datePicker will work, but over the top of that will be Firefox's drop-down box showing previous inputs to that field.

[jQuery] Re: datePicker v2 beta

2007-06-05 Thread Kelvin Luck
There's a bug or documentation error with dpSetSelected() [revision #1993] : it's documented as taking a string, but the code for it requires a Date (due to using .getMonth(), .getFullYear() and .getTime()). To fix this problem I added the line d = new Date(d); to the start of dpSetSelect

[jQuery] Re: Ext Calendar on top of jQuery

2007-06-05 Thread Aaron Heimlich
On 6/5/07, IGx89 <[EMAIL PROTECTED]> wrote: This doesn't seem to have made it into the v1.1.3a test release; any chance of making the final? It's there alright: http://dev.jquery.com/browser/tags/1.1.3a/src/event/event.js?rev=1938#L57 And here's the latest: http://dev.jquery.com/browser/tru

[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 regressio

[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] 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 ma

[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] 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: 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 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 > >

[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. Hav

[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

[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 sche

[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 u

[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 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 (En

[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'

[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 http://www.bluefilamentdesign.com

[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] testing, please ignore.

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

[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] 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 S

[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. 1. CSS designers don't have to scratch their heads forming the selectors. It's simple, lo

[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: 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] block plugin

2007-06-05 Thread oscar esp
I use the block pluggin in my App. I have a Page with this structure: 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: iframe question -> frameReady plugin

2007-06-05 Thread oscar esp
It is great!!! ... Another issue :-PPP I use the block pluggin in my App. I have a Page with this structure: if I execute the blockUI action only blocks the iframe window... I would like to block the whole window(main window) On 31 mayo, 22:10, Daemach <[EMAIL PROTECTED]> wrote: >

[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 t

[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: 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 = $('') .prependTo($('html')); $(function(){ blackout.css('background-color','gray').debug() }); $(window).load(function() { blackout.fadeOut("slow",function(){blackout.remove()}).debug() }); On 6/5/07, Daem

[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 break

[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] 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 absolute

[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 too

[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 Bir

[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 res

[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 com

[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 m

[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 o

[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] 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 lo

[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 hijacks.

[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] Re: Why does *this* function kill Interface Drag/Drop?

2007-06-05 Thread Dan G. Switzer, II
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?

[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 My point is that, id's and classes are the same except

[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: 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/ Cheer

[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 drupa

[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 wa

[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 l

[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 th

[jQuery] Re: dynamic jdMenu help

2007-06-05 Thread Jonathan Sharp
On 6/5/07, Chris Jordan <[EMAIL PROTECTED]> wrote: @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

[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 5

[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 Lord

[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: 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 hit-

[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 .page").eac

[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 Michael Price
Try this. Given the following HTML: Paragraph one, page one Paragraph two, page one Paragraph three, page one Paragraph one, page two Paragraph two, page two Paragraph

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Sebastián V . Würtz
.page p:first').each(function() { this.css({'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. __ N

[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: $('#b

[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 you

[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, d

[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() {

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Sebastián V . Würtz
thx Estoy utilizando la 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 c

[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 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);

[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 PRO

[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: $("ol.ol1[li

[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); xxx dd asdasdas 222 thx -- Estoy usando la versión gratui

[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 d

[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 o

[jQuery] Re: Remove DOM siblings after current item

2007-06-05 Thread [EMAIL PROTECTED]
Thanks Emil, that solved my problem! On Jun 5, 9:21 am, Emil Ivanov <[EMAIL PROTECTED]> wrote: > I think the first won't remove anything since #appendExtraAppointments > doesn't have any children. > > #appendExtraAppointments.sibligs() will wast all of the s > > var next = $('#appendExtraAppointm

[jQuery] Re: Remove DOM siblings after current item

2007-06-05 Thread Emil Ivanov
I think the first won't remove anything since #appendExtraAppointments doesn't have any children. #appendExtraAppointments.sibligs() will wast all of the s var next = $('#appendExtraAppointments').next('li'); while (next.size() != 0) { next = $('#appendExtraAppointments').next('li'); //

[jQuery] Re: Loading additional photos after page load

2007-06-05 Thread Mika Tuupola
On Jun 5, 2007, at 5:35 AM, Jared Hawkins wrote: Then, how would I suppress those images to be loaded after this event from loading on page load? I made a quick explanation about image preloading I am using. It preloads images sequentially after all other elements (including other image

[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: > > > blah 1 > blah 2 > blah 3 > blah

[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 u

[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 a

[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: blah 1 blah 2 blah 3 blah 4 I would like to remove the li elements afte

[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 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.. http://docs.j

[jQuery] Remove DOM siblings after current item

2007-06-05 Thread [EMAIL PROTECTED]
I have the following DOM: blah 1 blah 2 blah 3 blah 4 I would like to remove the li elements after the blah 2. I tried doing something like this, but it didn't work: $('#appendExtraAppointments').siblings().not($('li').prev).remove(); Any ideas? Thanks!

[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 o

[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 t

  1   2   >