[jQuery] Re: .stop in it's own sentence?

2008-07-24 Thread Cloudream
.stop(); do not forget () Geir wrote: Hi! Is it right that I have to put .stop in it's own sentence? Like: $('#K_meny li') .stop; $('#K_meny li').animate({.. } , 1000); And not: $('#K_meny li') .stop.animate({.. } , 1000); I've got some errors with

[jQuery] Re: Sourceforge uses jQuery

2008-07-15 Thread Cloudream
Wow, great. But sf.net is blocked by greatfirewall in China :( On Jul 16, 5:33 am, Web Specialist [EMAIL PROTECTED] wrote: Sourceforge.net(http://sourceforge.net/?abmode=1) is a network which promotes open source software uses jQuery in a released website. SourceForge is the global

[jQuery] Re: Running script onLoad instead of ready

2008-07-09 Thread Cloudream
$(window).load On Jul 9, 10:16 pm, benjam [EMAIL PROTECTED] wrote: Maybe I'm missing something totally obvious, but I was trying to get an alert to fire after some of the page loads, (but before ().ready). I tried the following: $('body').load( function( ) { alert('Hello World'); } );

[jQuery] Re: ui.mouse is null or not an object

2008-06-29 Thread Cloudream
ui.core.js should before other ui.xxx.js . On Jun 30, 8:51 am, AzamSharp [EMAIL PROTECTED] wrote: Hi, I am adding the following library and still getting the ui.mouse is null or not an object JavaScript error: Here are my references:     script src=Scripts/jquery-1.2.6.js

[jQuery] Re: jQuery 1.2.6 + interface + IE

2008-05-31 Thread Cloudream
Interface doesn't work with jQuery 1.2.x. Try jquery UI :) http://ui.jquery.com On Jun 1, 12:40 am, Jeno [EMAIL PROTECTED] wrote: hi all! =) I download last version of interface plugin...from interface I use iutil.js, islider.js, idrag.js, idrop.js... I write my script for jQuery 1.1.2, all

[jQuery] Re: Gmail Progress Bar

2008-05-24 Thread Cloudream
getScript(url,callback) After loaded one script, increase the progress bar... And check http header of their files, it seems that they cache many files in client. :) On May 24, 6:11 pm, [EMAIL PROTECTED] wrote: Recently Google Added a Progress bar in gmail .. without any SWF uploader and any

[jQuery] Table slide toggle

2008-05-21 Thread Cloudream
http://labs.cloudream.name/jquery/tbody-slidetoggle.html Click TH to toggle tbody, but plays bad in FF2/OPERA9.2

[jQuery] Re: How to select an element based on visibility

2008-02-23 Thread Cloudream
el.click(function(){ $(this).slideToggle('slow'); }); On Feb 24, 1:28 am, zephyr [EMAIL PROTECTED] wrote: Hi,I cannot get my finger behind this one: I have this HTML: p class=firstLineThis is the first line of the first paragraph/p pAnd here is some more text. Bladibladibla/p p

[jQuery] Re: Delete first ten children of a prent div

2008-02-17 Thread Cloudream
view .slice function on docs.jquery.com On Feb 18, 2:27 am, Michael Ray [EMAIL PROTECTED] wrote: So I discovered the nth-child selector, and ere is what i came up with: J('#nextButton').click(function () { J('#calendar div:nth-child(1)').hide(); J('#calendar div:nth-child(2)').hide();

[jQuery] Re: a question about simple manipulation

2008-02-16 Thread Cloudream
learn demos on http://docs.jquery.com/Manipulation :) On Feb 16, 9:08 pm, amir abbas [EMAIL PROTECTED] wrote: hi everybody i want to add some html character to end of all links. i want to add three nbsp; before each link closing tag /a my links are like this a href=http://jquery.comjquery

[jQuery] Re: put the value back in the input (Beginner)

2008-02-15 Thread Cloudream
$('#ANinputID').attr('defaultValue') works in my IE :) On Feb 15, 11:09 pm, Michael Price [EMAIL PROTECTED] wrote: tlob wrote: works like a charm! Excellent :) but I dont get it... -blur is the opposite of focus, right? Yep - focus is triggered when the user tabs or clicks into the

[jQuery] Google uses jQuery on another site

2008-02-14 Thread Cloudream
Google China holds one commonweal contest at www.gong1chuang1.com announce: http://googlechinablog.com/2008/02/blog-post_14.html pages use jQuery: http://www.gong1chuang1.com/googlecup/newsrelease.jsp ('gong1chuang1' stands for Chinese pinyin 'gongyi chuangyi' which means commonweal

[jQuery] Re: Jquery AJAX Email Client ???

2008-02-14 Thread Cloudream
is it hard to do it? jQuery is quite easy to use. Try it yourself :) On Feb 15, 1:47 am, KONIU [EMAIL PROTECTED] wrote: Hi, Does anybody know an ajax email client like this one ona dojohttp://dojotoolkit.org/demos/email-using-1-0??? but in Jquery.

[jQuery] Re: keeping element is same position no matter scroll

2008-02-13 Thread Cloudream
try DEAN's IE7 js lib. http://dean.edwards.name/IE7/ On Feb 14, 4:08 am, Eridius [EMAIL PROTECTED] wrote: I want to create the same effect the thickbox/thickbox reloaded does so if someone tries to scroll down manually with the mouse and browser side scroll bar my content remain in the same

[jQuery] Re: advanced callbacks?

2008-02-11 Thread Cloudream
try $(xxx).slideUp().ajax({xxx}); On Feb 11, 8:40 pm, lgr888999 [EMAIL PROTECTED] wrote: how would i go for doing a slideUp and an ajax request simultanously but only handle the ajax response once the slideUp is finished?

[jQuery] Re: Uploader 0.9 beta

2008-02-11 Thread Cloudream
Nice work. Is there any documents? I think i can write an asp (server) demo for other developers. On Feb 11, 3:37 pm, Gilles (Webunity) [EMAIL PROTECTED] wrote: Well it is almost finished, my Flash-based file uploader for jQuery. The docs are finished, and the widget itself also. Originally

[jQuery] Re: Is using jQuery and jQuery (2, 3, 4, n versions of jQuery on the same context) possible?

2008-02-01 Thread Cloudream
http://docs.jquery.com/Core/jQuery.noConflict#extreme On Feb 1, 5:05 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Using jQuery with other libraries is easy: http://docs.jquery.com/Using_jQuery_with_Other_Libraries What I'd like to do is do inject jQuery in pages where jQuery already

[jQuery] Re: inserting adsense

2008-01-30 Thread Cloudream
var ads = $(this).html(); On Jan 30, 9:06 pm, felipe [EMAIL PROTECTED] wrote: Hello, I am trying to insert adsense code as follows: var ads = $(this).text(); /// the adsense code goes here $(tr).append( 'td colspan=5' + ads + '/td' ) ; $(tr).addClass('ads'); $('table#' + tablename + '

[jQuery] Re: Too many autocompleter plugins

2008-01-27 Thread Cloudream
try Jörn Zaefferer 's http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ http://jquery.bassistance.de/autocomplete/ On Jan 27, 11:12 pm, Christoph Haas [EMAIL PROTECTED] wrote: Fellow earthicans... A year ago I needed an autocompleter and tried Dylan Verheul's plugin

[jQuery] Re: jQuery pimped out Free Css Template project

2008-01-27 Thread Cloudream
maybe you want to help Paul with his jQuery UI project look at http://ui.jquery.com http://docs.jquery.com/UI and checkout /trunk/ui /trunk/fx from jquery svn to have a try. On Jan 28, 12:26 am, Ty (tzmedia) [EMAIL PROTECTED] wrote: Has anyone noticedwww.yooTheme? They have some interesting

[jQuery] Re: JQuery Mobile/Lite?

2008-01-24 Thread Cloudream
a nice idea On Jan 24, 11:12 am, howa [EMAIL PROTECTED] wrote: Hi all, Given that many mobile devices will have a much better support for Javascript, e.g. iPhone, Nokia N-series handset (running webkit), or 3rd browsers such as Opera mobile/mini, Pocket IE ect, are there any plan to fork a

[jQuery] Re: Can't get Innerfade working

2008-01-23 Thread Cloudream
try jQuery 1.1 Compatibility Plugin http://plugins.jquery.com/project/compat11 be careful for your current codes On Jan 23, 11:14 pm, jy_nl [EMAIL PROTECTED] wrote: Hi there! I'm trying to use the Innerfade plugin (fromhttp://medienfreunde.com/lab/innerfade/), but it apparantly doesn't

[jQuery] Re: A Beginner Question

2008-01-22 Thread Cloudream
dl dta href=#Item Group A/a/dt ddItem 1/dd ddItem 2/dd /dl dl dta href=#Item Group B/a/dt ddItem 1/dd ddItem 2/dd ddItem 3/dd /dl script type=text/javascript $(document).ready(function(){ $(dt a).click(function(){$ (this).parent().parent().find(dd).toggle(); return false;}); }); /script

[jQuery] Re: jquery 1.2.2 and animate()

2008-01-21 Thread Cloudream
try official color plugin http://plugins.jquery.com/project/color On Jan 21, 8:21 pm, Stefan Kilp [sk-software] [EMAIL PROTECTED] wrote: hi, what is the best way to animate background-color with jquery. i tried $j(this).animate({backgroundColor:#ff}, 2000) to get a red background,

[jQuery] error in ui/apps/gallery_advanced/

2008-01-19 Thread Cloudream
when move the slide at right-bottom. Firebug: array has no properties inArray(div, undefined) core.js (line ) click(Object type=mousedown target=div.handle)ui.mouse.js (line 70) (no name)()ui.mouse.js (line 57) handle(Object type=mousedown target=div.handle)event.js (line 254) (no

[jQuery] Re: Load JavaScript in order with IE

2008-01-17 Thread Cloudream
$.getScript('empty.js',function(){alert('a');}); On Jan 17, 12:20 pm, Justin Meyer [EMAIL PROTECTED] wrote: Does anyone know how to make IE load and run empty.js before it alerts second? Here's how I started doing it.  But this doesn't work. document.write(script type=\text/javascript\

[jQuery] Re: $(document).ready does not work in IE

2008-01-17 Thread Cloudream
give a demo page link :) On Jan 17, 4:12 pm, andy9989 [EMAIL PROTECTED] wrote: Hi All A simple script starting from         $j(document).ready(         function(){                }) Does not work in IE (FF and other browsers are OK). Placing it before /body makes everything

[jQuery] Re: How to select the last item in a collection?

2008-01-17 Thread Cloudream
see :last-child selector on docs.jquery.com On Jan 17, 6:00 pm, Jesper Rønn-Jensen [EMAIL PROTECTED] wrote: I made a script that makes a div clickable by selecting all div class=click and setting the onclick event to go to the href of a link. Everything worked when i selected the first links

[jQuery] Re: addClass and removeClass not working in IE

2008-01-17 Thread Cloudream
if you mean input/checkout(etc) 'disabled' attr ,try .attr('disabled','disabled'); and .attr('disabled','') or you mean really css class. a demo page is needed... On Jan 17, 10:43 pm, rajeshphp [EMAIL PROTECTED] wrote: the addClass and removeClass not working in IE for me , this is my code

[jQuery] Re: Error on jQuery's report page

2008-01-16 Thread Cloudream
dev.jquery.com always fails in huge list of view tickets recently... On Jan 16, 8:37 pm, Rafael Santos [EMAIL PROTECTED] wrote: I'm getting an error @http://dev.jquery.com/report/24

[jQuery] Re: Checking whether a jquery function exists

2008-01-14 Thread Cloudream
what about $.isFunction($.datepicker) ? On Jan 14, 10:14 pm, Dan Eastwell [EMAIL PROTECTED] wrote: Thanks Bohdan, That sounds like it should work, but if(jQuery.isFunction(datepicker())){         $('.invokeBoth').datepicker({showOn: 'both', buttonImage: '/images/icons/calendar.png',

[jQuery] Birthday is coming

2008-01-11 Thread Cloudream
is 1.22 going to be release on Jan,14? Seems lots of bugs were fixed.

[jQuery] Re: selector in ie7

2008-01-10 Thread Cloudream
next() is broken in IE, not attr selector. On Jan 10, 10:57 pm, mojo [EMAIL PROTECTED] wrote: hi. in ff 2.0.0.11 the selector works as expected. in ie7 it fails to select anything. example on documentation pagehttp://docs.jquery.com/Selectors/attributeEquals also look different in said

[jQuery] Re: jQuery API Reference in CHM

2007-12-07 Thread Cloudream
thanks a lot. ^^ jquery.com is slow in China, this is pretty useable On 12月7日, 下午5时49分, char101 [EMAIL PROTECTED] wrote: Hi, This is (yet another, if there is any) API reference of jQuery in CHM format http://charupload.wordpress.com/2007/12/07/jquery-documentation-chm/ The pages are

[jQuery] Re: ExtJS

2007-12-03 Thread Cloudream
http://ui.jquery.com On 12月3日, 下午8时36分, Kaare Rasmussen [EMAIL PROTECTED] wrote: Inspired by this Christmas Calendar (http://catalyst.perl.org/calendar/2007/1) i want to ask for input regarding ExtJS vs. jQuery. The ExtJS overview and demos are very straight forward and rather impressive

[jQuery] Re: Eval error with Firefox 3

2007-11-23 Thread Cloudream
ff3 just in beta. jorn is working at mozilla, so don't worry about this... On Nov 23, 4:44 pm, Jerome Carty [EMAIL PROTECTED] wrote: Just a note: On AJAX calls where the data type is script, I get the following error: EvalError: function eval must be called directly, and not by way of a

[jQuery] Re: tinyMCE jquery equivalent

2007-11-19 Thread Cloudream
http://www.wymeditor.org/en/ On Nov 19, 10:46 pm, FrankTudor [EMAIL PROTECTED] wrote: Hi all I am looking for a tinyMCE jquery equivalent (if one exists)... Thanks, Frank

[jQuery] Re: Changes repository

2007-11-15 Thread Cloudream
docs.jquery.com jquery.com/blog On Nov 15, 7:16 pm, ad4m [EMAIL PROTECTED] wrote: Hi! I was wondering where i can find changes history between jquery versions. Actually i need to know changes between version 1.0.x and 1.1.1. Know where i can find such informations? -- Serdecznie

[jQuery] Re: Scriptdoc-file for jQuery 1.2.1

2007-11-14 Thread Cloudream
aptana 1.0 build-in? On Nov 14, 9:35 pm, dehneg [EMAIL PROTECTED] wrote: Hi all, I am looking for the scriptdoc file (http://www.scriptdoc.org/) for jQuery 1.2.1. Any one knows where I can download it ? Thanks, Alex

[jQuery] Re: CSS based Sliding menu

2007-11-13 Thread Cloudream
http://www.gmarwaha.com/blog/?p=7 On Nov 14, 10:54 am, Steve Finkelstein [EMAIL PROTECTED] wrote: Hi all, I'm sure jQuery has something similar, just haven't been able to find it. There's an article/example here, and I'm sorry if this is a common question here. I wasn't sure how to search

[jQuery] Re: jqGrid update

2007-11-12 Thread Cloudream
one of greatest useful plugins ^-^ On Nov 12, 7:59 pm, Tony [EMAIL PROTECTED] wrote: Just now I have updated the jqGrid. The news are: - Row editing - From now jqGrid can accept XML and JSON data with arbitrary structure using a xmlReader and jsonReader. Demo

[jQuery] Future jQuery structure?

2007-11-11 Thread Cloudream
jQuery -Core -UI --Mouse interaction --Widgets --Theme -Fx -Plugins inline: jQuery.png

[jQuery] Re: jqmodal and thickbox problem in opera9.5 beta

2007-11-09 Thread Cloudream
wait for opera 9.5 stable. On Nov 9, 6:33 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: hi ive tested opera 9.5 beta release on windows vista i think there is a problem with the css tag position fixed. because if you have a scrolling page the overlay is fixed to top of the page if you

[jQuery] Re: .mouseover performance

2007-11-01 Thread Cloudream
of the successive queuing of animations - which is where the hoverIntent plugin could help you. HTH On Oct 31, 8:32 am, Cloudream [EMAIL PROTECTED] wrote: http://labs.cloudream.name/jquery/move.html executes slowly in every browser i tested,IE7/FF2/OP9/SA3... any error in my code

[jQuery] Re: .mouseover performance

2007-11-01 Thread Cloudream
if you were to ramp the speed up a bit) because of the successive queuing of animations - which is where the hoverIntent plugin could help you. HTH On Oct 31, 8:32 am, Cloudream [EMAIL PROTECTED] wrote: http://labs.cloudream.name/jquery/move.html executes slowly in every browser i tested

[jQuery] Re: Aptana v1.0 released. Includes support for jQuery v1.2.1

2007-10-31 Thread Cloudream
actually supports in community edition... On Oct 31, 1:25 pm, Rey Bango [EMAIL PROTECTED] wrote: Aptana has released v1.0 of their IDE (http://www.aptana.com/) and it includes support for jQuery v1.2.1. Details on how to use jQuery within Aptana can be found in this thread:

[jQuery] Re: drawing on mousemove - performance problem

2007-10-27 Thread Cloudream
http://labs.cloudream.name/jquery/move.html like this? On Oct 26, 5:57 am, powtac [EMAIL PROTECTED] wrote: Is there a way to reduce the cpu load when I do something like this (and move the pointer very fast on the screen): $(document).mousemove(function(e) { x = e.pageX; y

[jQuery] Re: why this will fail in Safari?

2007-10-27 Thread Cloudream
$(document).ready(function(){ }); miss ; ? On Oct 27, 9:15 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I try to set a selected option in a Select box, the following code works without jQuery function defined, once I un-comment the jQuery part, it works in Firefox, but not in Safari

[jQuery] Re: jQPanels

2007-10-08 Thread Cloudream
like $(someid).slideToggle ? On Oct 8, 12:14 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have just posted my very first plug-in. Is an easy and unubitrusive script to create and manage sliding panels with for the moment quite few options. I'd really should like to have some feedback

[jQuery] What's next?

2007-09-22 Thread Cloudream
Is there anything roadmap for 1.3 / 2.0 or UI 1.1? (maybe we can call it the dead map for other js libs -.-|| )