[jQuery] Re: Mike Alsup: media plugin question

2008-06-06 Thread Yereth
Thanks Mike.. nice work and great video there.. evolution of dance is definitely a favourite. Perhaps you can consider my suggestion about the width and height calculations... the code I added helps a lot to make sure your layout doesn't break or that one has to explicitly add the width and

[jQuery] overlay floating div

2008-06-06 Thread macsig
Hi guys, I'm trying to have a floating div than once triggered it doesn't push down the element below but it overlays them. Something between an accordion and a lightbox. Until now all my efforts have been useless, so do you have something to suggest to me? Thanks and have a nice day!

[jQuery] Checking for the next element then hiding it.

2008-06-06 Thread Mathew
Hi guys I want to do something like this. I want jQuery to hide the h3 objects when it detects that there are no p objects after it. My newb attempt: $('h3').next('p').hide(); But it does not seem to work. h3Title/h3 pParagraph/p h3Title/h3 h3Title/h3 pParagraph/p Any suggestions?

[jQuery] Re: How to replace one word with another when it's not alone in a cell?

2008-06-06 Thread Orkan
Hi, this should work: $(td:contains('comment')).each(function(){ $(this).text($(this).text().replace(/comment/, vote)); }); PS. if you want to prevent html entities being stripped out, then use .html() instead: $(this).html($(this).html().replace(/comment/, vote)); On Jun 5, 6:58

[jQuery] :eq selector broken?

2008-06-06 Thread Javier Martínez
Is selector :eq working correctly in the last version? I thought that was broken using it on my project, but I see now that the demo on http://docs.jquery.com/Selectors/eq#index is not working too.

[jQuery] Jquery Help

2008-06-06 Thread Sunil Nair
I have array like this... I am fetching the values in the array format... in search.php page, if i dont have any values in this array how can i show the Message There is no value; in autocomplete in jquery.. Here is the Jquery code: $(#patientsearchresults).autocomplete(/SSHD/patientsearch/

[jQuery] how to make datePicker play nice with other plugin

2008-06-06 Thread c.sokun
I have problem try to combine jquery.datePicker and jquery.Form plugin. If I code jquery.Form first and jquery.datePicker next Form work but datePicker not and vise versa. Is there a way to make it compatible with each other?

[jQuery] Re: click function doesn't work on dynamic content?

2008-06-06 Thread Jon Reed
Might be worth looking into the livequery plugin too J On Jun 6, 1:43 am, Richard D. Worth [EMAIL PROTECTED] wrote: Take a look at: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_st... If I've understood you're problem, it's a fairly common one that stems from the fact

[jQuery] possible bug when parsing xml on IE7?

2008-06-06 Thread MacFly!
Hello, First, I use the latest version of JQuery : 1.2.6 I try to get elements from xml returned by an ajax call. It's works fine with FF2 but not with IE7. here is my simple code : $.ajax({ type: POST, url: myURL.do, data:

[jQuery] Re: get Request doesnt work in IE7

2008-06-06 Thread Jan S
Yes there is supposed to be a ;, and no, this does not solve the problem. Thanks for the try, though. Any other suggestions? As I said, the script has no problems in FF. Just IE7 wont work. On 5 Jun., 20:32, Carl Von Stetten [EMAIL PROTECTED] wrote: Don't know if this is the problem, but you're

[jQuery] AJAX request pending after TCP connection closed

2008-06-06 Thread Greg
Hi everybody! I use jQuery 1.2.6 and I encounter a little issue. I try to do some COMET (server push), here is an overview of my code (simplified) : jQuery.ajax({ type: POST, url: request, dataType: json, data: myJsonData, success: function(data) {

[jQuery] Re: overlay floating div

2008-06-06 Thread Richard D. Worth
$(#myDiv).css({ position: 'absolute' }); - Richard On Fri, Jun 6, 2008 at 2:04 AM, macsig [EMAIL PROTECTED] wrote: Hi guys, I'm trying to have a floating div than once triggered it doesn't push down the element below but it overlays them. Something between an accordion and a lightbox.

[jQuery] Re: :eq selector broken?

2008-06-06 Thread Richard D. Worth
That demo works fine for me. Tested in FF2, IE6, Safari3 on XP. - Richarde On Fri, Jun 6, 2008 at 5:54 AM, Javier Martínez [EMAIL PROTECTED] wrote: Is selector :eq working correctly in the last version? I thought that was broken using it on my project, but I see now that the demo on

[jQuery] Documentation for Version 1.2 (Download)

2008-06-06 Thread gogui
Hello, I am looking for documentation I can download and have accessible offline. I understand that visualJQuery and JQuery 1.1.2 API Browsers are available for download, however, they are outdated. Is there and RSS feed for the documentation provided at JQuery.com itself? (I am willing to port

[jQuery] Re: [validate] Validating against a combination of fields

2008-06-06 Thread kapowaz
On Jun 5, 5:29 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: I've added a short explanation and an example here:http://docs.jquery.com/Plugins/Validation#Validating_multiple_fields_... Excellent, thanks! I'll give that a go.

[jQuery] Handling errors when ajax returns html

2008-06-06 Thread sparkpool
I have some server-side code that responds to certain ajax requests by returning the html of new rows to insert into an existing table. This works really well, but I've been thinking about ways to handle errors on the server side. By errors I mean both actual bugs, and business rule violations

[jQuery] [validate] Specifying custom highlight/unhighlight methods

2008-06-06 Thread kapowaz
I'm trying to specify a couple of custom methods for highlighting/ unhighlighting valid/invalid fields on my form, but I'm getting some strange behaviour, which I'm not sure is due to me misunderstanding how these methods are supposed to be implemented, or if it's just buggy. My custom methods

[jQuery] Re: :eq selector broken?

2008-06-06 Thread Hilmar Kolbe
What's broken/wrong? Demo seems functional to me 2008/6/6 Javier Martínez [EMAIL PROTECTED]: Is selector :eq working correctly in the last version? I thought that was broken using it on my project, but I see now that the demo on http://docs.jquery.com/Selectors/eq#index is not working too.

[jQuery] Re: Documentation for Version 1.2 (Download)

2008-06-06 Thread Richard D. Worth
You may want to take a look at this thread: Wiki xml exporter http://groups.google.com/group/jquery-dev/browse_thread/thread/d08934f3d4ae40 It's a few months old, so I don't know how up-to-date any referenced code might be (for converting from mediawiki to xml), but at the very least there are

[jQuery] Re: Checking for the next element then hiding it.

2008-06-06 Thread Karl Swedberg
Hi Mathew, It looks like your attempt will hide the next p rather than the h3. A filter function is probably your best bet in this situation: $('h3').filter(function() {return !$(this).next('p'); }) Hope that helps. --Karl Karl Swedberg www.englishrules.com

[jQuery] Re: possible bug when parsing xml on IE7?

2008-06-06 Thread Karl Swedberg
Not sure if this is the problem, but it looks like you're missing a closing quotation mark for your data value: data: hidden=getValue, // -- added quotation mark --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 6, 2008, at 6:57 AM, MacFly! wrote:

[jQuery] Re: superfish help

2008-06-06 Thread Joel Birch
Hi Warren, For those types of menu, I work around this by adding an unnecessary child to main nav items that otherwise would have none. I use the extra child to point to the same page as it's parent and also provide slightly more info in the link text. An example of this can be seen here:

[jQuery] Re: Handling errors when ajax returns html

2008-06-06 Thread Mike Alsup
I have some server-side code that responds to certain ajax requests by returning the html of new rows to insert into an existing table. This works really well, but I've been thinking about ways to handle errors on the server side. By errors I mean both actual bugs, and business rule

[jQuery] Re: :eq selector broken?

2008-06-06 Thread Javier Martínez
Richard D. Worth escribió: That demo works fine for me. Tested in FF2, IE6, Safari3 on XP. - Richarde On Fri, Jun 6, 2008 at 5:54 AM, Javier Martínez [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Is selector :eq working correctly in the last version? I thought that was

[jQuery] conditional events

2008-06-06 Thread daveyourself
I'm trying to trigger an event only when a condition is met, $(document).ready(function() { $('#leftScroll').click(function() { $('#scrollContent') .animate( {

[jQuery] Re: :eq selector broken?

2008-06-06 Thread Hilmar Kolbe
works on IE8/XP and SeaMonkey 2.0/XP - doesnt work (no table displayed) with Opera 9.27 and 9.5 on Ubuntu (don't know if it ever did) 2008/6/6 Richard D. Worth [EMAIL PROTECTED]: That demo works fine for me. Tested in FF2, IE6, Safari3 on XP. - Richarde On Fri, Jun 6, 2008 at 5:54 AM,

[jQuery] Get Global CSS Value

2008-06-06 Thread Thommo
I've looked everywhere and it should be simple I know you can get current /actual css value for an element assigned to class ie: via $('myitem).css('cssvalue') But I want to have a stylesheet that contains my own custom values which I read and then assign to my page elements.FYI If I create a

[jQuery] Re: :eq selector broken?

2008-06-06 Thread Hilmar Kolbe
explain not working 2008/6/6 Javier Martínez [EMAIL PROTECTED]: Richard D. Worth escribió: That demo works fine for me. Tested in FF2, IE6, Safari3 on XP. - Richarde On Fri, Jun 6, 2008 at 5:54 AM, Javier Martínez [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Is

[jQuery] Re: possible bug when parsing xml on IE7?

2008-06-06 Thread MacFly!
Thanks for your answer Karl, but it doesn't fix it. Apparently somebody has also the same problem: http://groups.google.com/group/jquery-en/browse_thread/thread/5c00ab5683645982/f0d79fa48a074622?hl=enlnk=gstq=xml+IE#f0d79fa48a074622 On Jun 6, 2:18 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Not

[jQuery] Re: :eq selector broken?

2008-06-06 Thread Javier Martínez
Hilmar Kolbe escribió: explain not working 2008/6/6 Javier Martínez [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]: Richard D. Worth escribió: That demo works fine for me. Tested in FF2, IE6, Safari3 on XP. - Richarde On Fri, Jun 6, 2008 at 5:54 AM, Javier

[jQuery] Re: conditional events

2008-06-06 Thread Mike Alsup
I'm trying to trigger an event only when a condition is met,         $(document).ready(function() {                 $('#leftScroll').click(function() {                                     $('#scrollContent')                                 .animate(                                        

[jQuery] Re: String Manipulation

2008-06-06 Thread Andy Matthews
Split is built into Javascript itself. Since jQuery merely adds methods, you can mix and match split() with jQuery code. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Sent: Thursday, June 05, 2008 6:50 PM To: jQuery (English)

[jQuery] Re: possible bug when parsing xml on IE7?

2008-06-06 Thread Mike Alsup
Thanks for your answer Karl, but it doesn't fix it. Apparently somebody has also the same problem:http://groups.google.com/group/jquery-en/browse_thread/thread/5c00ab5... Are you acccessing myURL.do through a web server or directly off a local filesystem? Here's a sample page that shows it

[jQuery] Re: :eq selector broken?

2008-06-06 Thread Hilmar Kolbe
any errors from firebug? maybe conditional breakpoints in the debugger? 2008/6/6 Javier Martínez [EMAIL PROTECTED]: Hilmar Kolbe escribió: explain not working 2008/6/6 Javier Martínez [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]: Richard D. Worth escribió: That demo

[jQuery] strange bug with IE and .html()

2008-06-06 Thread Shaun
When trying to get some html back from part of a document I get jquery attributes included in the html (IE only) has anyone else seen this and how did they fix it short of regex eg elements that have events bound to then have button jquery1234567=1 etc..

[jQuery] form effect

2008-06-06 Thread Frika
Hello @all, I have made a mailform and if the user click on the submit button the mailform should first dissapear before post the message. I had tried the follow way: $(form).submit(function () { if ($(#div1).is(:visible)) {

[jQuery] Re: Documentation for Version 1.2 (Download)

2008-06-06 Thread Sam Collett
There is a special page for converting WikiText to XML: http://docs.jquery.com/Special:Wiki2XML If the Wiki has built in features for converting to XML, perhaps it could be leveraged somehow? As DocBook is one of the output formats, there are more options for creating documentation. If

[jQuery] Re: form effect

2008-06-06 Thread Mike Alsup
I have made a mailform and if the user click on the submit button the mailform should first dissapear before post the message. I had tried the follow way: $(form).submit(function () {                         if ($(#div1).is(:visible)) {                                 $(#div1).animate({  

[jQuery] Re: :eq selector broken?

2008-06-06 Thread Javier Martínez
No, nothing in Firebug. And I have tested it again and same error. First load OK, refresh WRONG. Closed Firefox and openend again and the result is the same.(windows use :P ) Tested it now with IE7 - OK IE6 - OK Safari - OK Opera - doesn't work for me. The table is not

[jQuery] Superfish help

2008-06-06 Thread jwadenpfuhl
Is there a way to have a delay on the mouseover event for a superfish menu?

[jQuery] Tab Mouse Over

2008-06-06 Thread Donald J Organ IV
I have the following: div class=TabContainer div class=leftcorner/div div class=content/div div class=rightcorner/div /div I need to be able to change the classes for leftcorner, content, and rightcorner on mouseover of TabContainer?? Any on know of a simple way to do this??

[jQuery] Re: Tab Mouse Over

2008-06-06 Thread Richard D. Worth
You could do something like this, with .hover (give it a mouseover and mouseout function): $(.TabContainer).hover(function() { $(.leftcorner, .content, .rightcorner, this).addClass(hover); }, function() { $(.leftcorner, .content, .rightcorner, this).removeClass(hover); }); but if you have

[jQuery] insert td before previous td

2008-06-06 Thread Javier Martínez
There is some short code way to insert the fourth td of a table before the second td? Thanks

[jQuery] Re: insert td before previous td

2008-06-06 Thread Richard D. Worth
$(table td:eq(3)).insertBefore($(table td:eq(1))); - Richard On Fri, Jun 6, 2008 at 10:57 AM, Javier Martínez [EMAIL PROTECTED] wrote: There is some short code way to insert the fourth td of a table before the second td? Thanks

[jQuery] Re: [validate] Specifying custom highlight/unhighlight methods

2008-06-06 Thread Jörn Zaefferer
The latest release has a bug where unhighlight is called whenever validating an element, instead of only when the valid-state changed. This is fixed in the latest revision, please give that a try: http://dev.jquery.com/view/trunk/plugins/validate/ Let me know if that helps. Jörn On Fri, Jun 6,

[jQuery] Re: Superfish help

2008-06-06 Thread jwadenpfuhl
To all who would read this, nevermind. I did read a little closer in the documentation for Superfish and it mentions the ability for Superfish to integrate with hoverIntent.js which has the delay on mouseover functionality...rock on. Thank you Joel Birch(Superfish) and Brian

[jQuery] Re: insert td before previous td

2008-06-06 Thread Javier Martínez
Richard D. Worth escribió: $(table td:eq(3)).insertBefore($(table td:eq(1))); - Richard On Fri, Jun 6, 2008 at 10:57 AM, Javier Martínez [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: There is some short code way to insert the fourth td of a table before the second td?

[jQuery] Re: insert td before previous td

2008-06-06 Thread Karl Swedberg
In that case, try this... $('table tr').each(function() { $('td:nth-child(4)', this).insertBefore($('td:nth-child(2)', this)); }); --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 6, 2008, at 11:18 AM, Javier Martínez wrote: Richard D. Worth

[jQuery] Mouse Event and Title Display

2008-06-06 Thread jasonruyle
I'm in the processes of creating a gallery with JCycle. I was given a request to have: gallery with forward/back arrows. small grey box thumbnails for each image. title displayed for each image/thumbnail. onhover of another non-active thumbnail, the name changes to that, onmouse out, it goes

[jQuery] Re: JqModal

2008-06-06 Thread highjo
Hello!guys! this time i waited more than tow days for a little help.i've trying to figure out how to do it with the belief that i would get helped.A part from the unanswerd post i'll like to ask if it possible to make a modal window popup wihout a mouse click like on load and especially if in a

[jQuery] Expected behaviour of :visible and :hidden?

2008-06-06 Thread anastasia
I'm hoping someone can clarify the expected behaviour of the :visible and :hidden filters when the parent element is hidden(display: none). Will these filters consider these invisible-to-the-user elements visible, or hidden? For example: div id=hidden-div-1 style=display:none; div

[jQuery] Re: click function doesn't work on dynamic content?

2008-06-06 Thread Ariel Flesler
That article in the FAQ does mention LiveQuery. -- Ariel Flesler http://flesler.blogspot.com On 6 jun, 05:56, Jon Reed [EMAIL PROTECTED] wrote: Might be worth looking into the livequery plugin too J On Jun 6, 1:43 am, Richard D. Worth [EMAIL PROTECTED] wrote: Take a look at:

[jQuery] Re: Gmail Progress Bar

2008-06-06 Thread P-Do
There is a progress bar jquery plugin (I'm sure there must be more too) here: http://digitalbush.com/projects/progress-bar-plugin On May 24, 6:11 am, [EMAIL PROTECTED] wrote: Recently Google Added a Progress bar in gmail .. without any SWF uploader and any Flashes ... And it works in IE and

[jQuery] Re: Mouse Event and Title Display

2008-06-06 Thread jasonruyle
Ended up being an easy fix. Added: $(.thumbnail).mouseout ( function onAfter() { var activeSlide = $(.activeSlide).attr(title); $(h4).html( + activeSlide + ); return false; }); Only new problem is that on Mac / Safari, it doesn't change the names at all. But, every other

[jQuery] Re: Expected behaviour of :visible and :hidden?

2008-06-06 Thread Liam Byrne
My understanding is that something visible that's inside something hidden will report that it's visible Otherwise, if you were to hide the hidden-div-1 and then show it, the internal inside-hidden-div would also need to be explicitly re-shown ? Maybe an inherit might get around this -

[jQuery] jQuery Cycle - Custom scrollHorz

2008-06-06 Thread Andrej
Hi, Was hoping that some you of kind folks would enlighten me as to how to do this with the awesome Cycle plugin. I am using the scrollHorz fx, and want to have the incoming and outgoing slides visible within their container...So it would be like a scrolling gallery. I've played around with some

[jQuery] Plotkit Port?

2008-06-06 Thread Seth - TA
I saw this when looking for chart functionality http://www.liquidx.net/plotkit/, but wasn't sure if anyone was looking to port it, or has? I saw the Chart plugin, but says 0.1 which says to me that it is pretty far off, although the demos looked alright. Just wondering. Seth

[jQuery] Re: Plotkit Port?

2008-06-06 Thread Rey Bango
Seth, Try this: http://code.google.com/p/flot/ Rey Seth - TA wrote: I saw this when looking for chart functionality http://www.liquidx.net/plotkit/, but wasn't sure if anyone was looking to port it, or has? I saw the Chart plugin, but says 0.1 which says to me that it is pretty far off,

[jQuery] Re: Superfish issue: statusbar URL won't show when hovering second tier links

2008-06-06 Thread Ruud
Hi Joel, Thanks for your respond. I did not provide you with information about the situation when this behaviour occurs: On windows XP using Firefox 2.0. Strangly enough when using IE 6 and 7, it does show the url on the statusbar. Looks like a crossbrowser issue within jquery? Anyway,

[jQuery] Re: strange bug with IE and .html()

2008-06-06 Thread Ariel Flesler
Yes that's the expando. It's added when $.fn.html() calls $.fn.empty() and $.fn.empty() calls $.data(). What problem is that causing ? -- Ariel Flesler http://flesler.blogspot.com On 6 jun, 10:32, Shaun [EMAIL PROTECTED] wrote: When trying to get some html back from part of a document I get

[jQuery] Re: possible bug when parsing xml on IE7?

2008-06-06 Thread Ariel Flesler
dataType needs to be 'xml', 'html', 'json', etc. Not the content type. -- Ariel Flesler http://flesler.blogspot.com On 6 jun, 10:30, Mike Alsup [EMAIL PROTECTED] wrote: Thanks for your answer Karl, but it doesn't fix it. Apparently somebody has also the same

[jQuery] Re: $. get xml on IE, does not work....

2008-06-06 Thread Ariel Flesler
What about: ? (...) header('Content-type: text/xml'); // = echo XML ?xml version=1.0 encoding=iso-8859-2? message content{$c}/content /message XML; ? -- Ariel Flesler http://flesler.blogspot.com On 10 abr, 11:11, Totha [EMAIL PROTECTED] wrote: Hello guys, Please help. Belove works

[jQuery] Re: Documentation for Version 1.2 (Download)

2008-06-06 Thread Remy Sharp
Hi, I converted the wiki output to drive my API browser from it, and I'm in the process of decoupling this from the front end to create a stand alone engine that will allow you to query the API docs - for uses in AIR apps, Dashboard widgets, iGoogle widgets, etc. The current API browser (online

[jQuery] Problem with jQuery performance

2008-06-06 Thread daveJay
Hi all, I'm desperate for a solution to a major performace problem I've got. Basically, I'm trying to do something along the lines of what was done here with Flash: http://karankapoor.com/ I've got the image centering and scaling worked out. The problem is when I try to do a dissolve between

[jQuery] Re: Gmail Progress Bar

2008-06-06 Thread pedramphp
I checked this Progress Bar Long ago but this is a sample use of it there is no Server LINK and Fetching data In it and there is no Process To figure how much data has been download so what should we do how did the google Guys did this On Jun 6, 8:18 pm, P-Do [EMAIL PROTECTED] wrote:

[jQuery] Get Custom/global CSS Value

2008-06-06 Thread Thommo
I know I can get the CSS value for a standard CSS properties For instance $('#myelement').css('Width) But I want to create my own CSS properties eg: (Css Entry) a1FormDate { a1Type:Date a1Required:True } The problem is that if I try and retrieve this value by the above methods I get a null

[jQuery] Re: Shadow jQUery

2008-06-06 Thread pedramphp
is there any Simple Example of the Shadow that we can Download it and Compatible with 1.2.6 On May 28, 8:21 pm, Glen Lipka [EMAIL PROTECTED] wrote: The demo doesn't seem to work. Not sure. Glen On Wed, May 28, 2008 at 9:35 AM, owen [EMAIL PROTECTED] wrote: Is this obsolete?

[jQuery] jqModal callback

2008-06-06 Thread Jan Limpens
Hello, I am in the process of writing some scripts that makes use of JqModal ( http://dev.iceburg.net/jquery/jqModal/). What I have to do is the following: The web page contains numerous ajax forms that have as their target a modal div . If the user clicks on the submit button, the response is

[jQuery] How to make a resize window to clients display settings.

2008-06-06 Thread Aaron
Hi I need help how would you grab the cliens display settings and base of that give them a website in that display setting. Like if I make about like 5 or 6 different layouts of the same website for different display settings and have them use the one that fits with there display settings.

[jQuery] Re: Problem with jQuery performance

2008-06-06 Thread daveJay
Upon further investigation, it's the Mac Firefox that's giving me grief, the performance while still a tad hampered is acceptable. I guess there's not much I can do about it except hope that things will improve in the Mac FF3.

[jQuery] Re: Get Custom/global CSS Value

2008-06-06 Thread Richard D. Worth
Are you familiar with the metadata plugin? Rather than putting the custom properties in your stylesheet, you put it in the value of the class attribute: http://plugins.jquery.com/project/metadata Might be worth a look. - Richard On Fri, Jun 6, 2008 at 7:12 PM, Thommo [EMAIL PROTECTED] wrote:

[jQuery] Search plugin?

2008-06-06 Thread Shawn
I'm in the middle of creating a search page for my app that resembles something like the custom query capability of Trac. Before I go t far, is anyone aware of a nice simple package/plugin for this sort of thing? I don't recall seeing anything like this on the plugin page recently...

[jQuery] Re: Problem with jQuery performance

2008-06-06 Thread Dave Methvin
Upon further investigation, it's the Mac Firefox that's giving me grief, the performance while still a tad hampered is acceptable. I guess there's not much I can do about it except hope that things will improve in the Mac FF3. Possibly the unneeded fadeOut of all images, even the ones

[jQuery] Re: Get Global CSS Value

2008-06-06 Thread Dave Methvin
But I want to have a stylesheet that contains my own custom values which I read and then assign to my page elements.FYI If I create a CSS class with custom properties and assign to an existing element then while I can get valid CSS properties I cannot get the custom value (except with IE)

[jQuery] Re: Problem with jQuery performance

2008-06-06 Thread DaveG
I made some minor code and css changes to your template, but still didn't manage to get a smooth fade effect, so I'm not sure the issue lies there alone. You might want to check http://brainerror.net/scripts/javascript/blendtrans/ -- there is a pretty smooth image fade effect that seems to

[jQuery] Re: Problem with jQuery performance

2008-06-06 Thread DaveG
Just found this jQ fade technique: http://jqueryfordesigners.com/image-cross-fade-transition/ DaveG wrote: I made some minor code and css changes to your template, but still didn't manage to get a smooth fade effect, so I'm not sure the issue lies there alone. You might want to check