[jQuery] Re: missing leftOffset, topOffset in cluetip

2007-11-08 Thread Karl Swedberg
Hi John, Looks like my documentation was a little bit ahead of the latest packaged version. Sorry about any confusion/inconvenience this may have caused. I've posted a new version of the plugin here: http://jquery.com/plugins/project/cluetip Hope that helps. --Karl _ Kar

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-08 Thread fambizzari
Ok... here we go... I got it to work with this... $("table tbody") .mouseover(function(e) { $(e.target).parents('tr').addClass('over'); }) .mouseout(function(e) { $(e.target).parents('tr').removeClass('over');

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-08 Thread fambizzari
Ok the code does not throw any errors, but it doesn't do what its supposed to do. Aren't we suppose to check what the parent of the target is? Because, in effect, it is a table cell which is being hovered over and not the row. Any ideas?

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-08 Thread fambizzari
I got it to work with this though: $("table tbody") .mouseover(function(e) { if((e.target)=="tr") $(e.target).addClass("over"); }) .mouseout(function(e) { if((e.target)=="tr") $(e.target).removeClass("over");

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-08 Thread fambizzari
Renato, THat doesn't seem to work over here: $("table tbody") .mouseover(function(e) { if(e.target).is("tr") $(e.target).addClass("over"); }) .mouseout(function(e) { if(e.target).is("tr") $(e.target).removeClass("ove

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-08 Thread fambizzari
Thanks Renato, i didn't realise you were talking about that. On Nov 8, 8:58 pm, Renato Formato <[EMAIL PROTECTED]> wrote: > fambizzari ha scritto:> @Renato - Thanks for the example. But i didn't see it > and i still > > can't see it. > > Try > here:http://groups.google.com/group/jquery-en/brows

[jQuery] Re: Scripts at the bottom of the page

2007-11-08 Thread mike503
On Nov 8, 6:39 pm, Bil Corry <[EMAIL PROTECTED]> wrote: > That won't work because jQuery doesn't exist -- you'd have to use straight > JavaScript. Probably the best solution is to make the event wait until > jQuery exists. Seems like a task jQuery itself should take care of though. Yeah this

[jQuery] Re: Scripts at the bottom of the page

2007-11-08 Thread DaveG
I experienced this problem, and ended up wrapping these events inside jQuery's ready function. That solved 99% of the problem. Of course it still occurs, but maybe I missed some events :) Bil Corry wrote: mike503 wrote on 11/8/2007 4:22 PM: What is confusing is why I can bind the event to

[jQuery] Re: Scripts at the bottom of the page

2007-11-08 Thread Bil Corry
mike503 wrote on 11/8/2007 4:22 PM: What is confusing is why I can bind the event to the jquery- initialized object but the action inside the event is confused. Perhaps I can try replacing $(this) with $("#theactual div name") That won't work because jQuery doesn't exist -- you'd have to use

[jQuery] Re: Change CSSClass

2007-11-08 Thread Benjamin Sterling
Yes, something like: $('a').removeClass('currentClass').addClass('newClass').click(function(){ return false; }); .removeClass() is only needed if you want to remove a class. On 11/8/07, shapper <[EMAIL PROTECTED]> wrote: > > > Hello, > > I have an anchor. I want to change its CSS class and also

[jQuery] autocomplete - show all

2007-11-08 Thread rolfsf
I'm just starting to research autocomplete plugins. We have a case where in certain situations a user may not know enough about what they're looking for to successfully type a few characters and get close to the right result (unpredictable combinations of letters and numbers). In this case, we'd

[jQuery] Re: Major Problem With Dom Traversal

2007-11-08 Thread Guy Fraser
Could you not just use .eq(0) to get the first style node and append to that? Flesler wrote: > And that worked? if you have more than one style node, you would be > appending that to more than one, causing some overhead. > You could try this: > > var $style = $('#my_style'); > > if( $style.lengt

[jQuery] Change CSSClass

2007-11-08 Thread shapper
Hello, I have an anchor. I want to change its CSS class and also disable the clicking when it is clicked. Can I do this with JQuery? Thanks, Miguel

[jQuery] Re: Add row and refresh tablesorter with pager.

2007-11-08 Thread umesu
I got solution yesterday. Reset page size before update the table and set current page after sorting like var page_size = 20; var curr_page = config.page; $("#table_partenaires").tablesorterPager({size: config.totalRows}); $("#table_partenaires").trigger("update"); $("#table_partenaires").trigge

[jQuery] Using jQuery to create XML

2007-11-08 Thread Guy Fraser
Hi, Are there any examples of using jQuery to create some XML and then traversing that XML and modifying it? Guy

[jQuery] Toggle visibility.

2007-11-08 Thread shapper
Hello, I have an anchor on my page. When I click it I want to Toggle the visibility of a Div with ID = "Content". If the div is visible then it should become invisible. If it is invisible them it becomes visible. How can I do this? Thanks, Miguel

[jQuery] Displaying current page in Navigation & SubNavigation

2007-11-08 Thread brwalias
Hi, I have been using this article as a reference: http://leftlogic.com/lounge/articles/auto-selecting_navigation to keep my main navigation style changes visible with current page selections. I am now at the point where I need to have both the global nav and sub nav showing current states. Cur

[jQuery] Re: Google Analytics Tracking With jQuery

2007-11-08 Thread Craig
Hi Jason, I've been working on something very similar and stumbled on your code. Not sure if you figured out your problem yet, but this is my guess for why it hasn't been logging your test accounts: // add tracking code to the current page function addTracking(){ var _uacct = code; // conso

[jQuery] Re: "Universal Programming Language" concept...

2007-11-08 Thread phobis
Thanks! Are you experienced with haXe? If you want to talk about strong/weak points or discuss any thoughts about how we go about this technology, please let us know: http://groups.google.com/group/universal-programming-language On Nov 8, 1:37 pm, Kelvin Luck <[EMAIL PROTECTED]> wrote: > It'

[jQuery] Re: Getting PHP_REFERER value from jQuery

2007-11-08 Thread Aaron Porter
How about document.referrer? :) Aaron ElTibetano wrote: > Hi, maybe someone can help me on this: > > I'm using jqModal plugin to open a form from different pages, that > will end up sending a mail. Is there a way to know from which page the > form was opened? something like the PHP_REFERER varia

[jQuery] Re: jScrollPane refuses to display arrows in IE/Win

2007-11-08 Thread Joe C
On Nov 8, 1:19 pm, Kelvin Luck <[EMAIL PROTECTED]> wrote: > Sorry - I think that there was a problem with the compressed version of > the jScrollPane script. I've just re-uploaded it and (I think) fixed the > problem. Indeed, that fixed it. Thank you, Kelvin.

[jQuery] [SITE SUBMISSION] http://www.pandora.com/

2007-11-08 Thread Benjamin Sterling
Just realized that http://pandora.com/ is now using jQuery with their redesign/update. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com http://www.benjaminsterling.com

[jQuery] metadata plugin, please help

2007-11-08 Thread Robert O'Rourke
Hello, I'm using the metadata plugin as part of a photo tagging plugin I'm having a go at. I was wondering if it's possible to have multiple metadata sets in one classname eg. class="{name:'1'} {name:'2'}" would $.metadata({ type: 'class' }).name[0] return 1? are the properties accessib

[jQuery] Re: Scripts at the bottom of the page

2007-11-08 Thread mike503
On Nov 8, 10:53 am, Bil Corry <[EMAIL PROTECTED]> wrote: > I played with it a bit. It appears the anonymous functions being bound to > mousseover and mouseout don't have access to the functions outside themselves > when the page is first being loaded (perhaps they're not fully bound yet?). >

[jQuery] Re: Getting PHP_REFERER value from jQuery

2007-11-08 Thread Glen Lipka
Can it be passed in the URL as a parameter? Or can you use Ajax to get it from a specialized php page? Glen On Nov 8, 2007 12:24 PM, ElTibetano <[EMAIL PROTECTED]> wrote: > > Hi, maybe someone can help me on this: > > I'm using jqModal plugin to open a form from different pages, that > will end

[jQuery] jQuery.iAccorion error in IE

2007-11-08 Thread scud
I recently started to build out a portfolio and used jQuery and some of the plugins to get things working right. Right now things look awesome in Firefox, however there comes a problem when viewed in IE. http://scudly.com/port/portfolio.html is the current version of the page. If you open the p

[jQuery] Re: Trying to pass form value from thick box form to parent window

2007-11-08 Thread joel352000
Thanks! works like a charm! On Nov 8, 11:43 am, tlphipps <[EMAIL PROTECTED]> wrote: > The only way I have found to do this is by using the "top.document" > reference. > e.g. $("#myformfield", top.document).val('myvalue'); > > On Nov 8, 10:57 am, joel352000 <[EMAIL PROTECTED]> wrote: > > > Hello--

[jQuery] Re: jQuery handlers getting varibles from caller...

2007-11-08 Thread Flesler
Also, 'id' is not a good attribute to store random data, first of all, they must be unique. Imagine 2 cells link to the same URL. Depends on the situation, but IMO, the attribute 'title' is better for this. Or 'rel' if it's an anchor. Just bear in mind that the title will be visible to the user. I

[jQuery] Re: ajax "kill" jQuery script after load

2007-11-08 Thread Feijó
I have the same problem, had been searching around how to fix that for 2 days I dont wanna use iframe Do I need to use eval ? how? Thanks Feijó - Original Message - From: "ryznar" <[EMAIL PROTECTED]> To: Sent: Wednesday, November 07, 2007 12:51 PM Subject: [jQuery] ajax "kill" jQ

[jQuery] Getting PHP_REFERER value from jQuery

2007-11-08 Thread ElTibetano
Hi, maybe someone can help me on this: I'm using jqModal plugin to open a form from different pages, that will end up sending a mail. Is there a way to know from which page the form was opened? something like the PHP_REFERER variable. Latter, when the mail is being prepared I can access the PHP

[jQuery] Re: Major Problem With Dom Traversal

2007-11-08 Thread Flesler
And that worked? if you have more than one style node, you would be appending that to more than one, causing some overhead. You could try this: var $style = $('#my_style'); if( $style.length == 0 ) $style = $('

[jQuery] Re: Tablesorter and event handlers on table rows

2007-11-08 Thread Nat Williams
Hi, I'm having essentially the same issue and have been tearing my hair out about it for a while now. Do you think you could elaborate on your workaround? At this point I've sort of lost all principles concerning awful hacks and just want to get this implemented. Thanks, Nat On Nov 8, 8:20 am

[jQuery] Re: liveQuery in jQuery core?

2007-11-08 Thread Andy Matthews
Thanks Richard...that was a good read. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard D. Worth Sent: Thursday, November 08, 2007 2:49 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: liveQuery in jQuery core? No. You may be interested in some di

[jQuery] Re: liveQuery in jQuery core?

2007-11-08 Thread Richard D. Worth
No. You may be interested in some discussion that's been going on about this over the last week: http://groups.google.com/group/jquery-en/browse_thread/thread/f520b83381fb6231 - Richard On Nov 8, 2007 3:40 PM, Andy Matthews <[EMAIL PROTECTED]> wrote: > Did liveQuery ever get moved into the cor

[jQuery] liveQuery in jQuery core?

2007-11-08 Thread Andy Matthews
Did liveQuery ever get moved into the core? I can't find evidence of it in the docs Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com

[jQuery] issue with new UI Datepicker

2007-11-08 Thread Priest, James (NIH/NIEHS) [C]
I'm trying to roll out a form with the new UI Datepicker and have an odd issue... Using the 'dialog' mode - I'm getting a form field popping up along with the calendar. I don't see this behavior on the demo - but I've stripped my code down to the bare minimum - grabbed all the latest (datepicker

[jQuery] Re: jScrollPane refuses to display arrows in IE/Win

2007-11-08 Thread Kelvin Luck
Hi, Sorry - I think that there was a problem with the compressed version of the jScrollPane script. I've just re-uploaded it and (I think) fixed the problem. Can you grab the new file from here: http://kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.min.js And let me know if it fixes

[jQuery] Re: Scripts at the bottom of the page

2007-11-08 Thread Bil Corry
mike503 wrote on 11/8/2007 3:16 AM: Thank god someone else can validate this. I played with it a bit. It appears the anonymous functions being bound to mousseover and mouseout don't have access to the functions outside themselves when the page is first being loaded (perhaps they're not full

[jQuery] Re: Trying to pass form value from thick box form to parent window

2007-11-08 Thread tlphipps
The only way I have found to do this is by using the "top.document" reference. e.g. $("#myformfield", top.document).val('myvalue'); On Nov 8, 10:57 am, joel352000 <[EMAIL PROTECTED]> wrote: > Hello-- > I am a jquery newbie. I have a file upload form I am loading into a > thickbox iframe. After t

[jQuery] Re: "Universal Programming Language" concept...

2007-11-08 Thread Kelvin Luck
It's a bit off topic but you might want to check out haXe: http://haxe.org/ It's a OO language which can compile down to swf, javascript and neko which can run as a serverside process... phobis wrote: We will attempt to make this the Esperanto of the programming world (from a language persp

[jQuery] Re: triggering a File upload

2007-11-08 Thread Richard D. Worth
Take a look at the File Style Plugin, by Mika Tuupola: http://groups.google.com/group/jquery-en/browse_thread/thread/81a52acc7ea2eb6c http://www.appelsiini.net/projects/filestyle http://www.appelsiini.net/projects/filestyle/demo.html - Richard On Nov 7, 2007 5:12 PM, Gilles Ruppert <[EMAIL PROTE

[jQuery] Re: Can jQuery implement the image popup tips function?

2007-11-08 Thread Penner, Matthew
There are several plug-ins that can do exactly this. Here are a couple: * BetterTip * clueTip Matt Penner Database Engineer II GIS Support [EMAIL PROTECTED] (951) 940-6108 x10709 -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nkw Sent: Wednesd

[jQuery] Trying to pass form value from thick box form to parent window

2007-11-08 Thread joel352000
Hello-- I am a jquery newbie. I have a file upload form I am loading into a thickbox iframe. After the file is uploaded, I want to write the name of the file uploaded to a form field on the parent window. This was easy to do with opener.document.formname.fieldname.value="value" without JQuery. Bu

[jQuery] Re: jQuery handlers getting varibles from caller...

2007-11-08 Thread Ambient.Impact
One way to do this would be to include a link (Google) in a table cell with a class (so you can find it) in your HTML. Then, when the page loads, grab the URL from the href attribute of the link, and remove the table cell containing the link. This way you get very good marks in the unobtrusive are

[jQuery] Re: Build plugins throws an error

2007-11-08 Thread Thatcher
Ah I just figure out it's this line in build/min.js and build/ pack.js : var header = script.match(/\/\*(.|\n)*?\*\//)[0]; which throws an exception if it doesnt find a /**/ style comment in the code. These are small scripts but it might be worth a correction or try/catch to help identify. On

[jQuery] Re: "Universal Programming Language" concept...

2007-11-08 Thread phobis
We will attempt to make this the Esperanto of the programming world (from a language perspective). Ultimately we want it to "translate" to other technologies and languages. In the future other projects will merge with this one. Our plan is to make a UI engine and framework off of the language. We

[jQuery] Re: Need help with the value of a Macbook

2007-11-08 Thread Aaron Heimlich
On Nov 7, 2007 3:26 PM, Aaron Heimlich <[EMAIL PROTECTED]> wrote: > (I don't think you can upgrade cross-platform, but I've heard of people > talking to Customer Support about it and arranging something). > Here's more info on cross-platform CS3 upgrades: http://blogs.adobe.com/jnack/2007/05/cs3_

[jQuery] big problem with $.ajax

2007-11-08 Thread STC_Wizzard
Hello, I've discovered jquery a few days ago and I'd say a big a "thank you" to the developpers team because it's really, really useful. :handshake: But I have a problem with the $.ajax function : I'm working under mozilla FF with a plugin called 'developper bar' wich return me the JS errors.

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-08 Thread Renato Formato
fambizzari ha scritto: @Renato - Thanks for the example. But i didn't see it and i still can't see it. Try here: http://groups.google.com/group/jquery-en/browse_thread/thread/31d4cc55af6bcf2b#msg_ea3dfc14fdb61992 Renato

[jQuery] Re: Would be nice to select objects using attribute comparisons

2007-11-08 Thread Karl Swedberg
ah, good to know it works. I usually test stuff before posting, but I was in a time crunch. --Karl On Nov 7, 2007, at 6:05 PM, Penner, Matthew wrote: Works great! Thanks! Matt Penner Database Engineer II GIS Support [EMAIL PROTECTED] (951) 940-6108 x10709 From: jquery-en@googlegroups.c

[jQuery] handle trigger return value

2007-11-08 Thread Emil Ivanov
Hi folks, I'm developing a plugin (my first evel jQuery plugin), and I want to capture the return value from a user function, bound to event. Basically, what I want is to be able to undo the event - like returning false in a link click will now follow the link. Here is some code: // in the plugin

[jQuery] Re: "Universal Programming Language" concept...

2007-11-08 Thread Tane Piper
So is it like the Esperanto of the programming world? On 08/11/2007, phobis <[EMAIL PROTECTED]> wrote: > > Sorry, the link is: > > http://groups.google.com/group/universal-programming-language > > > On Nov 7, 10:15 pm, phobis <[EMAIL PROTECTED]> wrote: > > Not to "spam" but if anyone is intereste

[jQuery] Re: "Universal Programming Language" concept...

2007-11-08 Thread phobis
Sorry, the link is: http://groups.google.com/group/universal-programming-language On Nov 7, 10:15 pm, phobis <[EMAIL PROTECTED]> wrote: > Not to "spam" but if anyone is interested in a "Universal Programming > Language" concept please visit the URL below. I respect the people of > this group, s

[jQuery] jQuery handlers getting varibles from caller...

2007-11-08 Thread Brad F
I'm trying to figure out the best way to pass variables into jQuery using unobtrusive javascript... For example: Clicking a column row takes you to a URL. http://www.google.com";> blah --- $("tr.addNavigation").

[jQuery] problem repopulating select box using .load

2007-11-08 Thread [EMAIL PROTECTED]
I am trying to populate a page with a dynamic drop down box loaded from another page, problem is, that the old one is not being removed when it gets changed. previewprofile = function() { var sealprofile = $("#sealprofile").val(); $("#profilepreview").load("jq-previewprofile.php", {profi

[jQuery] Re: How to get an html page not knowing its address

2007-11-08 Thread caruso_g
Ciao Richard, thanks a lot, really. It, clearly, works. But, if I may ask you more, if I would to pass an address with the same problem to a jQuery selector, what should I write? Would it enough to create a variable and insert its name into the selector? Below it is an example: var my_varia

[jQuery] Tablesorter and event handlers on table rows

2007-11-08 Thread Raymond78
Hi, First, a big thanks for creating this great plugin! Very nice. I am using TableSorter 2.0 on a table which contains rows on which I have added some event handlers (using jquery; the events have nothing to do with sorting, they're for highlighting and processing clicks). These event handlers

[jQuery] Re: using thickbox with jquery live

2007-11-08 Thread [EMAIL PROTECTED]
thanks so much. that worked perfectly. On Nov 8, 12:59 am, tlphipps <[EMAIL PROTECTED]> wrote: > I did that very thing be modifying the tb_init() function in > thickbox. Here is my modified version that uses livequery. > > function tb_init(domChunk){ > $(domChunk).livequery('click',funct

[jQuery] "Universal Programming Language" concept...

2007-11-08 Thread phobis
Not to "spam" but if anyone is interested in a "Universal Programming Language" concept please visit the URL below. I respect the people of this group, so I wanted to spread the word: http://groups.google.com/group/universal-programming-language/

[jQuery] Re: triggering a File upload

2007-11-08 Thread Strija
I think you're looking for something like this. It's not with JQuery but it works great: http://www.shauninman.com/archive/2007/09/10/styling_file_inputs_with_css_and_the_dom On 7 stu, 23:12, Gilles Ruppert <[EMAIL PROTECTED]> wrote: > Hi all, > > I am relatively new to jQuery, so sorry if this

[jQuery] Re: parsers[i] has no properties

2007-11-08 Thread [EMAIL PROTECTED]
I believe I solved my problem. I was calling .trigger("update") on $ ("table#example tbody") rather than the table itself. Thanks, Joe On Nov 5, 1:46 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > No, just zebra: > > $("#example").tablesorter({widgets: ['zebra']}); > > Previously I was u

[jQuery] Re: photo tagging with jQuery

2007-11-08 Thread Bhaarat Sharma
Yes, they have a very advanced photo tagging app. You are right they must be storing metadata into the database. But just for starters...if a jQuery plugin would just let you hover+click on a picture to add a tag on it then storing the data into the database using JSON can be achieved easily I thi

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-08 Thread fambizzari
@Renato - Thanks for the example. But i didn't see it and i still can't see it. @Suni - I've never used bind (except in a copy/paster job). Can you point me to a tutorial which explains it. Thanks

[jQuery] Re: How to get an html page not knowing its address

2007-11-08 Thread Richard D. Worth
No need to provide the full URL, including the domain/server name. In fact, there's a security restriction on Ajax that prevents fetching an html page from a domain other than the current one, so you only need to specify a relative url to load: jQuery('#footer-navbar').load("/clients/clickadvisor-

[jQuery] Re: photo tagging with jQuery

2007-11-08 Thread Robert O'Rourke
Jared wrote: On Nov 7, 4:27 pm, Bhaarat Sharma <[EMAIL PROTECTED]> wrote: I am sure most of you are familiar with 'facebook'. you might have noticed that facebook allows ursers to hoover over pictures, click on them and that way tag them. so the next time someone comes to take a look at the

[jQuery] Re: Jquery Sortable plugin and Flash content problem

2007-11-08 Thread jamietssg
Thanks for the feedback! I've tried using the UI sortables plugin. Unfortunately the flash file still disappears when it's dragged. Example: http://www.weeatbricks.com/test//ui.sortable.html Any ideas? Thanks for the advice! Jamie On Nov 7, 5:07 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrot

[jQuery] Re: How to get an html page not knowing its address

2007-11-08 Thread caruso_g
I should have made progresses, I hope. I saw that it would be better to use .load method to get some simple pre-formatted html bunch of code. But the problem is still there, I don't know how to pass as arguments a domain address I am not able to know in advance. So I tried with the code below, b

[jQuery] How to display random content with jquery

2007-11-08 Thread [EMAIL PROTECTED]
Hi, Im trying to find a way to display random html snippets from a predefined list with jquery. The goal is not to make it rotate while on page, but only random pick on page reload. Does anyone knows a plugin for this? Thanks!

[jQuery] jScrollPane refuses to display arrows in IE/Win

2007-11-08 Thread Joe C
It's really hard when my friend jQuery doesn't Just Work. I'm building a site and attempting to use jScrollPane. Here's a sample URL: http://pl281.pairlitesite.com/events I'm using jQuery 1.2.1 along with jScrollPane (with dimensions and mousewheel) and superfish. Everything is just great in

[jQuery] Re: toggleClass not working - please help

2007-11-08 Thread dan
Thanks Wizzud, parents() worked.

[jQuery] Using JQuery to Parse Schema File

2007-11-08 Thread Jay
Hello All This is my first posting to the group, and if I am posting my Question in the wrong group , please let me know. Getting into my question , Is there a built in feature or a plug in that will allow for parsing of the schema files. I am currently working on a project that requires par

[jQuery] Re: Patch for jCarousellite & jQuery 1.2.1

2007-11-08 Thread Seth - TA
Thanks for the patch. I still can't seem to get it working. Do you have a working example you could post? Thanks. Seth On Oct 10, 1:03 pm, Stosh <[EMAIL PROTECTED]> wrote: > I haven't seen anyone post apatchforjCarouselliteyet, so if anyone > is trying to get it to work with jQuery 1.2.0 the fix

[jQuery] "Universal Programming Language" concept...

2007-11-08 Thread phobis
Not to "spam" but if anyone is interested in a "Universal Programming Language" concept please visit the URL below. I respect the people of this group, so I wanted to spread the word.

[jQuery] Re: photo tagging with jQuery

2007-11-08 Thread Jared
On Nov 7, 4:27 pm, Bhaarat Sharma <[EMAIL PROTECTED]> wrote: > I am sure most of you are familiar with 'facebook'. you might have > noticed that facebook allows ursers to hoover over pictures, click on > them and that way tag them. so the next time someone comes to take a > look at the picture and

[jQuery] Help with dblclick on sortables example.

2007-11-08 Thread Bryank
Hi Everyone, ==OVERVIEW=== First, please visit this link to view the code I am dealing with: http://pastie.caboo.se/115218 Basically, I am using the Sortables Example you can find here: http://interface.eyecon.ro/demos/sort.html The ToggleContent function uses the following line to ass

[jQuery] Re: Would be nice to select objects using attribute comparisons

2007-11-08 Thread Penner, Matthew
Works great! Thanks! Matt Penner Database Engineer II GIS Support [EMAIL PROTECTED] (951) 940-6108 x10709 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Wednesday, November 07, 2007 12:27 PM To: jquery-en@googlegro

[jQuery] Re: Need help with the value of a Macbook

2007-11-08 Thread Alan
CS2 doesn't run in native mode. CS3 does. Also, the value of the Mac is often not found in pure performance specs but in the fact you don't have to wait 10s for the beast to go to sleep or shut down. also two finger scrolling is a time saver. there are a million little things that, once you ada

[jQuery] Superfish - issues with hover links in IE6

2007-11-08 Thread cromeis
I am looking for advice on IE6... I have implemented superfish (the latest version) along with the jquery vs 1.2.1. The drop down works great everywhere except IE6. I need to have a different link color when you rollover the top part of the nav, and have it stay that color when you continue down

[jQuery] Trying to add DoubleClick Toggle on a sortable's item

2007-11-08 Thread BryanK
Hi Everyone, ==OVERVIEW=== First, please visit this link to view the code I am dealing with: http://pastie.caboo.se/115218 Basically, I am using the Sortables Example you can find here: http://interface.eyecon.ro/demos/sort.html The ToggleContent function uses the following line to a

[jQuery] triggering a File upload

2007-11-08 Thread Gilles Ruppert
Hi all, I am relatively new to jQuery, so sorry if this question has an obvious answer! Our company just got the designs in for a new feature on our website. It involves uploading a picture, so we need a field. However, the design has a nicely styled link (read: image) instead of the normal c

[jQuery] Can jQuery implement the image popup tips function?

2007-11-08 Thread nkw
I have an array of thumbnails. I want a popup tips with some text and a image shown when mouse over each thumbnail. Different thumbnails will have different tip content. Can jQuery do this? or need other framework?

[jQuery] Jquery Form w/File Upload - result code not recognizing $ JQuery script calls.

2007-11-08 Thread Ryan S
I've got a similar but different issue... Jquery.form works beautifully... From the result of the form call - my php script sends html back to the browser with $(document).ready(... scripts to setup the resultant code. When I DON'T upload a file, the result works perfectly -- any $(... jquery

[jQuery] Re: What causes the speed bottleneck in Javascript?

2007-11-08 Thread Amnon
On Oct 1, 11:51 pm, "Derek Gathright" <[EMAIL PROTECTED]> wrote: > ...  With Firefox 3 having SQLite > (rumored) embedded and Google releasing Gears, the capabilities are endless > for developers using the browser as the platform/OS for on and offline > applications.  That is going to require muc

[jQuery] Re: Problem when adding onclick or onchange attributes to a link on IE7

2007-11-08 Thread camilo_u
Or do i have to do something like: $( "#show_popup2").parent("td").html("HTML with the whole input with the onclick/onchange properties"); Which i think It's an ugly hack.. What do you think? is this normal? Thanks a lot! Camilo On Nov 7, 2:45 pm, camilo_u <[EMAIL PROTECTED]> wrote: > Hi G

[jQuery] Superfish - issues with hover links in IE6

2007-11-08 Thread cromeis
I am looking for advice on IE6... I have implemented superfish (the latest version) along with the jquery vs 1.2.1. The drop down works great everywhere except IE6. I need to have a different link color when you rollover the top part of the nav, and have it stay that color when you continue down

[jQuery] How to get an html page not knowing its address

2007-11-08 Thread caruso_g
First of all I want to apologize with all devs out there for my questions. I am sure that solution will be easy but I am just a designer, so I am a moron with Javascript... The problem is that I need to put some html code into a div (#footer- navbar) getting the html code from a page of which I a

[jQuery] Re: Need help with the value of a Macbook

2007-11-08 Thread skyeflye
I have pretty much exactly that same MacBook that you are considering. A 200 MB, 7200 RPM HD I recently upgraded myself is the only difference. For the past year+ I've used it as my daily production/ work machine in concert with a 24" Dell monitor that is now several years old. The 24" external mo

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-08 Thread Renato Formato
fambizzari ha scritto: George, I have no idea what you are talking about! Can you explain by means of code? I posted an example in the first answer to your question :) Didn't you read it? Ciao Renato

[jQuery] Re: Scripts at the bottom of the page

2007-11-08 Thread mike503
On Nov 8, 12:16 am, Suni <[EMAIL PROTECTED]> wrote: > I can see the error by clicking the tabs and quickly hovering over > them. All the JS-stuff seems to be ok. Thank god someone else can validate this. > I'd first fix the HTML and then try again. Thanks, I just yanked some code out of anothe

[jQuery] Re: Scripts at the bottom of the page

2007-11-08 Thread Suni
Interesting. I can see the error by clicking the tabs and quickly hovering over them. All the JS-stuff seems to be ok. Only error I can see is that your HTML is incorrect, you are missing a closing (the #bodyContainerWide div is nto closed). This causes the DOM to possibly go wicked even on suc