It's length, not lenght.
--
Ariel Flesler
On Dec 13, 5:59 am, manko 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 ??
In('fast',function(){
item_idx++;
DoFadeIn(items,item_idx);
});
}
$(document).ready(function(){
var items = new Array('one','two','three');
var item_idx = 0;
DoFadeIn(items,item_idx);
This should do.
$.scrollTo('#elem', 1000, {
over:{ top:0.5 },
offset:{ top: -$(window).height() / 2 }
});
On Sun, Nov 15, 2009 at 10:35 AM, Rizky wrote:
> hi ariel,
>
> great plugin here, i'm using it for my next project (if the marketing
> guys could win the pit
$.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 wrote:
> I'm look
300,
> width:500,
> stack:true,
> title:aTranslations['error'],
> close:function() {
> $j('#' + sDialogId).dialog('destroy');
> }
> });
>
> It seems th
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 wrote:
> Hi all,
>
> I'm having the following error when opening a dialog
>
> $.Event is not a function js/jquery/ui.core.js Line 34
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 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 sam
It currently works for me, and yeah, don't spam ;)
--
Ariel Flesler
On Aug 23, 8:18 pm, Alice 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
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, "
That should work correctly. Do you have a demo online ?
--
Ariel Flesler
On Jul 2, 3:55 pm, Frozzare 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 co
lugins-for-jquery-13.html
Cheers
--
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,
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 wrote:
> I need to override a jQuery meth
Fixed: http://dev.jquery.com/changeset/6334
$() === $(document)
$(undefined) === $([])
$(null) === $([])
$("") === $([])
--
Ariel Flesler
On May 3, 12:28 pm, Ariel Flesler wrote:
> Correction:
>
> $() === $(document)
> $(null) === $([])
> $("") === $([])
>
Correction:
$() === $(document)
$(null) === $([])
$("") === $([])
This is wrongly documented and has orphaned code, will report.
--
Ariel Flesler
On May 3, 12:16 pm, Ariel Flesler wrote:
> FYI, not anymore.
>
> $() === $([])
>
> It now returns an empty jQuery
FYI, not anymore.
$() === $([])
It now returns an empty jQuery collection
--
Ariel Flesler
On May 3, 5:22 am, Klaus Hartl wrote:
> $() === $(document)
>
> --Klaus
>
> On 3 Mai, 07:39, kiusau wrote:
>
> > QUESTION: What does the first pair of parentheses indic
emo:
>
> If you click 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 Fles
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 wrote:
>
Can you provide a demo online ?
Cheers
--
Ariel Flesler
On Apr 10, 6:17 am, Niels 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 def
(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 wrote:
> Hi guys.
>
> Trying again as not sure what happened to the previous post.
>
> I am using jQuery 1.3.2 and getting
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 wrote:
> Hi guys.
>
> Using jQuery 1.3.2 and getting some unexpected behavior this morning.
>
> This works, with the alert being executed when
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 wrote:
> I have a vertical scrolliing area and inside the first area I have an
> link that when clicked calls scrollto to scroll the main vert
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 wrote:
> He
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 wrote:
> i forgot to mention that the temporary scroll button i've set up is a
> scroll down t
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
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 wrote:
> Hi,
>
> I did use localscroll as the plugin in order to scroll
;ll hopefully have a new release for jquery.serialScroll soon.
Cheers
--
Ariel Flesler
http://flesler.blogspot.com
er.blogspot.com/2007/10/jquerylocalscroll-10.html
Cheers
--
Ariel Flesler
http://flesler.blogspot.com
er.blogspot.com/2007/10/jquerylocalscroll-10.html
Cheers
--
Ariel Flesler
http://flesler.blogspot.com
Uhm... I really dunno. As I told you, the plugin won't react to clicks
on the Back button.
I intend to take another look at this asap.
Try putting the window.scrollTo line outside the document.ready.
On Thu, Mar 5, 2009 at 1:28 PM, clorentzen wrote:
>
> Ariel --
>
> Thanks aga
It seems to be working well for me, on FF2.
Using the back button won't animatedly scroll, the plugin isn't
monitoring those changes.
On Wed, Mar 4, 2009 at 7:28 PM, clorentzen wrote:
>
> Ariel --
>
> Thanks for your reply. If I go to my test page from one of the full
>
ollTo(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 wrote:
> Sorry,
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" wrote:
> I was wondering if any one could point me in the right dir
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 wrote:
> Hi.
>
> As I understand, you can have custom events in jquery, like so
Yeah, I was just showing you the layout. We (jQuery) implemented the
/*! since 1.3 because the YUI compressor is now used and it indeed
recognizes /*!.
Cheers
On Sun, Feb 1, 2009 at 10:25 PM, Sam Sherlock wrote:
> Thanks Ariel.
>
> I have found out that http://code.google.com/p/minify
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
On
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 wrote:
> When submitting a new plugin or plugin release there is no 1.3.x
> opt
It's success not succcess.
--
Ariel Flesler
http://flesler.blogspot.com
On Jan 25, 2:36 pm, Olivier wrote:
> I try to use jQuery.ajax with dataType : 'json' :
>
> jQuery.ajax({
> url : "poll.json",
> dataType : 'json',
> cache
if( $('span.countdown').length ){
updateCounter();
}
--
Ariel Flesler
http://flesler.blogspot.com
On 23 ינואר, 11:39, johannesf wrote:
> Hi
>
> jquery is fantastic :-)
>
> My problem: I have a simple each-loop and after the loop I want to run a
> js-function.
>
Update to 1.3.x. That part was greatly optimized.
--
Ariel Flesler
http://flesler.blogspot.com
On 20 ינואר, 01:44, Charles Johnson 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
>
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 wrote:
> Oops, Im sorry but
> $(selector + ' .step[title='+currentIndex+'] div.stepContent').fadeOut
> (&
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 wrote:
> I'm playing around with the new .live functionality. it seem
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 wrote:
> I'm t
Where did you get
> that link? I thought those were innocent hashes :D
>
> On Jan 15, 6:45 pm, Ariel Flesler 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 Toma
animation() has a parameter
>> for a callback function but not the one for own animations?
> >
>
--
Ariel Flesler
http://flesler.blogspot.com
by calling event.stopPropagation
(), returning false or using triggerHandler.
--
Ariel Flesler
http://flesler.blogspot.com
On Jan 15, 10:02 am, "Javier Martinez" wrote:
> First of all, thanks to all jQuery members for the new release! is a great
> gift!
>
> With this release, one
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
Nice, let me know how it goes.
On Sun, Jan 11, 2009 at 2:05 PM, kape wrote:
>
> Thanks, I'll actually give that a try.
>
> On Jan 11, 9:46 am, Ariel Flesler wrote:
>> I just made a plugin to do EXACTLY what you're asking for.
>> It's not formally relea
of the recently released betas.
Cheers
--
Ariel Flesler
http://flesler.blogspot.com
On Jan 9, 5:30 pm, kape 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
@Karl
$('html, body') is a simple, yet bad, approach.
It's one or the other not both.
Browsers like Opera that react to both elements, can go mad when doing
this.
Cheers
--
Ariel Flesler
http://flesler.blogspot.com
On Jan 8, 1:20 pm, Karl Swedberg wrote:
> Hi there,
>
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 wrote:
> I noted that firing custom events seems to work on any object, for
&g
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 wrote:
&g
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 wrote:
> Hi I am new to this group an
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
>> >
>> > this.internalHandler = function(event) {
>> > console.log("I am another scope method.", this.name
>> ,
>> > event, event.data);
>> > };
>> > };
>> >
>> > var scope = new scopeTest();
>> >
>> > $('div').bind('click', {data: true}, globalHandler);
>> > $('div').bind('click', {data: true}, scope.internalHandler);
>> //
>> > handler, data, default scope
>> > $('div').bind('click', {data: true}, scope,
>> > scope.internalHandler); // handler, data, pre-defined scope
>> >
>> > Let me know if make sense for you.
>> >
>> > --
>> > Eduardo Lundgren
>> > Software Engineer
>> > Liferay, Inc.
>> > Enterprise. Open Source. For Life.
>> >
>> > event.js
>> > 26KViewDownload
>
>
>
>
> --
> Eduardo Lundgren
> Software Engineer
> Liferay, Inc.
> Enterprise. Open Source. For Life.
>
> >
>
--
Ariel Flesler
http://flesler.blogspot.com
ain jQuery code.
Cheers
--
Ariel Flesler
http://flesler.blogspot.com/
On Dec 23, 2:44 pm, jen 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 paral
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" wrote:
> For more de
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 wrote:
> Does anyone have any idea?
>
> -IsRaz88
>
> On Dec 15, 5:51 pm, IsRaz88 wrote:
>
> >
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 wrote:
> Hi Ricardo
>
> Yeah, its a DOM element to be more specific I'm working
shorter if you use jQuery.each.
Cheers
--
Ariel Flesler
http://flesler.blogspot.com/
On Dec 17, 8:05 pm, Kean 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 n
ly mess it all up once it works.
Cheers
--
Ariel Flesler
http://flesler.blogspot.com/
On Dec 12, 3:19 am, vanstee 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
gt;> flags, navigation keywords, url variables, etc.)
>>
>> I'd hate to have to create a new associative object and pass it when I
>> can append the appropriate data to the element when the page is built
>> and just pass a reference to the element.
>>
>
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($().queue('foo'), function(){ }); will work.
--
Ariel Flesler
ly, if you're really 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
faster.
I'm not saying this way is surely faster, just that the other approach
is not straightly better, always.
--
Ariel Flesler
http://flesler.blogspot.com
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.
&g
Ive read a lot about event handling in jQuery and there seems to be a
>
> lot of different plugins, so it was hard 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
ad. 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.
>
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?
>
> L
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
>
any work you've already done, but the Cycle plugin might
>> work also.http://malsup.com/jquery/cycle/
>>
>> And there are tons of demo pages of what it can do. It's a very
>> extensive plugin.
>>
>> On Nov 8, 12:27 pm, "Ariel Flesler" <[EMAI
t. I am using swfobject to put the flash on the
>> page and it makes the easing effect not work. If I remove swfobject it
>> works fine.
>>
>> http://www.geniusswitchstudio.com/v2/template.htm
>>
>> by the way thanks for all your awesome help!
>>
>>
$("#content").localScroll({
>easing:'easeOutQuart',
>}
>});
>});
>
>
>
> On Nov 6, 1:29 pm, "Ariel Flesler" <[EMAIL PROTECTED]> wrote:
>> You include the easing plugin after j
.. man why do I stink at
> javascript?
>
>
>
>
>
></
> script>
><script type="text/javascript">
>$(function() {
>$("#content").localScroll({
>easing:'easeOutQuart
o be thrown as hash keys or
> something. 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
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 PM, genius switch
<[EMAIL PROTECTED]> wrote:
>
> Thanks Ari
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
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.
--
Ari
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
om/2008/11/fast-trim-function-for-
javascript.html
[3]http://dev.jquery.com/ticket/2279
--
Ariel Flesler
http://flesler.blogspot.com
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 p
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
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
otype.
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
eting with each 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
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
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
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
>
> Th
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
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:
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 b
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 serve
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 ?
> http://jquer
$("...").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
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
> t
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, caturn
ks)
http://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 impressio
/TR/xhtml1/dtds.html#dtdentry_xhtml1-transitional.dt.
> ..
> >
> > ~Jason
> >
> > On Oct 21, 12:07 pm, ricardobeat <[EMAIL PROTECTED]> wrote:
> >
> > > Brackets are an invalid character in attributes, for XHTML served as
> > > text/html, which I
Got a link to that part of the XHTML spec ?
Ouch, Atribute --> Attribute.
--
Ariel Flesler
http://flesler.blogspot.com
On Oct 21, 1:07 pm, ricardobeat <[EMAIL PROTECTED]> wrote:
> Brackets are an invalid character in attributes, for XHTML served as
> text/html, which I guess ac
7;[name=foo[bar]]'); // 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/
1 - 100 of 580 matches
Mail list logo