[jQuery] Re: Using ClueTip with Image Maps in IE

2008-07-04 Thread Karl Swedberg
ok. quick suggestion for now until I look more into this: you don't need to use the rel attribute at all. you can instead set the attribute option to any attribute you want. You could use the title attribute from the area for the clueTip title (default) or use the alt attribute for it; you

[jQuery] Re: cluetip doesn't work with IE for me

2008-07-04 Thread Karl Swedberg
Sure, feel free to ask for feature enhancements here. Forgive me if you're already aware of this, but I thought I'd point out that you do not need to use the rel attribute to grab the content. You can use whatever attribute you'd like. In fact, if you're pointing to local content, it would

[jQuery] Re: cluetip doesn't work with IE for me

2008-07-04 Thread David Morton
Yes, I think I can, now that I can use the local element concept. I was afraid before that I'd have to have a $('something').cluetip("dynamic") line for every row - and since that data is dynamic, I couldn't reference another file. Is this the proper place to ask for feature enhancements for clue

[jQuery] Re: NEW: XML to JSON Plugin

2008-07-04 Thread Diego
Hi Mike, I actually wrote this to use with your form plugin (to process xml responses of a CMS). Really appreciate your feedback... Cheers, Diego Mike Alsup wrote: > > See the documentation page for more examples and demos. > > XML to JSON Plugin -http://fyneworks.com/jquery/xml-to-json/ > > >

[jQuery] Lightbox/Zoom mashup

2008-07-04 Thread flagship interactive
I am trying to find a solution that is like Lightbox but with an option to show a small box to show detail of the image in a separate box. Basically, integrate jqZoom into Lightbox. Anyone know of such a beast or how to mash them up? I tried but I am not getting the proper result. I used: http://

[jQuery] Re: NEW: XML to JSON Plugin

2008-07-04 Thread Diego
Hi Alexsandro, Do you mean (1)"convert the generate JSON back to XML"? OR... (2)"define a javascript object and convert it to XML"? If (1): I initially built this plugin for my personal use (for my "convenience") so I could easily process XML data. Because of that, I didn't bother to differe

[jQuery] Re: cluetip doesn't work with IE for me

2008-07-04 Thread Karl Swedberg
David, Is there any way that you can just reference a separate file with your script in it? That's the preferred way. You can then put src="yourfilename.js"> in the head of your document. Then in yourfilename.js, you put the cluetip line inside a document ready: $(document).ready(funct

[jQuery] Re: UI Dialog with BUG when resize in IE?

On Fri, 4 Jul 2008 12:18:52 -0700 (PDT), Leandro Vieira Pinho wrote: > I´m with problem with UI Dialog, and I´m thing it´s a bug. > > In this UI Dialog example http://docs.jquery.com/UI/Dialog is possible > to verify. > > If you resize the Dialog to right, for example, and then try to resize >

[jQuery] Re: cluetip doesn't work with IE for me

Oh son of a . My entire layout has a table (I know, I know) and so I had to move the script call to the footer file. At least I can now stick the tooltip text in a span that gets hidden and avoid looping again. On Fri, Jul 4, 2008 at 7:01 PM, David Morton <[EMAIL PROTECTED]> wrote: > wait,

[jQuery] Re: Sumbit Twice a form

I'd script the database host to send the data on to the second site, myself... On Fri, Jul 4, 2008 at 6:18 PM, xomero <[EMAIL PROTECTED]> wrote: > > How can i submit a form twice, let say I want to save the form data on > my database and with the send the same form data to a different script > in

[jQuery] Re: cluetip doesn't work with IE for me

wait, that still doesn't quite explain it all... The other way I tried it was to have a span right after the link that contain the tooltip text, with a class matching the rel link in the anchor. Then I called the script to load local after the table, after the form actually. On Fri, Jul 4, 2008 a

[jQuery] Re: Help finding this script

You use an 'onmouseover=()' event to change the image in a specified div. e.g function changeImage(image_url){ $("#image_container").empty(); $("#image_container").append(''); } This function just swaps the images in the image container. On Jul 4, 9:48 pm, "Kevin Pepperman" <[EMA

[jQuery] jQuery asynchronous responses

Hi guys. jQuery docs(http://docs.jquery.com/Ajax/jQuery.ajax#options) present jQuery.ajax option with asynchronous requests by default. Is it possible with jQuery to do asynchronous responses? I'll want to display asynchronous server side responses after submit a form. Cheers Marco Antonio

[jQuery] Re: cluetip doesn't work with IE for me

erg. The data is available in a loop while in the table... I'll have to loop again to output the javascript. Drat that IE stuff. I'll give it a shot. Maybe I can capture the javascript string in variable as I loop and then output it later. I have tried to get rid of the tables altogether, but

[jQuery] Re: Form submit issues

> What is wrong with this code? > > $(document).ready(function() { >         $("#f_submit").hide(); >         $("#f_altsubmit").click(function(event) { >                 $("#checkoutform")[0].submit(); >                 return false; >         }); > > }); > > In FF3 this throws an error in the Err

[jQuery] Re: Cluetip: Why isn't my top left graphic displaying in my tip?

Yea, I see what you mean. However, it's not perfect it seems. The reason is that when I have .cluetip-rounded #cluetip-outer set to background: transparent; My content box isn't white anymore and it needs to be. This is what I'm using in my .css: .cluetip-rounded #cluetip-outer { background: tr

[jQuery] Form submit issues

What is wrong with this code? $(document).ready(function() { $("#f_submit").hide(); $("#f_altsubmit").click(function(event) { $("#checkoutform")[0].submit(); return false; }); }); In FF3 this throws an error in the Error console : Error: $(

[jQuery] Sumbit Twice a form

How can i submit a form twice, let say I want to save the form data on my database and with the send the same form data to a different script in an external host.

[jQuery] Using JQuery to embed HaloScan comments on a webpage

I am trying to use JQuery to embed Haloscan comments (http:// www.haloscan.com) on a webpage. Normally, one would hardcode the Haloscan reference code in the HTML just under a hardcoded comment. Then one includes the Haloscan javascript underneath the message, with the unique identifier to the me

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

Not off topic at all, I'll bet a lot of people wonder about that. The short answer is that you are creating a function and calling it immediately. You pass in jQuery as an argument which goes into the function parameter named $, so that's how $ gets to be a reference to the jQuery object. Let's

[jQuery] Re: NEW: XML to JSON Plugin

> See the documentation page for more examples and demos. > XML to JSON Plugin -http://fyneworks.com/jquery/xml-to-json/ > > As always, feedback is welcome! > > Cheers, > Diego Very nice, Diego!

[jQuery] Re: Help finding this script

The effects on this page are done with Adobe Flash. I am not sure how you would do that with jQuery. But I will bet it could be done to some extent. On Fri, Jul 4, 2008 at 2:32 PM, Pedro Correia <[EMAIL PROTECTED]> wrote: > > Greetings! > > > I'm trying to find some jquery plugin like on this we

[jQuery] Re: Help finding this script

You probably want to use the "hover" event to replace a photo and a block of text on your page. What have you tried? Can you put up a simple test page for us to look at? Thanks! ~spicyj

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

On Fri, Jul 4, 2008 at 3:08 PM, benjam <[EMAIL PROTECTED]> wrote: > What exactly does (function($){ ... })(jQuery) do? > This function($){ ... } is an anonymous function. Because functions are first-class objects in JavaScript, they can be treated just like any other object; which means that yo

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

Slightly off topic question... What exactly does (function($){ ... })(jQuery) do? How does it work? I understand what it basically does, how it treats $ like jQuery, but how does that notation do that, exactly?

[jQuery] Re: How to catch function call

That's good - if it were a different domain we'd be in trouble! I forgot to ask, but the JavaScript function you want to intercept is a global function in the iframe, correct? Then you could use something like this plugin (untested): ;(function( $ ) { $.fn.frameHook = function( name,

[jQuery] Re: selecting div's with dynamic id's

D'oh! silly typo. You crack me up, Michael. :-) --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 4, 2008, at 3:04 PM, Michael Geary wrote: For anyone who is wondering, "functino" is Italian for "tiny function." Here's another way to write the code,

[jQuery] UI Dialog with BUG when resize in IE?

Hi Guys, I´m with problem with UI Dialog, and I´m thing it´s a bug. In this UI Dialog example http://docs.jquery.com/UI/Dialog is possible to verify. If you resize the Dialog to right, for example, and then try to resize to left, the titlebar and content doesn´t seems to reduce it´s width. You

[jQuery] Re: selecting div's with dynamic id's

For anyone who is wondering, "functino" is Italian for "tiny function." Here's another way to write the code, using only a single event handler (event delegation) instead of individual event handlers on every link. This will be faster if there are a lot of product descriptions. I'd also put an ID

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

On Fri, Jul 4, 2008 at 7:29 AM, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Note that the > (function($){ ... })(jQuery); > approach is 6 bytes shorter than > (function(){ var $ = jQuery; })(); > > It also looks cooler ;) > These were exactly the points I was going to make. Since $ is really a u

[jQuery] Help finding this script

Greetings! I'm trying to find some jquery plugin like on this webpage http://w1.siemens.com/entry/cc/en/ However I don't know that effect name, so I really don't know how to search :) For instance you have some links like: Drive Technologies, Automation Technologies, Solutions for Industries,

[jQuery] Re: firefox error NS_ERROR_XPC_JS_THREW_STRING with ajax form submission

Error: [Exception... "'Permission denied to call method XMLHttpRequest.open' when calling method: [nsIDOMEventListener::handleEvent]" Usually you get this error when you are trying to do an ajax call to a different domain than the calling template is on. That's a no-no. There are ways arou

[jQuery] Re: NEW: XML to JSON Plugin

Very good!!! Are possible to do reverse? -- Alexsandro www.alexsandro.com.br On 4 jul, 12:34, Diego <[EMAIL PROTECTED]> wrote: > I wrote this a few months but didn't have the time to share it. Now > that I've re-done the documentation for 2 of my plugins I thought I'd > give it a few hours, k

[jQuery] Re: cluetip doesn't work with IE for me

Hi David, Seems that IE does not like the script being executed from within a table cell. If you move the scripts out of the body and put them in the or in a separate file (and make sure you're calling cluetip from within a document ready), it should work. I had to clear my cache before

[jQuery] Re: selecting div's with dynamic id's

Hi Karl, Of course, you're right. Javascript should be kept separate from the HTML. Cheers, Diego A. 2008/7/4 Karl Swedberg <[EMAIL PROTECTED]>: > > Hi Kris, > > I'd give the "show description" links a common class -- for example, > "show-description" That way you can use a basic selector to a

[jQuery] ie6 bug w/ jquery accordion-drawer real world demo

Hi all, Is there anybody who has fixed the css of this apple menu demo under ie6 ? I mean the demo that's on this tutorial and also available under the jquery ui svn trunk : http://jqueryfordesigners.com/slide-out-and-drawer-effect/ TIA

[jQuery] Re: selecting div's with dynamic id's

Hi Kris, I'd give the "show description" links a common class -- for example, "show-description" That way you can use a basic selector to apply to all of those links. Then, I'd use the "this" keyword to find the appropriate description relative to the clicked link. Adding "return fals

[jQuery] Re: cluetip doesn't work with IE for me

Well, I wondered about that, there are some funny characters, so I changed it. Now the text being loaded is just one word. Still errors out. On Fri, Jul 4, 2008 at 10:42 AM, Karl Swedberg <[EMAIL PROTECTED]> wrote: > > Hi, > > I can't tell from the information what is causing the problem, but i

[jQuery] Re: Validate + Captcha + Remote

up

[jQuery] Re: cluetip doesn't work with IE for me

I even changed it to just have the tip in the call: two $("#link_529806").cluetip("two"); three $("#link_550060").cluetip("three"); And that crashes. > > On Fri, Jul 4, 2008 at 10:42 AM, Karl Swedberg <[EMAIL PROTECTED]> > wrote: > >> >> Hi, >> >> I can't tell from the information what is c

[jQuery] firefox error NS_ERROR_XPC_JS_THREW_STRING with ajax form submission

Hi Have a problem that shows with firefox (2.0.0.15 on Windows) but not with IE (6). I'm using the Form plugin with a trivial form. I'm using a call to $.ajaxForm() to do an ajax form submission. It never works with firefox, and instead I get this really user friendly error message in the err

[jQuery] tablesorter - adding rows - need help formating

I've got a table that pops up in an iframe, with data from mysql, with id of datatable.Underneath the table are two buttons: When I press Sign Me Up, I want an empty row to appear, for the user to enter. First question: the empty row comes up, but the formatting is all wrong - all of a

[jQuery] jCarousel - Assigning a current class to external controls

Hi Jan I have an example page set up at http://dsagency.eledesign.com/. I am using two different controls to run the carousel. 1. The List of Articles above the carousel. 2. The next and previous buttons. I would like to be able to set a class of current to the list of articles so that no matte

[jQuery] Re: selecting div's with dynamic id's

Hi Kris, The best way is to not use an ID, or to use a class. Based on the HTML you posted, you could just use this: $(this).parent().next().show().end().remove(); ... which will show the description and remove the "show description" link EXAMPLE: Name: Red Widget Price: 22.00 Show d

[jQuery] Re: cluetip doesn't work with IE for me

Hi, I can't tell from the information what is causing the problem, but if I had to guess, I'd suggest looking at the content that is being loaded. I've seen problems before when invalid markup, usually caused by unclosed tags, is inserted into the cluetip. Not sure if this is the problem

[jQuery] NEW: XML to JSON Plugin

I wrote this a few months but didn't have the time to share it. Now that I've re-done the documentation for 2 of my plugins I thought I'd give it a few hours, knock some examples together and share it with the whole world (ok, maybe just a few people). Basic example: var xml = 'Hello world'; var

[jQuery] selecting div's with dynamic id's

Whats the best way to provide functionality (eg. toggle an 'additional information' div) when dealing with records with unique id's. For example lets say we are dealing with product records each one has a unique id which is a number, so the HTML might look something like this: Name: Red

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

> That will fail if jQuery isn't included, you can do either: > if( window.jQuery ) > or > if( typeof jQuery != 'undefined' ) Oops! :-O Fixed the problem. Thanks for pointing it out... 2008/7/4 Ariel Flesler <[EMAIL PROTECTED]>: > > > I've actually ellaborated on the idea and come up with my o

[jQuery] Re: Superfish 1.4.3 released - now with new documentation

Thanks Olivier! Regarding the link to a pure CSS menu article, there is a link to A List Apart article on the word "suckerfish" close to the top of the Overview section as soon as you enter the page. Also, obviously the demo CSS files do all the work for you anyway. Regarding the 1px jump on tex

[jQuery] Re: Clear queued effects

$(element).queue( 'fx', [ ] ).stop(); Can be reduced to $(element).queue( [ ] ).stop(); -- Ariel Flesler http://flesler.blogspot.com On 4 jul, 08:32, caroig <[EMAIL PROTECTED]> wrote: > I've mean messing with hover effects and one of the problems I can't > resolve is the queueing of events/eff

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

> I've actually ellaborated on the idea and come up with my own version: > ;if(jQuery) (function($){ >  ... > > })(jQuery); > > ...which: > - encloses local vars > - silently ignores the code if jQuery is unavailable > - avoid colisions when files are merged (; at the start) That will fail if jQu

[jQuery] Re: blockUI fadeOut

> is the blockUI fadeout function working? I was unable to get it to > fadeOut fast. (0 fadeOut) > > Here is an excerpt: > >         $.blockUI({ >             centerX: true, >             centerY: 0, >             message: $('#inRum'), >             css: { >               top: '200px', >          

[jQuery] Re: Superfish 1.4.3 released - now with new documentation

This is really nice Joel. The css are well structured and I think easy to understand. Since it is a prerequisite to use superfish, perhaps you may consider adding a link to a pure css menu article (or to an exemple in your site). Overall the superfish package is very slick to use. I have also

[jQuery] IE7 problem with cycling images - help much appreciated

Hi everyone, Hopefully this hasnt been answered before - wasnt able to find it in my search. Im building a portfolio site, using wordpress and jcarousel. An example of one of the pages Im having problems with is: http://fahrentest.timekept.com/the-powder-room/ It works fine in all browsers exc

[jQuery] Superfish 1.4.3 released - now with new documentation

Hi everyone, I just released Superfish 1.4.3. The documentation is completely overhauled and now uses Mike Alsup's fantastic templates. Please let me know if I've left anything incomplete - it's quite a big nail-biting change. The CSS has undergone further revision. Rather than each menu type (h

[jQuery] Re: Cluetip: Why isn't my top left graphic displaying in my tip?

Because .cluetip-rounded #cluetip-title has a background color of #FF. When it's 'transparent', the underlying element's background image can be seen through it. As it is, it can be seen. On Jul 3, 10:41 pm, datatv <[EMAIL PROTECTED]> wrote: > I finally have everything pretty much figured o

[jQuery] jCarousel + Reflection.js - Need some help!

I am trying to implement jCarousel (http://sorgalla.com/jcarousel/) to display thumbnail images which the user can select to navigate media. However, I want to intergrate Reflection.js (http://cow.neondragon.net/ stuff/reflection/) as well to create dynamic reflections below my thumbnail images.

[jQuery] Re: Drap 'n' Drop with easing....

On Fri, Jul 4, 2008 at 11:28 AM, tigercore <[EMAIL PROTECTED]> wrote: > > I want to use the drag'n'drop feature to create a virtual light-table > of sorts, similar to the effect on http://www.thibaud.be/ where the > object continues to move about after you have 'let go' of it. > > Could i combine

[jQuery] Re: UL drag drop

Take a look at jQuery UI. It has a sortable component that makes it as simple as: $("ul").sortable() Here's a demo: http://ui.jquery.com/functional_demos/#ui.sortable If you have any questions on it, there's a dedicated jQuery UI mailing list: http://groups.google.com/group/jquery-ui/ - Richa

[jQuery] Drap 'n' Drop with easing....

I want to use the drag'n'drop feature to create a virtual light-table of sorts, similar to the effect on http://www.thibaud.be/ where the object continues to move about after you have 'let go' of it. Could i combine an easing script with a d'n'd script to achieve this? Or is there anything out t

[jQuery] Clear queued effects

I've mean messing with hover effects and one of the problems I can't resolve is the queueing of events/effects. What I'd like to do is to remove all effects from the queue once a new effect event has been triggered. Is this possible with a combination of the animate and stop functions? What I'd

[jQuery] jCarousel + Reflection.js - Need some help!

Hi, I am using the jCarousel (http://sorgalla.com/jcarousel/) to display thumbnail images. What I wanted to implement with jCarousel is a reflection under each thumbnail using Reflection.js (http:// cow.neondragon.net/stuff/reflection/). These reflections would need to be dynamic as well and mov

[jQuery] Re: How to catch function call

Michael, thanks for your time, It's loaded form the same domain. On Jul 3, 3:41 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote: > Is the iframe loaded from the same domain as the containing page, or a > different domain? > > > From: Luiz Abrahao > > > I have one page with one iframe, and there a

[jQuery] strange problem

Hi, all why "$('#browsing_btns').children()" just select nothing? - $('#browsing_btns').children().each(function(xindex){ console.log(xindex + ':'+$(this).attr('id')); }) ... ... If I move all the bottons inside a , then it works. J

[jQuery] Re: problems in Firefox 3, Opera 9.5 with jQuery Corner plugin on images

Hello everyone, A fix has been found, so I hope the developer reads this in case it helps. Here's a quote from the guy that worked it out: "jQuery Corners was inserting static child elements to the divs that needed corners, assuming that these would overlay the background of the containing div.

[jQuery] Re: $.getScript in Firefox 3

Any one got any ideas?? On Jun 25, 10:12 am, robert_shipley <[EMAIL PROTECTED]> wrote: > I've been developing a website and we usegetScriptto load all of our > javascript files (other than jQuery) so the header of the page is > shorter. We have a mechanism in place which allows functions to be >

[jQuery] Re: How to catch function call

Hi Micheael, Thanks for your time. Yes, it is. The pages that are loaded into the iframe are form the same domain. Thanks On Jul 3, 3:41 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote: > Is the iframe loaded from the same domain as the containing page, or a > different domain? > > > From: Luiz

[jQuery] UL drag drop

Can someone point me to an example of drag-n-drop within an unordered list? I need to replace a scriptaculous library and am giving jQuery a go because of it's massive praise of late. I've found plugins and examples of pretty much everything I'd need except for a simple drag and drop in a UL. Chee

[jQuery] Database Request

Hi .. I found your jquery script and it's great cause it's the first that i found with multiplie field. But you don't take list from a database ( sql ) , only from file. Is it possible to have a field that take the list from a sql database ?? Thanks

[jQuery] Re: DELETE HTTP method

I think you said you were using Django? I suggest looking at what technique it uses to do REST/DELETE and such. Rails uses the trick where it does DELETE and such as a POST with a "_method=delete" argument. I would imagine Django has a solutio of their own/similar. On Thu, Jul 3, 2008 at 8:20 P

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

Hi Mike, You are right, I meant to say "enclosures of either kind"... ;-) We are on the same page with this. You don't *have* to do with unless noConflict() is on, but it's "safer" to do it anyway, specially when you share your code (ie.: plugin developers). But like yourself, I do it all the tim

[jQuery] horizontal and vertical accordion for jQuery?

I am using a prototype accordion from this site that has horizontal nested in vertical accordion. http://stickmanlabs.com/accordion/ Because it has some issue with IE, and that I'd been using jquery tab for the same site, therefor very much prefer to switch jQuery version, however I am unable t

[jQuery] Re: Cycle / carousel with partial images on either side?

Mike Alsup wrote: Wondering if there's an easy way to do this, either with the Cycle plugin by Mike Alsup or a similar plugin. We have a set of images scrolling left to right, but is it possible to show a little bit of the images on either side as well? ie. | A | | ALL OF B | | C |