[jQuery] Re: reading values from HTML tables

2008-10-30 Thread Shawn
Correction. Console.log works with FireBUG, which is a FireFOX plugin... sighs... I should just go to bed.. :) Shawn On Friday 31 October 2008 00:45:08 Shawn wrote: > I *think* the following will get you started: > > $("#veh_odometer").children("tr").each( function () { > //'this' refers to

[jQuery] Re: reading values from HTML tables

2008-10-30 Thread Shawn
I *think* the following will get you started: $("#veh_odometer").children("tr").each( function () { //'this' refers to the current tr var address = $("td:eq(2)", this).text(); console.log("VALUE: " + address); // note: console.log works in Firefox. // Substitue an alert if desired

[jQuery] Re: reading values from HTML tables

2008-10-30 Thread Thomas
It seems you not using jQuery... Give an ID for the table and use jQuery! It will be easyer! ;)

[jQuery] Is it impossible to popup a PDF print dialog?

2008-10-30 Thread Girish Venkatachalam
Dear all, I know this is not directly related to jQuery but I wish to accomplish this task. My googling suggests that window.print() only prints the currently displayed html page. I wish to print the PDF that is linked to. How do I do that? I think opening an iframe can do it. If possible how

[jQuery] reading values from HTML tables

2008-10-30 Thread GrootBaas
Hi all, Any help would really be much appreciated. I have a table, how can I read the cell values of the table ... Currently I have ... function test () { var address; var i; for (i=1; i

[jQuery] Is there a way to update an element while you're dragging it?

2008-10-30 Thread tecmo
i'm using the sortables and dragging around div containers with text boxes. I change the value of the text boxes while dragging, but the changed values don't appear on the item you're dragging. Only when you drop the item do the changes appear on the dragged item. Is there a way to refresh the

[jQuery] Re: please check website before launch

2008-10-30 Thread ricardobeat
I think a good compromise would be loading only the few first images for each set, an arbitrary number, then load the rest on demand as each set is opened. Simple and effective, without wasting bandwidth, and should be easier to do. On Oct 30, 8:22 pm, "Alexandre Plennevaux" <[EMAIL PROTECTED]> w

[jQuery] Re: ThickBox Bug - Back Button in IE

2008-10-30 Thread OscarGodson
ripcurlksm wrote: > > I’ve had some users that accidentally hit back on their browsers when > trying to close the thickbox (instead of hitting the Close Button)... is > there a way to make it so the user can click back on their browser and > it’ll close the thickbox, instead of the browser goi

[jQuery] Advanced jQuery Animation Problem

2008-10-30 Thread OscarGodson
This is a fairly advanced jQuery animation I am doing on a site I am doing, but I know it's failing at alert('2'); as you will see it in the comments. I have tried TONS of things and nothing is working, but it's only not working after a user pushes the back button. The entire thing totally tweaks

[jQuery] Re: jquery ui tabs - screen jumps to top when clicked

2008-10-30 Thread Ed
Thanks Klaus, I added your code to my example and I still can't make it work as I want. The screen is scrolling to the top when a tab is clicked. I have equal content inside each tab. Here is my simple example. Please take a look. http://5bosses.com/examples/tabs/sample_tabs.html Am I doing s

[jQuery] Re: Using JQ to parse strings (IE?)

2008-10-30 Thread Kru
Hey, make sure you get the case right - IE doesnt play nicely with wrong cases (ie lowercase instead of uppercase) in IDs and classes. On Oct 31, 12:37 pm, the_woodsman <[EMAIL PROTECTED]> wrote: > Hi, > I hope someone has some tips/advice on this one! > > I've noticed my code has an issue in IE

[jQuery] Re: Jquery slow

2008-10-30 Thread Karl Rudd
You'll need to be more specific. It's also better to provide an actual example page. Karl Rudd On Fri, Oct 31, 2008 at 7:54 AM, Byte1234 <[EMAIL PROTECTED]> wrote: > > When I use Jquery on server controls in ASP.Net , I see the slowness > in animation starting. But if I use the client controls ,

[jQuery] Re: pdf preview in modal window

2008-10-30 Thread Karl Rudd
PDFs aren't something a browser can render without the help of a plugin, like Acrobat Reader. So you could display the PDF if you can embed the plugin (usually in an IFRAME). Unfortunately this usually means that the plugin will download the whole PDF anyway, so there's little point in providing a

[jQuery] Re: IE7 change event not bubbling

2008-10-30 Thread Chad B.
I did eventually figure out how to get where I wanted to go. The key was capturing the blur event on each field rather than onChange. The change event does not bubble, period. I had to make a few adjustments to my code to simulate an change using the blur event, but it was pretty straightforwar

[jQuery] Re: validate - integrating with wordpress

2008-10-30 Thread Mason
Henry, this should help: http://nettuts.com/tutorials/wordpress/adding-form-validation-to-wordpress-comments-using-jquery/ On Oct 30, 6:54 pm, Henry <[EMAIL PROTECTED]> wrote: > I'm sorry. Maybe I'm over my head here. But I found a a WordPress site > that had the jquery-validate installed and de

[jQuery] pdf preview in modal window

2008-10-30 Thread negsy
Hello, I am looking for a plugin that would allow me to show the contents of a pdf as a modal window. The idea is that the user can preview the contents of a pdf and then click 'download' if they really want to download it, or just exit the window if they don't. Does anyone know if any of the pl

[jQuery] Re: autocomplete - other items on web page showing through autocomplete list. Only in IE6

2008-10-30 Thread MorningZ
"Do you have any idea why this happens? " It's because IE6 doesn't respect "z-index" on certain DOM objects On Oct 30, 6:27 pm, GrootBaas <[EMAIL PROTECTED]> wrote: > Hi Dan, > > Thank you for that insight. I will try it out... > > It all just seems a bit tedious. Do you have any idea why th

[jQuery] Using JQ to parse strings (IE?)

2008-10-30 Thread the_woodsman
Hi, I hope someone has some tips/advice on this one! I've noticed my code has an issue in IE. I try to apply JQ to a string, as so: $(htmlString).find(someSelector) //htmlString is basically an entire page, someSelector is an ID But IE never finds the elements, even though FF does. I assume

[jQuery] Re: Howto Question

2008-10-30 Thread Shawn
Off the top of my head, and without looking at the site in question (sorry, a bit pinched for time...) Build your HTML. Use CSS to position things where you want. For example, a DIV with an absolute position. Then when you are happy with the positionin/layout, set the container to display:

[jQuery] Re: Block UI bugs in IE/Safari when used in .ready()

2008-10-30 Thread Mike Alsup
> What was wrong actually ? Why my version with setTimeout didn't work ? > Seems pretty basic, block UI, execute some isntructions, unblock. The point of using setTImeout is the give the browser a chance to render the new DOM updates before diving into process-intensive work. So you block first,

[jQuery] validate - integrating with wordpress

2008-10-30 Thread Henry
I'm sorry. Maybe I'm over my head here. But I found a a WordPress site that had the jquery-validate installed and decided to see if I could make it work on my site, but I'm really confused to how to install it. Does it work as a plug-in or do I have to hard code it in the html of the pages. Again

[jQuery] Howto Question

2008-10-30 Thread searly
Hi there, sorry if this is the wrong place to post this, I am fairly new to jQuery and wonder if somebody could help me. On the front page of the JQuery website are three links 1. Lightweight Foot Print 2. CSS3 Compliant 3. Cross-browser When hovering over the links an area fades in (transpar

[jQuery] Re: Script like this site: http://ringvemedia.com/

2008-10-30 Thread Thasmo
Actually this effect is not done using JS, it's just simple CSS. Have a look at the element with the id #bg.

[jQuery] Re: Script like this site: http://ringvemedia.com/

2008-10-30 Thread Alexandre Plennevaux
i think there is first and foremost a clever use of CSS, because if i disable javascript, the effect is still there. Anyway, what's nice is this proportional resizing of the image, according to the viewport dimensions. Then, the relevant code is this: kina = { doc: { x: 0, y: 0 }, fix: f

[jQuery] Re: Block UI bugs in IE/Safari when used in .ready()

2008-10-30 Thread debussy007
Thank you !! I tried the following : setTimeout(function() { $.blockUI(); searchLocDep( ) searchLocArr( ) searchLocInt( ... ) $.unblockUI(); }, 200); but it didn't help, but your suggestion: $.blockUI(); setTimeout(function() { searchLocDep( ) sea

[jQuery] Re: autocomplete - other items on web page showing through autocomplete list. Only in IE6

2008-10-30 Thread GrootBaas
Hi Dan, Thank you for that insight. I will try it out... It all just seems a bit tedious. Do you have any idea why this happens? Regards, On Oct 31, 12:46 am, "Dan Switzer" <[EMAIL PROTECTED]> wrote: > > I would just like to thank you all in advance for taking time to help > > me. > > > I am

[jQuery] Re: please check website before launch

2008-10-30 Thread Alexandre Plennevaux
@criteriadesign " Once you have done that, you just need to load the images in the background and display a functioning website for the visitor." I'm trying to see how i could modify my app so thati t works like this: 1/ load the json data 2/ generate the barcode (a UL with LI's , each LI is a

[jQuery] Re: jquery ui tabs - screen jumps to top when clicked

2008-10-30 Thread Klaus Hartl
Well, that doesn't seem to be an error but standard browser behavior. If you switch to a tab that causes the page to not have a scrollbar, the tabs appear to jump because the browser must rerender the page in a way as if the scrollbar were moved to the top. The browser just can't do anything else.

[jQuery] Script like this site: http://ringvemedia.com/

2008-10-30 Thread Gabriel Tadeu
I visited this site and really like the image resizing... the original pic is big, resizing with bigger resolutions (like 1440x900). BUT the actual script is in moo tools, how create the same effect using jQuery? thanks!

[jQuery] Re: Question about Anchor-based URL navigation with jQuery

2008-10-30 Thread McKaulick
Thank you for your reply Ariel, actually I found the bug. From the trigger, I am calling 3 javascript function and when the page was loading, there's an element who was undefined, therefore it was creating a javascript error that was stopping the good execution of the trigger function. This quick

[jQuery] Re: How to display random content from external .html file?

2008-10-30 Thread ricardobeat
This should work: 1. find out how many quotes you have (obj.length) 2. get a random number 3. hide all, and then select and show one of them using eq(index) - http://docs.jquery.com/Traversing $('#quotesContainer').load('quotes.htm',function(){ var $quotes = $(this).find('p.text'); v

[jQuery] Re: Question about Anchor-based URL navigation with jQuery

2008-10-30 Thread Ariel Flesler
You can probably use one of these plugins (or both combined). http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html http://flesler.blogspot.com/2008/02/jqueryserialscroll.html The first one should do, but you can apply the 2nd for prev/next navigation. -- Ariel Flesler http://flesler.bl

[jQuery] ui.slider issues with .data() and moveTo

2008-10-30 Thread kape
I'm using jQuery 1.2.6 and ui 1.5.2 and am trying to implement a slider with two handles. When one handle moves too close to the other, I want the other handle to move too in order to keep a minimum range. I found two things that don't necessarily work as they should: 1. When flipping dynamical

[jQuery] Re: Resolving Namespace conflicts

2008-10-30 Thread Ariel Flesler
jQuery plays well with other libraries and even with other jQuery instances. http://docs.jquery.com/Core/jQuery.noConflict There's a known incompatibility with Prototype 1.7.x (fixed by them on 1.8.x). Our last revision on trunk can co-exist even with that conflicting version of Prototype. http

[jQuery] Re: Scroll to top animate in Opera 9+

2008-10-30 Thread Ariel Flesler
Well yes, that's not the better way of doing that. While it's quite popular, it's not the best solution. While it works well in most browsers, opera lets you scroll the window both by using the body or the documentElement (html). So you have 2 different running animations, competing with each oth

[jQuery] Re: jQuery Problem - Animated scrolling for in page links

2008-10-30 Thread Ariel Flesler
Try this plugin: http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html -- Ariel Flesler http://flesler.blogspot.com On Oct 30, 9:01 am, mrleesimpson <[EMAIL PROTECTED]> wrote: > Hi, > > I'm fairly new to jQuery and having some problems with getting a > plugin to work with Wordpress. > >

[jQuery] Re: Help with google chart

2008-10-30 Thread Mike Alsup
> I want to scale the line graph according to the maxvalue and the > minvalue so that the graph is appropriate with respect to scale. Any > help how can I do this. > > I mean if the maxvalue is 10 and minvalue is 0 then I want the graph > range to be 0-10 and not 0-100 which it is present(thats my

[jQuery] Re: jcarousel reset

2008-10-30 Thread XS
Bob, I'm not clear as to how this works, the code you supplied. I'm running into the same situation and Damien. but can't seem to get it to work correctly. If you have any in site as to what i can do or make it work, it would be appreciated! here are is the zip file: http://www.wikiupload.com/do

[jQuery] Re: jquery ui tabs - screen jumps to top when clicked

2008-10-30 Thread Nicky
I think I know what's wrong with the Tabs-script, but not where and what needs to be done. The problem seems to be tabs that contains less text and doesn't need the vertical scrollbar. When you have both large and small tabs the error occurs. See this page for more info: http://www.sandstream.se

[jQuery] Jquery slow

2008-10-30 Thread Byte1234
When I use Jquery on server controls in ASP.Net , I see the slowness in animation starting. But if I use the client controls , it is fast. Is there any solution for this...???

[jQuery] Re: jQuery Problem - Animated scrolling for in page links

2008-10-30 Thread mrleesimpson
Adexcube, Thanks for this but this still isn't working. I'm starting to think that I must be doing something super wrong. I have this: $('html, body').animate({scrollTop:0}, 'slow'); In the header of my theme. Is that correct? On Oct 30, 2:36 pm, adexcube <[EMAIL PROTECTED]

[jQuery] Re: blockUi and Jquery animate function problem (IE7 of course)

2008-10-30 Thread asiarlis
On Oct 30, 8:15 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > Try changing your block call to something like this: > > > > var $holder = $('#sendToFriendHolder'); > > > if ($.browser.msie) > > >     $holder[0].style.removeAttribute('filter'); > > > $holder.block({ > > >    // block options her

[jQuery] Re: Superfish extra request

2008-10-30 Thread Nathan
See these articles: http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/ http://www.jaymeblackmon.com/preloading-css-hover-images Hope that helps. On Oct 30, 9:00 am, adexcube <[EMAIL PROTECTED]> wrote: > Hi, > I modified the skin of the menu using png images and I reali

[jQuery] ThickBox Bug - Back Button in IE

2008-10-30 Thread ripcurlksm
I’ve had some users that accidentally hit back on their browsers when trying to close the thickbox (instead of hitting the Close Button)... is there a way to make it so the user can click back on their browser and it’ll close the thickbox, instead of the browser going back to the previous page in

[jQuery] Re: attr('title') giving odd renaults

2008-10-30 Thread Nathan
Damn, don't know how I missed that. Thanks for pointing that out. Appreciate it. On Oct 30, 9:53 am, ricardobeat <[EMAIL PROTECTED]> wrote: > You need quotes for the attributes: > > append(' > >'); > > Interesting use of the attr() function, I thought doing that would > make href="". > > On

[jQuery] Debug Plugin?

2008-10-30 Thread Matt Kruse
In development mode, sometimes we make stupid mistakes like misspelling a selector. Many people have been caught by passing a "complex" selector to .is() and expecting it to work. There is little debugging or error-checking done in jQuery to alert you of potential problems. I had a thought after

[jQuery] Re: Clarifications one the jQuery.prototype.init.prototype line

2008-10-30 Thread Balazs Endresz
Hi, there was a similar question recently: http://groups.google.com/group/jquery-en/browse_thread/thread/2bd68d2a05b83ed3 On Oct 30, 4:41 pm, quickredfox <[EMAIL PROTECTED]> wrote: > Can anyone explain to me in detail, what exactly this line of code > does: > > jQuery.prototype.init.prototype = j

[jQuery] Re: new to jQuery

2008-10-30 Thread Kru
Hey, Im gonna leave the answer to your question to someone more involved but if you get the chance also have a look at Jonathan Chaffers Learning Jquery. Its a very good book indeed. Oh and by the way Jquery is a javascript library therefore a client side language. For a proper application youll

[jQuery] Validation: AJAX-based without "remote"?

2008-10-30 Thread w1ntermut3
Hi, I need to do some AJAX-based validation to check that the email address entered isn't in the database already, but only if the "I am a new user" radio button has been checked. I know that the Validation plugin has a "remote" rule, and rules that can validate one element based on the value of

[jQuery] How to display random content from external .html file?

2008-10-30 Thread Justine
Hello. I'm relatively new to jQuery, never used JavaScript in my websites before but with jQuery it seems so incredibly easy that I've decided to learn it finally. I mostly use plugins, sometimes slightly modyfing the code etc but getting better every day I think :) Anyway, I have a proble

[jQuery] Re: display select and input values in a div

2008-10-30 Thread typenerd
So, I cheated and used a lame solution, but I'm curious how else I could solve this with a loop instead of this way: $(".date_bits").change(function () { var date_info = 'from '; var start_date = $("#start_month :selected").val() + '-' date_info += $("#start_month :select

[jQuery] Re: Test that at least one input element has value

2008-10-30 Thread w1ntermut3
If I understand you right, I think you need the "groups" option: $("#myform").validate({ groups: { username: "product1 product2" } }); AFAIK, that'll group error messages for your selected elements.

[jQuery] Re: Traversal: Aggressive "next" to blast through all parents?

2008-10-30 Thread Sam H
Most excellent - thanks!

[jQuery] next 'span' element that is not a sibling

2008-10-30 Thread Benjamin Ortuzar
Hi guys, I'm trying to navigate trough keywords, using jquery. So i would click on the 'next' link beside the highlighted keyword and it will take me with focus() to the next highlighted keyword within the div element. This is the code im using but its not working, since next() only searches for

[jQuery] Help with google chart

2008-10-30 Thread aimhier
I want to scale the line graph according to the maxvalue and the minvalue so that the graph is appropriate with respect to scale. Any help how can I do this. I mean if the maxvalue is 10 and minvalue is 0 then I want the graph range to be 0-10 and not 0-100 which it is present(thats my interpreta

[jQuery] JCarousel orientation problem on first page load in Safari

2008-10-30 Thread alan
Hey We have a carousel that display horizontally with 5 elements. However, when we try to access that page with an empty cache (reset safari) and navigate to the page, the carousel is displayed vertically instead of horizontally. After that, when the page is reloaded or access a second time it wo

[jQuery] Re: Block UI bugs in IE/Safari when used in .ready()

2008-10-30 Thread Mike Alsup
On Oct 30, 12:47 pm, debussy007 <[EMAIL PROTECTED]> wrote: > These functions take a specific amount of time to be executed: > searchLocDep( ) > searchLocArr(   ) > searchLocInt(  ... ) > You can see it in Firefox, the message will appear for like 5 seconds, I > don't want the user to inte

[jQuery] Re: blockUi and Jquery animate function problem (IE7 of course)

2008-10-30 Thread Mike Alsup
> > Try changing your block call to something like this: > > > var $holder = $('#sendToFriendHolder'); > > if ($.browser.msie) > >     $holder[0].style.removeAttribute('filter'); > > $holder.block({ > >    // block options here > > > }); > > Thank you :) > It works great > > So... and what ca

[jQuery] display select and input values in a div

2008-10-30 Thread typenerd
Hi there, I'm working on a script that let's you pick dates and times and it will string it together, but I'm having trouble matching my elements. My form elements all have class of date_bits and they're a mix of selects for month/day/a.m./p.m. and input boxes for time: start January October

[jQuery] JCarousel orientation problem on first page load in Safari

2008-10-30 Thread alan
Hey We have a carousel that display horizontally with 5 elements. However, when we try to access that page with an empty cache (reset safari) and navigate to the page, the carousel is displayed vertically instead of horizontally. After that, when the page is reloaded or access a second time it wo

[jQuery] Tooltip creation issue

2008-10-30 Thread TS
Hello all, I have created som tooltip code for hyperlinks. I am having an issue with queueing of events. Like when I mouseover multiple links the tooltips queue up and the page goes thru every fadein fadeout. 1. Is there a way to prevent this? Ive tried chaining .stop() to the mouseout event but

[jQuery] JCarousel orientation problem on first page load in Safari

2008-10-30 Thread alan
Hey We have a carousel that display horizontally with 5 elements. However, when we try to access that page with an empty cache (reset safari) and navigate to the page, the carousel is displayed vertically instead of horizontally. After that, when the page is reloaded or access a second time it wo

[jQuery] Jcarousel orientation problem on first page load in Safari

2008-10-30 Thread alan
Hey We have a carousel that display horizontally with 5 elements. However, when we try to access that page with an empty cache (reset safari) and navigate to the page, the carousel is displayed vertically instead of horizontally. After that, when the page is reloaded or access a second time it wo

[jQuery] [validate] Test that at least one input element has value

2008-10-30 Thread Torgeir
I have a product listing where the user can enter the required quantity of each product. The setup is something like this: Name Address ... Product1 Product2 Product3 Product4 ... It doesn't make sense to accept an order without any products. So I want to make sure that a

[jQuery] Clarifications one the jQuery.prototype.init.prototype line

2008-10-30 Thread quickredfox
Can anyone explain to me in detail, what exactly this line of code does: jQuery.prototype.init.prototype = jQuery.prototype; I just can't wrap my mind around it clearly... figure it has some- kinda relation to the map-over functions at the top of jQuery but... I need some sort of walk-through...

[jQuery] Re: wrapping a with fails in IE

2008-10-30 Thread tippy
It is nested within another table. I'm having to loop over data to create my recordset and each row has a checkbox. If a user checks the checkbox (or multiple checkboxes) and clicks the "export to pdf" button, those records need to be sent to the pdf (using pd4ml for this). The problem lies in

[jQuery] new to jQuery

2008-10-30 Thread Ashit Vora
Hi friends, 'm very nwe to jQuery. I started reading the book Manning jQuery I find it interesting.. So far this is the first JavaScript Library 'm ever trying so 'm pretty much impressed by the ease with which can do lot of things. I 'm not very much familiar with server side scripting. So

[jQuery] JCarousel orientation problem on first page load in Safari

2008-10-30 Thread alan
Hey We have a carousel that display horizontally with 5 elements. However, when we try to access that page with an empty cache (reset safari) and navigate to the page, the carousel is displayed vertically instead of horizontally. After that, when the page is reloaded or access a second time it wo

[jQuery] Re: mcdropdown mouseout problems

2008-10-30 Thread Ken Gregg
No joy. I removed the anchors and fixed a problem with a duplicate id and still experience the same problem. Ken On Oct 29, 2:36 pm, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > Ken, > > > > >I am trying to usemcdropdownfor an easy search function for a > >shopping cart. > > >The category l

[jQuery] Re: Cornerz 0.5

2008-10-30 Thread weepy
> Any special reasion why you're not using -moz-border-radius or > -webkit-border-radius where available? I haven't particularily experimented with these, but the idea was to use the same method across all browsers so that they all give the same (or as similar as poss) result. Also -moz-border-

[jQuery] Re: Cornerz 0.5

2008-10-30 Thread ricardobeat
Hi, Looks very good. Any special reasion why you're not using -moz-border- radius or -webkit-border-radius where available? cheers, - ricardo On Oct 30, 11:07 am, weepy <[EMAIL PROTECTED]> wrote: > I released Cornerz v0.5 today. > > http://labs.parkerfox.co.uk/cornerz/ > > Features : > > # Anti

[jQuery] Re: gzip

2008-10-30 Thread dmlees
Bill, Thanks so much. My hosting service just told me that gzip is enabled, so I don't have to do anything but use the min version of the library. That's great. On Oct 29, 7:36 pm, Bil Corry <[EMAIL PROTECTED]> wrote: > dmlees wrote on 10/29/2008 8:56 PM: > > > My web hosting service said they t

[jQuery] Re: traversing DIV containers

2008-10-30 Thread ricardobeat
If i == element, just pass it to a jQuery function: $(i).find('input').doSomething() On Oct 30, 2:12 am, tecmo <[EMAIL PROTECTED]> wrote: > > > > > > > > > > would like to edit these text fields as I drag them around.  The js > files passes the DIV containers as objects named i.  how can

[jQuery] Re: attr('title') giving odd renaults

2008-10-30 Thread ricardobeat
You need quotes for the attributes: append(''); Interesting use of the attr() function, I thought doing that would make href="". On Oct 29, 9:33 pm, Nathan <[EMAIL PROTECTED]> wrote: > I'm using attr('title') to find the title of the first anchor in a > list and then make that title the value o

[jQuery] Re: Cornerz 0.5

2008-10-30 Thread Josh Nathanson
Looks good, I'm always on the lookout for curved corners plugins. -- Josh - Original Message - From: "weepy" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Thursday, October 30, 2008 6:07 AM Subject: [jQuery] Cornerz 0.5 I released Cornerz v0.5 today. http://labs.parkerfox.co

[jQuery] Re: Block UI bugs in IE/Safari when used in .ready()

2008-10-30 Thread debussy007
These functions take a specific amount of time to be executed: searchLocDep( ) searchLocArr( ) searchLocInt( ... ) You can see it in Firefox, the message will appear for like 5 seconds, I don't want the user to interact with the website in between this interval. MorningZ wrote: >

[jQuery] Re: Traversal: Aggressive "next" to blast through all parents?

2008-10-30 Thread ricardobeat
There is a plugin for that already: http://docs.jquery.com/JQuery_1.2_Roadmap#.nextUntil.28.29_.2F_.prevUntil.28.29 or use my made-just-in-time low-performance variant: $.fn.until = function(end){ end = $(end)[0]; var prox = this.next(); var holder = $('nada'); while( prox[0] != en

[jQuery] Re: Getting width of broken image updated: working now

2008-10-30 Thread Josh Nathanson
Hey, that's pretty cool Andy. Interesting way to view comics. Glad my little bit of code was able to help. -- Josh - Original Message - From: "Andy Matthews" <[EMAIL PROTECTED]> To: Sent: Thursday, October 30, 2008 8:09 AM Subject: [jQuery] Re: Getting width of broken image updat

[jQuery] Re: blockUi and Jquery animate function problem (IE7 of course)

2008-10-30 Thread asiarlis
On Oct 29, 11:42 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > Wrong link ...http://www.britishschool.edu.gr/newsView.php?newsId=4 > > Try changing your block call to something like this: > > var $holder = $('#sendToFriendHolder'); > if ($.browser.msie) >     $holder[0].style.removeAttribute('fi

[jQuery] Re: wrapping a with fails in IE

2008-10-30 Thread ricardobeat
You can't wrap the in anything and keep your code valid. What you can do is wrap it's contents in another table: sniff $('tr.getMe').contents().wrap('') On Oct 29, 7:29 pm, Sarah <[EMAIL PROTECTED]> wrote: > I am trying to wrap a with a in IE and it ends up just > remo

[jQuery] Re: Amazon's Windowshop - Flash Necessary?

2008-10-30 Thread ricardobeat
Possible it is, but in Flash the animations are already struggling, would be even worse (or not). On Oct 29, 5:01 pm, Andrew <[EMAIL PROTECTED]> wrote: > I'm just a jquery novice, but I was wondering if it would be possible > to do something like Amazon's new windoshop.com without flash and just

[jQuery] Superfish extra request

2008-10-30 Thread adexcube
Hi, I modified the skin of the menu using png images and I realised that when the menu completely loads if you hover any item of the menu, the menu makes a request to the server in order to obtain the hover image. This happens only once. I think while the browser caches the image. How can I stop t

[jQuery] Re: Validating divs depending on show / hide [validate]

2008-10-30 Thread C
I fixed my own problem. For those out there that run into this same thing here's the fix: http://dev.jquery.com/ticket/3394. Once you've applied the patch and you don't want your hidden divs to validate, then change: validateHidden: true, to validateHidden: false, in your new patched jquery.

[jQuery] Re: mcdropdown mouseout problems

2008-10-30 Thread Ken Gregg
Dan, Perfect. Thanks. I think it will also make a perfect navigation control for a mobile (small screen) application. Going to try that next. Any ideas as to how to set the default text in the field without it having to be an item in the list? Ken On Oct 29, 2:36 pm, "Dan G. Switzer, II" <[EMA

[jQuery] Re: Block UI bugs in IE/Safari when used in .ready()

2008-10-30 Thread MorningZ
i don't understand you have: $.blockUI({ message: 'Veuillez patienter...' }); searchLocDep( ) searchLocArr( ) searchLocInt( ... ) $.unblockUI(); Why are you expecting to see the "block"? you call block then unblock and it's happening almost immediately On Oct 30, 9:49 am, d

[jQuery] Re: Traversal: Aggressive "next" to blast through all parents?

2008-10-30 Thread Sam H
Anyone? I might have to write a plugin to do thishmm

[jQuery] Re: Getting width of broken image updated: working now

2008-10-30 Thread Andy Matthews
Josh... Since you may be curious what I was working on, it's just a little comic strip viewer for a webcomic called Goats: http://www.commadelimited.com/code/goats.cfm It's archives go back roughly 10 years, and I'm trying to work through all the backlog. Since it's published daily, the archive

[jQuery] Re: idTabs and hoverintent

2008-10-30 Thread Sean Catchpole
If you bind idTabs using click (by default) then you can use the following to trigger it via hoverIntent: $("a[href*=#]").hoverIntent(function(){ $(this).click(); }, function() {}); ~Sean On Oct 29, 5:08 am, Ettiene <[EMAIL PROTECTED]> wrote: > Hi there, > > I've implemented idTabs on a website

[jQuery] Scroll to top animate in Opera 9+

2008-10-30 Thread adexcube
Hi, I tried successfully this function $('html, body').animate({scrollTop: 0}, 'slow'); on most browsers but in Opera 9+ it doesn't behave correctly, just scrolls some content of the page while other remains static until the function stops? Does someone have noticed this? Thanks

[jQuery] Re: Tablesorter/pager: pager info overlapping table.

2008-10-30 Thread HsvCoder
bump...anyone? Thanks. HsvCoder wrote: > > OK, I am a Jquery noob and hooked up some of our old CF tables to the > excellent tablesorter plugin and it works great(thanks Christian), hooked > up the pager (added pager div after closing table tag) and when it firsts > loads the div is overlappi

[jQuery] Re: jQuery Problem - Animated scrolling for in page links

2008-10-30 Thread adexcube
Well I´m using this and it works fine $('html, body').animate({scrollTop:0}, 'slow'); Let me know if you have any issues On Oct 30, 11:01 am, mrleesimpson <[EMAIL PROTECTED]> wrote: > Hi, > > I'm fairly new tojQueryand having some problems with getting a > plugin to work with Wordpress. > >

[jQuery] [released] themeable canvas loader icon, with semi-transparency support

2008-10-30 Thread Rene Veerman
http://mediabeez.ws/mediaBeez/permalink.php?tag=visCanvasLoaderGraphic This the second opensource plugin that I release; a loader icon capable of displaying colorfull yet semi-transparent animated graphics. It's simple to use and design for.. I'll admit right now that there are still some is

[jQuery] Re: Superfish + IE7 dean edwards project

2008-10-30 Thread adexcube
Nope, when I remove the Superfish JS it´s displayed correctly. Thanks for your fast response On Oct 30, 1:15 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Do the submenus still appear 100% width if you remove the Superfish JS > code so that the menu is pure CSS plus IE7.js ? > > Joel Birch.

[jQuery] Re: Validating divs depending on show / hide [validate]

2008-10-30 Thread C
whoops, the 3 hiding divs should have been #co-presenter #co-presenter2 #co-presenter3 I found this bit of code on Jörn's website {required: "#co-presenter:visible"} So, I added it to my script $(document).ready(function(){ $("#co-presenter").hide(); $("#co-presenter2").hide(

[jQuery] [released] themeable canvas loader icon, with semi-transparency support

2008-10-30 Thread Rene Veerman
http://mediabeez.ws/mediaBeez/permalink.php?tag=visCanvasLoaderGraphic This the second opensource plugin that I release; a loader icon capable of displaying colorfull yet semi-transparent animated graphics. It's simple to use and design for.. I'll admit right now that there are still some is

[jQuery] Block UI bugs in IE/Safari when used in .ready()

2008-10-30 Thread debussy007
Hi, I want to use Block UI in the (document).ready(...) function. In Mozilla, the page is displayed and the message is appearing and block UI blocks the page, everything is fine. In IE and Safari, the page is only changed when the page has been unblocked (the message is appearing for 1 second

[jQuery] Re: autocomplete - other items on web page showing through autocomplete list. Only in IE6

2008-10-30 Thread Dan Switzer
> I would just like to thank you all in advance for taking time to help > me. > > I am using ... > > Autocomplete - jQuery plugin 1.0.2 > Revision: $Id: jquery.autocomplete.js 5747 2008-06-25 18:30:55Z > joern.zaefferer $ > > In IE7 and Mozilla, the autocomplete works fine. > > When I use IE6, the

[jQuery] A jQuery Container Class

2008-10-30 Thread Santosh
A jQuery Container Class that allows you to add components via an items config option. You can see the post, demo and code here. http://santrajan.blogspot.com/2008/10/jquery-container-class.html

[jQuery] Re: $(this) question

2008-10-30 Thread Prajwala Manchikatla
In the addSubject function the "this" will point to "window" object. That means the function is in the global scope. If you want to pass the element to addSubject function do like this Use html like this add Here "this" keyword can only be used in event handlers not on normal HTML attributes lik

[jQuery] Re: Superfish - removing arrow from top-level

2008-10-30 Thread Joel Birch
Hello, Your fix is good except that it won't work in IE6. You might instead try setting background:none for all .sf-sub-indicator elements, then restoring the arrows to the deeper nested ones using a selector with greater specificity. ie: sf-menu li ul a .sf-sub-indicator { ... Joel Birch.

  1   2   >