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
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
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
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/
> >
>
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://
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
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
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
>
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,
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
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
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
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
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
> 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
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
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: $(
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.
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
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
> 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!
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
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
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
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?
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,
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,
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
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
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
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,
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
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
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
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
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
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
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
up
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
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
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
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
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
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
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
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
> 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
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
$(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
> 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
> 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',
>
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
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
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
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
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.
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
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
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
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
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
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
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
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.
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
>
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
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
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
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
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
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
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 |
73 matches
Mail list logo