Re: [jQuery] Q on optimizing multiple plugin use/packing

2007-02-08 Thread Giuliano Marcangelo
Su, came across this article, http://rakaz.nl/item/make_your_pages_load_faster_by_combining_and_compressing_javascript_and_css_files not a php guy,so do not know how effective this would be On 08/02/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Su schrieb: I'm working on a site which is using

Re: [jQuery] toggle multiple alternating divs

2007-02-06 Thread Giuliano Marcangelo
Try Jorn's accordion plug in http://bassistance.de/jquery-plugins/jquery-plugin-accordion/ hth On 06/02/07, Strawberry Kitty [EMAIL PROTECTED] wrote: Hi, I hope my question isn't too stupid, I'm both new to jquery and javascript. I searched the mailing list archives but couldn't find a

Re: [jQuery] Form validation

2007-02-06 Thread Giuliano Marcangelo
Alexandre, take a look at what Jorn cooked up some while back http://fuzz.bassistance.de/jQueryFormValidation/validateTest.html On 06/02/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hello, i used to use this very nice library for form validation, back in those days when i was using

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Giuliano Marcangelo
Klaus, how about you doing some tutorials.. MasterKlausses ?? :-) On 02/02/07, Klaus Hartl [EMAIL PROTECTED] wrote: Marc Jansen schrieb: Brian Miller schrieb: You know... The folks over at Mootools refer to theirs as Mootorials. These guys develop excellent JavaScript, yet

Re: [jQuery] new plugin: comet client

2007-01-30 Thread Giuliano Marcangelo
Aaron, this will lead you to more resources explanations about Comet http://cometd.com/ hth On 30/01/07, Aaron Heimlich [EMAIL PROTECTED] wrote: If you don't mind my asking, what exactly is comet? On 1/30/07, Glen [EMAIL PROTECTED] wrote: The new hipness is comet (new for me, @ least),

Re: [jQuery] simple selector with ID doesn't work anymore

2007-01-25 Thread Giuliano Marcangelo
Jennifer, I am far from being an expert, but as you know an id must be unique..therefore .myClass #myId is not necessary to target #myId.surely you should only target the idsame with #firstId #secondIdsimply declare the id that you wish to target hth On 25/01/07,

Re: [jQuery] simple selector with ID doesn't work anymore

2007-01-25 Thread Giuliano Marcangelo
How about, $('#main-content').find('#fourth-para').addClass('test2'); that does not throw an exception ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Thickbox incompatible with jQuery 1.1

2007-01-24 Thread Giuliano Marcangelo
Klaus, I think that we would all love YOU to do that ! :-) On 24/01/07, Klaus Hartl [EMAIL PROTECTED] wrote: [-Stash-] wrote: Unfortunately, it looks like Cody's giving up on ThickBox. He's put out a request for someone to take it over:

Re: [jQuery] IDs are a crutch for the weak. Classes are for the strong.

2007-01-21 Thread Giuliano Marcangelo
When it comes to specificity...the following will give you the basic rules that are followed by CSS HTML SELECTOR = 1 CLASS SELECTOR = 10 ID SELECTOR = 100 therefore div p has a specificity of 2 div p.myclass has a specificty of 12 #myId div p.myclass has a specificity of 112 and in

Re: [jQuery] New Website

2007-01-14 Thread Giuliano Marcangelo
Really slick logo.very nice icons and for me the text sizing is spot on... excellent work ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Flickering problem in Firefox

2007-01-14 Thread Giuliano Marcangelo
On a slow computer, the animation is jerky..on the way up and down the animations stutters On 14/01/07, Miles Storey [EMAIL PROTECTED] wrote: There's no white page thing happening for me. It's smooth on the way down, a bit jerky on the way up but I don't see the page turning white for

Re: [jQuery] JQuery driven site

2006-12-19 Thread Giuliano Marcangelo
Stefan, if you wish to keep the same html for the checkbox area, and give it some layout, just a tiny bit of css, will sort out your checkboxes ..(just one way of doing it) div.action nobr {float:left;width:120px} div.action br {clear:left;}

Re: [jQuery] Plugin: Mousehold

2006-12-15 Thread Giuliano Marcangelo
Using the mousewheel also fires the event,but when the mousewheel is released another duplicate window opens (tested in FF) ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Using .addClass() to add dynamic class not for CSS

2006-12-01 Thread Giuliano Marcangelo
If you have the FF Web Developer Extension by Chris Pederick, you can check which classes are being added to elements within your document by using View Generated Source, rather than View Source... hth On 01/12/06, Paul McLanahan [EMAIL PROTECTED] wrote: Yeah.. you're right. Even

Re: [jQuery] Interface Draggables/Droppables: New approach

2006-11-28 Thread Giuliano Marcangelo
Slightly off topic, but I came across this method of ordering http://www.dancinginquicksand.com/targetorder/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] find table cell by text inside

2006-11-28 Thread Giuliano Marcangelo
$(#SomeID td).contains(sometext).addClass(someClass); On 28/11/06, smeranda [EMAIL PROTECTED] wrote: How do I use jquery to find a particular table cell based of the text inside the cell and add a .css class to the table cell? -- View this message in context:

Re: [jQuery] Stop using thickbox!

2006-11-26 Thread Giuliano Marcangelo
displays quicker, mark up is vastly more flexible/versatile/reusable. Regards Giuliano Marcangelo ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] What's wrong with this code? (Started on Firebug thread)

2006-11-18 Thread Giuliano Marcangelo
concur with Karl, this code works fine for me On 18/11/06, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Rick, I put your html/jquery into a file on my test server and gave it a shot. seems to work fine. Only difference in my page is that I put your custom jquery code right into the head of the

Re: [jQuery] Next generation WYSIWYG editor... maybe? am I missing something?

2006-11-16 Thread Giuliano Marcangelo
I do not know if anybody has viewed this new project, http://www.wymeditor.org/en/ which aims to produce nice clean code AND will be using jquery to power the application. Maybe it would be more productive for those who are interested in producing a nice editor to assist these guys in some way ,

Re: [jQuery] How to display error/validation messages?

2006-11-14 Thread Giuliano Marcangelo
Jorn,One idea for form validation (don't know how practical it would be to code)...would be that the next/following input is only enabled if the current input is successfully filled with the correct data.So the scenario would be that on inputting data into input No1, if the input is not validated

Re: [jQuery] new plugin: AnimateClass/animateStyle

2006-11-09 Thread Giuliano Marcangelo
Paul, works beautifully in FF.but in IE6 only Example1 works when clicking button Press Me...the other button Go Back does not function/has no effect.Examples 2 and 3 do not work at all... :-(On 09/11/06, Paul Bakaus [EMAIL PROTECTED] wrote: I'm not sure it's spectacular ;-)I think

Re: [jQuery] Simple hover effect.

2006-11-02 Thread Giuliano Marcangelo
Bradford,not 100% sure if this will do the trick.maybe one of the experts could verifyscript type=text/_javascript_ $(document).ready(function() { $(.item1).hover(function() {$(this).next().addClass(shift); }, function() {

Re: [jQuery] Visual jQuery Announcement

2006-10-28 Thread Giuliano Marcangelo
Scott, I have no problem whatsoever with yehuda's color scheme, but if you are having problems, why not use the wonderful firefox extension by Chris Pederick,the Web Developer Toolbar and disable yehuda's stylesheet and use your own.try this for starters.hides the header,and colors

Re: [jQuery] Why do i need a delay in $(document).ready when using the center plugin ?

2006-10-24 Thread Giuliano Marcangelo
Steven,maybe this page will be of some assistance toyouhttp://www.pmob.co.uk/pob/hoz-vert-center.htmgiuliano On 24/10/06, Truppe Steven [EMAIL PROTECTED] wrote: The problem is that i need to center it vertical and horizontal. And ihaven't found a crossbrowser way of doing that.The $(window).load

Re: [jQuery] Tabs plugin: custom structure

2006-10-24 Thread Giuliano Marcangelo
So using an unordered list for the tabs , we could paint the tabs using the sliding doors technique...good idea KlausOn 24/10/06, Klaus Hartl [EMAIL PROTECTED] wrote: Hence you could use an ordered list or whatever for your tabsPS: Make it something useful ;-)--

Re: [jQuery] jQuery API discussion

2006-10-18 Thread Giuliano Marcangelo
Anders,I have to disagree with your view about the readability of jquery. I have little to no knowledge of _javascript_...and the only reason that I started using jquery is because it is so simple to understand the basics (prototype and dojo are a foreign language to mebut jquery is plain

Re: [jQuery] fadeIn and fieldsets (pixel shifting bug)

2006-10-05 Thread Giuliano Marcangelo
Sam,try setting some padding to your fieldset.I tested with the following :-fieldset {padding:10px;}...and the movement stopsOn 04/10/06, Sam Collett [EMAIL PROTECTED] wrote: Update page.There is a way to prevent fields from moving when you mouse over them.Simply set cssText to

Re: [jQuery] New Plugin: mousewheel

2006-09-28 Thread Giuliano Marcangelo
Quote Andy Seems to work fine for me in IE6/PC. But I'm not sure what the difference between one and two is.Test1...the box will scroll out of view (off the top of the page)whereas Test2 will remain staticthe page does not scroll ___ jQuery mailing

Re: [jQuery] When / how did you find out about jQuery?

2006-09-27 Thread Giuliano Marcangelo
Found JQuery by chance in February after reading about John's victory in the coding contest on PPKserendipitydo not have a clue about using _javascript_ and want to learn, but I am very interested in CSS, so jQuery is absolutely perfect for me

Re: [jQuery] Tabs plugin update: autoheight, effects

2006-09-12 Thread Giuliano Marcangelo
Klaus, Tested on Windows2000, Firefox 1.5.0.6, and the content in the fragment does indeed overflow the container ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/