[jQuery] Re: sometimes lenght property does not work but size() does return correct value

2009-12-13 Thread Ariel Flesler
It's length, not lenght. -- Ariel Flesler On Dec 13, 5:59 am, manko uha...@gmail.com wrote: Sometimes $('p').lenght returns undefiend property but when i replace lenght with size() method i get the  correct number of p elements in current dom ??

Re: [jQuery] Re: Scroll so that an element is at the bottom of the viewport

2009-11-15 Thread Ariel Flesler
). currently it's still a prototype. i have a question as well. what should i do if i want to scroll to an element and make it appear in the center of the viewport? all elements are absolutely positioned. thx for the help. -- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: Scroll so that an element is at the bottom of the viewport

2009-11-02 Thread Ariel Flesler
$.scrollTo('#elem', 1000, { over:{ top:1 }, offset:{ top: -$(window).height() } }); Haven't tried it, but this should do. If it doesn't, you could just calculate the position using simple math. -- Ariel Flesler On Nov 2, 8:28 am, Deniz Dogan deniz.a.m.do...@gmail.com wrote: I'm looking

[jQuery] Re: $.Event is not a function js/jquery/ui.core.js Line 345

2009-10-22 Thread Ariel Flesler
Can you provide a link to the page where you see this error? -- Ariel Flesler http://flesler.blogspot.com On Oct 22, 1:32 pm, Maskime maxime.f...@gmail.com wrote: Hi all, I'm having the following error when  opening a dialog $.Event is not a function js/jquery/ui.core.js Line 345 I don't

[jQuery] Re: $.Event is not a function js/jquery/ui.core.js Line 345

2009-10-22 Thread Ariel Flesler
('#' + sDialogId).dialog('destroy'); } }); It seems that the error occure when jQuery launch the dialog 2009/10/22 Ariel Flesler afles...@gmail.com Can you provide a link to the page where you see this error? -- Ariel Flesler http://flesler.blogspot.com On Oct 22, 1:32 pm

[jQuery] Re: Scroll To After AJAX Request...

2009-08-24 Thread Ariel Flesler
Include jQuery.scrollTo[1] and then, everytime the Ajax response arrives: $.scrollTo(0, 1000); Where 1000 is how many milliseconds to animate. You can of course add more settings as needed. [1] http://flesler.blogspot.com/2007/10/jqueryscrollto.html -- Ariel Flesler On Aug 23, 9:34 pm, Erik

[jQuery] Re: localscroll not working, help? could it be lightbox?

2009-08-24 Thread Ariel Flesler
It currently works for me, and yeah, don't spam ;) -- Ariel Flesler On Aug 23, 8:18 pm, Alice kikizi...@gmail.com wrote: problem can be seen here:http://unedible.com/alicewhite/ it's just not scrolling. sometimes when i change the code around a bit, the anchor images stop working completely

[jQuery] Re: Scroll to top of page after AJAX load.....

2009-08-24 Thread Ariel Flesler
Ah, saw this one after the other. Got a link to what you've been trying to achieve ? -- Ariel Flesler On Aug 23, 7:03 pm, Erik eriks...@mac.com wrote: Using AJAX to load content within a div. Need to find a way to scroll to the top of the page after loading content inside div on same page

[jQuery] Re: jQuery localScroll target problem

2009-07-03 Thread Ariel Flesler
That should work correctly. Do you have a demo online ? -- Ariel Flesler On Jul 2, 3:55 pm, Frozzare fredrik.for...@gmail.com wrote: Hello. I don't get jquery localscroll target setting work right. I want to scroll the div's in #content div, but it's not working. my js code

[jQuery] Re: animate scrollTop

2009-05-30 Thread Ariel Flesler
It won't work on all major browsers. Not all of them support scrolling when applied to 'html', some require 'body'. This varies depending on whether you're on quirks mode or not. It's even more problematic when animating iframes. -- Ariel Flesler On May 30, 1:52 pm, GaVrA ga...@crtaci.info

[jQuery] [ANN] 2 Ajax plugins for jQuery +1.3

2009-05-30 Thread Ariel Flesler
-for-jquery-13.html Cheers -- Ariel Flesler

[jQuery] Re: Overriding jQuery methods

2009-05-28 Thread Ariel Flesler
I haven't formally released it yet, but feel free to use it: http://test.flesler.com/jquery.broadcast/jquery.broadcast.js Precarious demo: http://test.flesler.com/jquery.broadcast/ Cheers -- Ariel Flesler On May 28, 5:51 am, Andho and...@gmail.com wrote: I need to override a jQuery method

[jQuery] Re: $().someFunction(); -- The First Pair of Parentheses?

2009-05-03 Thread Ariel Flesler
FYI, not anymore. $() === $([]) It now returns an empty jQuery collection -- Ariel Flesler On May 3, 5:22 am, Klaus Hartl klaus.ha...@googlemail.com wrote: $() === $(document) --Klaus On 3 Mai, 07:39, kiusau kiu...@mac.com wrote: QUESTION:  What does the first pair of parentheses

[jQuery] Re: $().someFunction(); -- The First Pair of Parentheses?

2009-05-03 Thread Ariel Flesler
Correction: $() === $(document) $(null) === $([]) $() === $([]) This is wrongly documented and has orphaned code, will report. -- Ariel Flesler On May 3, 12:16 pm, Ariel Flesler afles...@gmail.com wrote: FYI, not anymore. $() === $([]) It now returns an empty jQuery collection

[jQuery] Re: $().someFunction(); -- The First Pair of Parentheses?

2009-05-03 Thread Ariel Flesler
Fixed: http://dev.jquery.com/changeset/6334 $() === $(document) $(undefined) === $([]) $(null) === $([]) $() === $([]) -- Ariel Flesler On May 3, 12:28 pm, Ariel Flesler afles...@gmail.com wrote: Correction: $() === $(document) $(null) === $([]) $() === $([]) This is wrongly documented

[jQuery] Re: serialScroll option : start -- no effect

2009-04-24 Thread Ariel Flesler
on: http://www.egoactive.com/transfer/jquery-demo/#technical/django It shouls scroll to item # 3... As we defined in de serialScroll methode (interfase.js): start: 3 Thanks in advance On Apr 14, 1:16 am, Ariel Flesler afles...@gmail.com wrote: Can you provide a demo online ? Cheers

[jQuery] Re: localScroll not working in Internet Explorer

2009-04-18 Thread Ariel Flesler
Haven't gotten too deep when checking it.. but I advice you to use serialScroll for the prev/next part. It integrates perfectly with localScroll and both would share one single scrollTo so it's just a few more bytes. Cheers -- Ariel Flesler On Apr 17, 5:06 pm, Dan Pouliot danpoul...@gmail.com

[jQuery] Re: serialScroll option : start -- no effect

2009-04-13 Thread Ariel Flesler
Can you provide a demo online ? Cheers -- Ariel Flesler On Apr 10, 6:17 am, Niels niels.siem...@gmail.com wrote: We're using the serialScroll method and using some of the options. Only the option start has no effect. We want to scroll at the start to element 2 and not to the default

[jQuery] Re: Triggering a namespaced event

2009-04-08 Thread Ariel Flesler
Can you make a demo out of this ? Please put the unminified version of jQuery 1.3.2. -- Ariel Flesler On Apr 8, 4:12 pm, Paul Thiel pjth...@gmail.com wrote: Hi guys. Using jQuery 1.3.2 and getting some unexpected behavior this morning. This works, with the alert being executed when

[jQuery] Re: jQuery.event.trigger()

2009-04-08 Thread Ariel Flesler
(Reply to either) Can you make a demo out of this ? Please put the unminified version of jQuery 1.3.2. -- Ariel Flesler On Apr 8, 4:52 pm, Paul Thiel pjth...@gmail.com wrote: Hi guys. Trying again as not sure what happened to the previous post. I am using jQuery 1.3.2 and getting some

[jQuery] Re: slide/scroller to top

2009-03-26 Thread Ariel Flesler
The browser scrollbar ? If so: With the ScrollTo plugin [1]: $.scrollTo( 0 ); You can add a duration as second argument (f.e: 1000). [1] http://flesler.blogspot.com/2007/10/jqueryscrollto.html -- Ariel Flesler http://flesler.blogspot.com On Mar 25, 12:41 pm, introvert aljaz.faj

[jQuery] Re: scrollto and jumping

2009-03-26 Thread Ariel Flesler
In case James comment doesn't do for you, please provide a demo. -- Ariel Flesler http://flesler.blogspot.com On Mar 24, 11:27 pm, kevinm sonicd...@gmail.com wrote: I have a vertical scrolliing area and inside the first area I have an a link that when clicked calls scrollto to scroll the main

[jQuery] Re: scrollto function works with static html, but not with identical generated html

2009-03-25 Thread Ariel Flesler
I don't see that link... neither a call to scrollTo within any of the included js files. Where should I look ? -- Ariel Flesler http://flesler.blogspot.com On Mar 25, 1:47 pm, ryan ryanr...@gmail.com wrote: i forgot to mention that the temporary scroll button i've set up is a h1scroll down

[jQuery] Re: Tutorial for serialScroll?

2009-03-21 Thread Ariel Flesler
Hi Jack The rule of thumb is, if it works without javascript, it'll work w/it. Make the pane scrollable with overflow:visible and the items within it. Once it works, you can switch to overflow:hidden + serialScroll. -- Ariel Flesler http://flesler.blogspot.com On Mar 20, 2:08 pm, Jack

[jQuery] Re: the hash option in localscroll plugin doesn't work in safari

2009-03-12 Thread Ariel Flesler
Can you provide a test case ? A demo that isn't working so I can check. First make sure you don't have js errors in the page :) -- Ariel Flesler http://flesler.blogspot.com On Mar 12, 9:12 pm, mangajin sushisupers...@gmail.com wrote: Hi, I did use localscroll as the plugin in order

[jQuery] Announce: ScrollTo 1.4.1 and LocalScroll 1.2.7 Released!

2009-03-11 Thread Ariel Flesler
a new release for jquery.serialScroll soon. Cheers -- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: location.hash -scrolling to the middle of the page

2009-03-09 Thread Ariel Flesler
-- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: location.hash -scrolling to the middle of the page

2009-03-09 Thread Ariel Flesler
-- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: LocalScroll with anchor in URL not working

2009-03-05 Thread Ariel Flesler
reloads scrolled over to the correct spot, other times it just seems to reset the window to 0.0. Let me know if you have any ideas. Appreciate the help. Thanks. --Carl. On Mar 4, 5:39 pm, Ariel Flesler afles...@gmail.com wrote: It seems to be working well for me, on FF2. Using the back button

[jQuery] Re: LocalScroll with anchor in URL not working

2009-03-04 Thread Ariel Flesler
(0,0); $.localScroll.hash({ axis:'x', duration:1500 }); $('#container').localScroll({ axis:'x', hash:true, duration: 1000 }); }); -- Ariel Flesler http://flesler.blogspot.com On Mar 4, 3:47 pm, clorentzen carl.lorent...@gmail.com wrote: Sorry, I hit post button

[jQuery] Re: LocalScroll with anchor in URL not working

2009-03-04 Thread Ariel Flesler
. On Mar 4, 5:04 pm, Ariel Flesler afles...@gmail.com wrote: I think that happens because you first need to reset the scroll to (0,0). The browser also scrolls natively. I'm planning to add this within $.localScroll.hash, as well as taking advantage of sync animations, added since 1.3

[jQuery] Re: Get all events registered for an element

2009-02-23 Thread Ariel Flesler
jQuery(elem).data('events'); That's an object with random keys where each key contains a function (handler). -- Ariel Flesler http://flesler.blogspot.com On Feb 23, 10:48 am, Sandesh Singh sandesh...@gmail.com wrote: Hi. As I understand, you can have custom events in jquery, like so

[jQuery] Re: building a custom speed

2009-02-23 Thread Ariel Flesler
You can create custom speeds, but they're just aliases. You can't have functions, just numbers. $.fx.speeds.custom = 450; -- Ariel Flesler http://flesler.blogspot.com On Feb 23, 7:58 pm, comslash.com comsl...@gmail.com wrote: I was wondering if any one could point me in the right direction

[jQuery] Re: jquery and minify

2009-02-01 Thread Ariel Flesler
://code.google.com/p/minify/ retains comments when that are like /*! */ also I have seen that sometimes jQuery has this style of comment already 2009/1/31 Ariel Flesler afles...@gmail.com You should keep the headers somewhere, preferably close to the code. Something like this: /** * jQuery */ (function

[jQuery] Re: plugins.jquery.com does not have 1.3.x

2009-01-31 Thread Ariel Flesler
Ping Mike Hostetler about this. I told him about this and he did indeed added it. Maybe he forgot to add it somewhere else... -- Ariel Flesler http://flesler.blogspot.com On Jan 30, 1:29 pm, Mika Tuupola tuup...@appelsiini.net wrote: When submitting a new plugin or plugin release

[jQuery] Re: jquery and minify

2009-01-31 Thread Ariel Flesler
You should keep the headers somewhere, preferably close to the code. Something like this: /** * jQuery */ (function($){...}); /** * Plugin 1 */ (function($){...}); /** * Plugin 2 */ (function($){...}); -- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: how tu use jQuery.getJSON in synchronous mode

2009-01-25 Thread Ariel Flesler
It's success not succcess. -- Ariel Flesler http://flesler.blogspot.com On Jan 25, 2:36 pm, Olivier lafanech...@gmail.com wrote: I try to use jQuery.ajax with dataType : 'json' : jQuery.ajax({     url : poll.json,    dataType : 'json',    cache : false,   succcess : function(jsonObj

[jQuery] Re: jQuery onunload

2009-01-23 Thread Ariel Flesler
Update to 1.3.x. That part was greatly optimized. -- Ariel Flesler http://flesler.blogspot.com On 20 ינואר, 01:44, Charles Johnson lizard...@gmail.com wrote: My site runs on quite a bit of jQuery-based Javascript, and occasionally I'll receive a complaint from a reader that their browser

[jQuery] Re: run function when 'each' is done, how?

2009-01-23 Thread Ariel Flesler
if( $('span.countdown').length ){ updateCounter(); } -- Ariel Flesler http://flesler.blogspot.com On 23 ינואר, 11:39, johannesf johannes.foss...@gmail.com wrote: Hi jquery is fantastic :-) My problem: I have a simple each-loop and after the loop I want to run a js-function. How can I

[jQuery] Re: jquery 1.3 n.queue is not a function?

2009-01-19 Thread Ariel Flesler
You really need to provide a demo online else we can't figure out the problem. -- Ariel Flesler http://flesler.blogspot.com On Jan 19, 4:23 pm, yellow1912 yellow1...@gmail.com wrote: Oops, Im sorry but $(selector + ' .step[title='+currentIndex+'] div.stepContent').fadeOut (slow

[jQuery] Re: jQuery 1.3 live() vs listen/intercept plugins

2009-01-17 Thread Ariel Flesler
live is very similar to Intercept. It bubbles up using closest(). Listen is faster and specially more scalable, but supports a small subset of selectors. It can also bubble up if you specify so. -- Ariel Flesler http://flesler.blogspot.com On Jan 16, 5:58 pm, rolfsf rol...@gmail.com wrote: I'm

[jQuery] Re: .live help needed

2009-01-17 Thread Ariel Flesler
The idea is that you don't need to call live every time, it works persistently. Just call it at start and it should keep on working. -- Ariel Flesler http://flesler.blogspot.com On Jan 16, 6:57 pm, seasoup seas...@gmail.com wrote: I'm playing around with the new .live functionality.  it seems

[jQuery] Re: .animate() custom animation callback?

2009-01-16 Thread Ariel Flesler
get that link? I thought those were innocent hashes :D On Jan 15, 6:45 pm, Ariel Flesler afles...@gmail.com wrote: How come it isn't on the docs ? http://docs.jquery.com/Effects/animate#toptions On Thu, Jan 15, 2009 at 6:43 PM, Ricardo Tomasi ricardob...@gmail.com wrote: It's

[jQuery] Re: propagation in 1.3

2009-01-15 Thread Ariel Flesler
event.stopPropagation (), returning false or using triggerHandler. -- Ariel Flesler http://flesler.blogspot.com On Jan 15, 10:02 am, Javier Martinez ecentin...@gmail.com wrote: First of all, thanks to all jQuery members for the new release! is a great gift! With this release, one of the main

[jQuery] Re: .animate() custom animation callback?

2009-01-15 Thread Ariel Flesler
for own animations? -- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: How can I add a TRUE custom event or modify existing jQuery functions?

2009-01-11 Thread Ariel Flesler
released betas. Cheers -- Ariel Flesler http://flesler.blogspot.com On Jan 9, 5:30 pm, kape erlend.so...@gmail.com wrote: I have created custom styled buttons in my page and would like to toggle their class and therefore their look when they get disabled or enabled.  So is there any way to call

[jQuery] Re: How can I add a TRUE custom event or modify existing jQuery functions?

2009-01-11 Thread Ariel Flesler
Nice, let me know how it goes. On Sun, Jan 11, 2009 at 2:05 PM, kape erlend.so...@gmail.com wrote: Thanks, I'll actually give that a try. On Jan 11, 9:46 am, Ariel Flesler afles...@gmail.com wrote: I just made a plugin to do EXACTLY what you're asking for. It's not formally released yet so

[jQuery] Re: IE8.

2009-01-11 Thread Ariel Flesler
I noticed, yesterday, that on IE8, scrollTo doesn't work on overflowed elements. http://demos.flesler.com/jquery/scrollTo/ I even tried $('#elem').attr({ scrollLeft:500, scrollTop:500 }) but that didn't work as well. -- Ariel Flesler http://flesler.blogspot.com On Dec 18 2008, 1:50 pm

[jQuery] Re: Custom Events on Non-DOM Objects

2009-01-06 Thread Ariel Flesler
Using non-dom elements should work just fine. You'd rather not use the document as that could lead to unexpected memory leaks. -- Ariel Flesler http://flesler.blogspot.com On Jan 6, 1:56 pm, Marcus Cavanaugh marcuscavana...@gmail.com wrote: I noted that firing custom events seems to work

[jQuery] Re: Test if a variable is a jQuery object?

2009-01-05 Thread Ariel Flesler
There're different ways: obj instanceof jQuery obj obj.constructor == jQuery obj obj.jquery And any other possible attribute sniffing, 'jquery' is obviously the safest. -- Ariel Flesler http://flesler.blogspot.com On Jan 5, 7:08 pm, Eric Garside gars...@gmail.com wrote: This sort of thing

[jQuery] Re: Time since last event?

2009-01-04 Thread Ariel Flesler
The event object received by all event handlers has a timeStamp property which contains the (again) timestamp in milliseconds. You can keep that value to know how much time passed since last event. You can also create your own timestamp by calling new Date().getTime (). -- Ariel Flesler http

[jQuery] Re: event.preventDefault() not in the intellisense?

2009-01-04 Thread Ariel Flesler
I haven't used Visual Studio in a while, and never for js... But... how would it know it is an event object ? It's just an argument of a function that could be anything... -- Ariel Flesler http://flesler.blogspot.com On Jan 4, 1:54 am, yww yww...@gmail.com wrote: Hi I am new to this group

[jQuery] Re: Adding scope support to .bind()

2008-12-25 Thread Ariel Flesler
Source. For Life. -- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: Serial Scroll, animated images look jagged

2008-12-24 Thread Ariel Flesler
code. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On Dec 23, 2:44 pm, jen timeyout...@gmail.com wrote: Bump. I've tried researching this, and the only thing I found is an old issue about left to right being switched to right to left and therefore something in parallel needs to scale

[jQuery] Re: javascript namespacer

2008-12-17 Thread Ariel Flesler
jQuery.each. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On Dec 17, 8:05 pm, Kean shenan...@gmail.com wrote: I wrote a simple namespacer. Do you think this is useful in real world applications? Any improvements that can be made to the code? Thank you. var namespace = function (name, global

[jQuery] Re: jQuery.data() identifier not working

2008-12-17 Thread Ariel Flesler
That's done to avoid memory leaks cleaning up properly. It's not a bug, that's the expected behavior. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On Dec 16, 7:35 pm, ricardoe ricar...@gmail.com wrote: Hi Ricardo Yeah, its a DOM element to be more specific I'm working with a lot

[jQuery] Re: serialScroll and jCarousel lite

2008-12-17 Thread Ariel Flesler
serialScroll can be used with constant scrolling. As in, item-based. Not sure what you mean. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On Dec 16, 11:24 pm, IsRaz88 isra...@gmail.com wrote: Does anyone have any idea? -IsRaz88 On Dec 15, 5:51 pm, IsRaz88 isra...@gmail.com wrote

[jQuery] Re: Problem on jquery 1.2.6 with ie6

2008-12-17 Thread Ariel Flesler
You're probably passing an easing equation (name) that is not registered. You either find it and remove it, or add the plugin: http://gsgd.co.uk/sandbox/jquery/easing/ Cheers -- Ariel Flesler http://flesler.blogspot.com/ On Dec 16, 1:33 pm, m.ugues m.ug...@gmail.com wrote: For more detail

[jQuery] Re: serialScroll Plugin - Problems with lazy loading of items (dynamically updating item list)

2008-12-13 Thread Ariel Flesler
it all up once it works. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On Dec 12, 3:19 am, vanstee patrickvans...@gmail.com wrote: Please take a look at my code.http://pastie.org/337379or if you want to look at a functioning copy go tohttp://vansteedesign.com/flashcards/test.php. Even when

[jQuery] Re: Iterating through .data() elements...

2008-12-11 Thread Ariel Flesler
is built and just pass a reference to the element. On Dec 11, 7:28 pm, Ariel Flesler afles...@gmail.com wrote: You need to use $().queue() not data. $().queue('foo',1).queue('foo',2).queue('foo',3) Also, $().queue('foo').each() won't work because the returned data is an array. $.each

[jQuery] Re: Has jQuery development halted?

2008-12-01 Thread Ariel Flesler
into improving jQuery, this is how: http://dev.jquery.com/newticket -- Ariel Flesler http://flesler.blogspot.com/ On Nov 26, 12:53 pm, Bob den Otter [EMAIL PROTECTED] wrote: Hi all, There hasn't been a jQuery update in what seems like ages, and jQuery UI 1.6 will be released 'in the next few days

[jQuery] Re: table striping performance with livequery

2008-11-26 Thread Ariel Flesler
to decide which one is best suited. Is there a time when livequery is more suitable than listen? Or even a time when I might want to use both plugins simultaneously? Thanks -- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: $.fn.is can't support complex Event Delegation

2008-11-26 Thread Ariel Flesler
jQuery.Intercept does support complex selectors. http://plugins.jquery.com/project/Intercept -- Ariel Flesler http://flesler.blogspot.com On Nov 26, 5:03 am, sliu [EMAIL PROTECTED] wrote: Event Delegation are showing its advantage,especially in large webapp. what's event delegation:http

[jQuery] Re: $.fn.is can't support complex Event Delegation

2008-11-26 Thread Ariel Flesler
this way is surely faster, just that the other approach is not straightly better, always. -- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: table striping performance with livequery

2008-11-25 Thread Ariel Flesler
. But if you need more selectors, or you simply don't want to deal with some event delegation problems, then go for LiveQuery. -- Ariel Flesler http://flesler.blogspot.com On Nov 25, 8:39 am, Carpii [EMAIL PROTECTED] wrote: Thanks Brandon, that looks very interesting. Ive read a lot about event handling

[jQuery] Re: xhr.responseText isn't showing up when expected

2008-11-23 Thread Ariel Flesler
It's async, not asynch. -- Ariel Flesler http://flesler.blogspot.com On 23 nov, 12:40, howardk [EMAIL PROTECTED] wrote: Am I misunderstanding how $.ajax( { ..., asynch: false } is supposed to work? I'm not seeing a responseText value immediately on returning from the ajax call as I would

[jQuery] Re: event delegation - great, but how does one trigger the handlers through code?

2008-11-23 Thread Ariel Flesler
That's what jQuery.Bubble is for http://plugins.jquery.com/project/Bubble Cheers -- Ariel Flesler http://flesler.blogspot.com On 22 nov, 23:46, Jeffrey Kretz [EMAIL PROTECTED] wrote: Do you know if this plays friendly with the jQuery event model?   Looking through the source code, it has

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-10 Thread Ariel Flesler
. It's a very extensive plugin. On Nov 8, 12:27 pm, Ariel Flesler [EMAIL PROTECTED] wrote: Check LocalScroll's docs. That issue when setting the hash is the expected behavior. It's not recommended to combine the option hash when scrolling something else than the window, or scrolling just

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-08 Thread Ariel Flesler
/template.htm by the way thanks for all your awesome help! - C On Nov 7, 10:33 pm, Ariel Flesler [EMAIL PROTECTED] wrote: Also... whatever you put inside the $( ) should be one or more elements containing the links. Just in case, try: $(function() { $.localScroll

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-07 Thread Ariel Flesler
', } }); }); /script On Nov 6, 1:29 pm, Ariel Flesler [EMAIL PROTECTED] wrote: You include the easing plugin after jQuery, then when you call LocalScroll: $(...).localScroll( easing:'easeOutQuart', }); You can chose any equation, by name. On Thu, Nov 6, 2008 at 3:21

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-07 Thread Ariel Flesler
).localScroll({ easing:'easeOutQuart', } }); }); /script On Nov 6, 1:29 pm, Ariel Flesler [EMAIL PROTECTED] wrote: You include the easing plugin after jQuery, then when you call LocalScroll: $(...).localScroll( easing

[jQuery] Re: animated robot cartoon with jquery

2008-11-06 Thread Ariel Flesler
Pretty cool! -- Ariel Flesler http://flesler.blogspot.com On Nov 6, 2:56 am, anthony.calzadilla [EMAIL PROTECTED] wrote: Hi all, I occasionally volunteer as a guest speaker for the web design class at my child's  elementary school. I wanted to introduce them to jquery and html in a fun way

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-06 Thread Ariel Flesler
Sure, LocalScroll too. Both allow you to specify an option called 'easing'. You need to add the easing plugin for fancy equations. Now that I check the demo, I think LocalScroll would fit better. Just link the buttons and panes by id/href. And it'll do the rest. -- Ariel Flesler http

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-06 Thread Ariel Flesler
On Nov 6, 8:33 am, Ariel Flesler [EMAIL PROTECTED] wrote: Sure, LocalScroll too. Both allow you to specify an option called 'easing'. You need to add the easing plugin for fancy equations. Now that I check the demo, I think LocalScroll would fit better. Just link the buttons and panes by id

[jQuery] Re: Fast trim implementation

2008-11-06 Thread Ariel Flesler
. In that case the standard regexp version is still faster. Maybe trim() should switch between these two modes depending on the strings length? On Nov 4, 2:40 pm, Ariel Flesler [EMAIL PROTECTED] wrote: Hi As a follow up to Steven Levithan's post about string trimming[1]. I made a second version

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-05 Thread Ariel Flesler
Maybe SerialScroll ? -- Ariel Flesler http://flesler.blogspot.com On Nov 5, 10:45 am, genius switch [EMAIL PROTECTED] wrote: Here is my issue, I have used jCarousel to accomplish what I need... however the markup is bothering my anal tendencies for pure semantics. I'm using jCarousel

[jQuery] Re: how to parse tags with the name of title ?

2008-11-04 Thread Ariel Flesler
Can you get us a test case ? -- Ariel Flesler http://flesler.blogspot.com/ On Nov 4, 6:35 am, AlexC [EMAIL PROTECTED] wrote: Hi all, I've just downloaded jQuery to see if I can use it in a web program and I've come across something which I don't know is a problem, a bug or just (quite

[jQuery] Fast trim implementation

2008-11-04 Thread Ariel Flesler
-trim-function-for- javascript.html [3]http://dev.jquery.com/ticket/2279 -- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: other easing plugins than the standard ones?

2008-10-31 Thread Ariel Flesler
yeap, you're not looking right :) http://www.google.com/search?q=jquery%20easing -- Ariel Flesler http://flesler.blogspot.com On Oct 31, 3:32 pm, Rene Veerman [EMAIL PROTECTED] wrote: Hi, i use .animate() in my cms and would like to try some other easing plugins besides linear and swing

[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. What I

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

2008-10-30 Thread Ariel Flesler
other. Try using this plugin: http://flesler.blogspot.com/2007/10/jqueryscrollto.html It does all the hacking inside. Works well on all major browsers. -- Ariel Flesler http://flesler.blogspot.com/ On Oct 30, 12:46 pm, adexcube [EMAIL PROTECTED] wrote: Hi, I tried successfully this function

[jQuery] Re: Resolving Namespace conflicts

2008-10-30 Thread Ariel Flesler
. http://docs.jquery.com/Core/jQuery.noConflict -- Ariel Flesler http://flesler.blogspot.com/ On Oct 29, 6:38 pm, Beier Cai [EMAIL PROTECTED] wrote: Hello, I'm planning to distribute my website's services to my clients using javascript, much like google map or ShareThis service. Basically my

[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

[jQuery] Re: Want a demo of sliding Text..please help

2008-10-29 Thread Ariel Flesler
Maybe something like this ? http://demos.flesler.com/jquery/serialScroll/ -- Ariel Flesler http://flesler.blogspot.com On Oct 29, 8:17 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi! Look at thishttp://docs.jquery.com/Effects/slideToggle There are many useful examples in official

[jQuery] Re: $.fn.data() is significantly slowed down by $.fn.trigger().

2008-10-29 Thread Ariel Flesler
Yeah.. I sort of agree. I know that these events are heavily used by jQuery UI... but indeed, $.data is called a lot (most function calls when I tested) and it's always calling trigger. -- Ariel Flesler http://flesler.blogspot.com On Oct 29, 11:02 am, Tim Molendijk [EMAIL PROTECTED] wrote

[jQuery] Re: I think this is a binding issue

2008-10-27 Thread Ariel Flesler
I wonder why no one's reading previous threads instead of just posting right away. -- Ariel Flesler http://flesler.blogspot.com/ On Oct 27, 9:11 am, Mike Alsup [EMAIL PROTECTED] wrote: If you click on A then click on Project 1 it will load in new content to the top.  And the top is suppose

[jQuery] Re: how to submit variables as POST submit (no AJAX)

2008-10-26 Thread Ariel Flesler
I'd make those :text into :hidden, or set the form to display:none. -- Ariel Flesler http://flesler.blogspot.com/ On Oct 26, 10:38 am, Mike Alsup [EMAIL PROTECTED] wrote: I have a regular javascript object (with key/values) and would like to submit it to server by POST with complete page

[jQuery] Re: Use JSON from .post

2008-10-26 Thread Ariel Flesler
If you are indeed returning an array from PHP, then the received JSON should be a js array. Got this online ? -- Ariel Flesler http://flesler.blogspot.com/ On Oct 25, 6:26 pm, jfrymann [EMAIL PROTECTED] wrote: Hi,   I have just started using jQuery and am trying to get data back from a mysql

[jQuery] Re: putting jquery inline

2008-10-26 Thread Ariel Flesler
And type=text/javascript with no typos. -- Ariel Flesler http://flesler.blogspot.com/ On Oct 24, 9:04 pm, tres [EMAIL PROTECTED] wrote: Not to state the obvious, but did you make sure that the path to the jquery is correct? Trey On Oct 25, 4:39 am, snacktime [EMAIL PROTECTED] wrote

[jQuery] Re: can jquery slide a whole page up and down?

2008-10-23 Thread Ariel Flesler
://www.engageinteractive.co.uk/ Cheers -- Ariel Flesler http://flesler.blogspot.com On Oct 22, 6:46 pm, caturn88 [EMAIL PROTECTED] wrote: I have been to websites in the past which I remember had no scroll bars, relying on buttons to navigate the site. I got the impression the whole site

[jQuery] Re: stop link returning to the top

2008-10-23 Thread Ariel Flesler
This plugin can do: http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html If you don't want that behavior (of adding the hash to the address bar), don't add/keep the setting called 'hash'. -- Ariel Flesler http://flesler.blogspot.com/ On Oct 23, 1:28 am, caturn88 [EMAIL PROTECTED

[jQuery] Re: Proposal: new method for determining variables without value

2008-10-23 Thread Ariel Flesler
Agree. Note that !!('') is also false. And [] == false. -- Ariel Flesler http://flesler.blogspot.com/ On Oct 23, 2:11 am, Michael Geary [EMAIL PROTECTED] wrote: I looked at James Edwards' post, and I'm not seeing how this function is all that useful. (I mean no offense to pd; it's always

[jQuery] Re: img load event not working

2008-10-23 Thread Ariel Flesler
$(...).bind(load, OnImageLoaded).attr('src','the_image_uri'); -- Ariel Flesler http://flesler.blogspot.com/ On Oct 23, 3:52 pm, Jimbo M [EMAIL PROTECTED] wrote: I can't get this to work for anything.  I'm trying to set up an event to fire a trigger when an image is done loading. Neither

[jQuery] Re: Puedo indexar directamente los jquerys de Google?

2008-10-23 Thread Ariel Flesler
Esta esta lista por si no la conoces: http://lists.scriptia.net/listinfo.cgi/jquery-es-scriptia.net -- Ariel Flesler http://flesler.blogspot.com On Oct 23, 7:03 pm, America|UNK [EMAIL PROTECTED] wrote: Habrá algún problema si lo pongo en mi head ? script type=text/javascript src=http

[jQuery] Re: Atribute selector with squared brackets

2008-10-21 Thread Ariel Flesler
guess accounts for most of jQuery usage anyway. Looks like someone already updated the docs. - ricardo On Oct 20, 11:36 pm, Ariel Flesler [EMAIL PROTECTED] wrote: We got a ticket about how to select elements by an attribute with brackets. I replied with the common link

[jQuery] Atribute selector with squared brackets

2008-10-20 Thread Ariel Flesler
]]'); // Doesn't work $('[name=foo\\[bar\\]]'); // Should work, but doesn't $('[name=foo[bar]]'); // Does work Now... I think the last option is good enough. But we need to update the docs. Anything to add ? Anyone volunteers to update the docs ? Cheers -- Ariel Flesler http://flesler.blogspot.com/

[jQuery] Re: JCarousel - How to scoll a fixed width of pixels?

2008-10-17 Thread Ariel Flesler
You can try SerialScroll: http://flesler.blogspot.com/2008/02/jqueryserialscroll.html It handles situations where elements have different dimensions and can be even unaligned (x and/or y). -- Ariel Flesler http://flesler.blogspot.com On Oct 17, 6:53 am, greencube [EMAIL PROTECTED] wrote

[jQuery] Re: SerialScroll navigation modification question

2008-10-15 Thread Ariel Flesler
Ok, nice to know :) There is one snippet to generate sort of a simple pagination, based on the items. -- Ariel Flesler http://flesler.blogspot.com On Oct 15, 6:54 am, Armand Datema [EMAIL PROTECTED] wrote: FYI this functionality also works great with the pagination plagin you only need

[jQuery] Re: Error: $(#slider).serialScroll is not a function

2008-10-14 Thread Ariel Flesler
The screencast is not too useful. Do you have a link of this online ? Check the script tab with Firebug, go into each script and make sure none is 404. -- Ariel Flesler http://flesler.blogspot.com On Oct 11, 8:08 pm, designjockey [EMAIL PROTECTED] wrote: also.. please see this screencasthttp

[jQuery] Re: SerialScroll navigation modification question

2008-10-14 Thread Ariel Flesler
Nope, I thought I had a snippet for this on the Doctorate on... post, it seems I forgot to add this one. Will do as soon as I can. -- Ariel Flesler http://flesler.blogspot.com On Oct 14, 6:13 am, Armand Datema [EMAIL PROTECTED] wrote: Thanks thats about how I solved it also just wanted

  1   2   3   4   5   >