Re: [jQuery] comet

2007-03-29 Thread Edwin Martin
Matt Stith schreef:
 not as far as I have heard, but i would be interested in anything that
 has, or maybe a Comet plugin? anyone willing?
   

There is.

Comet Client for jQuery:

http://empireenterprises.com/_comet.html

Simply found in the jQuery plugin repository.

Edwin Martin
-- 
http://www.bitstorm.org/edwin/en/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] js right click menu

2007-03-15 Thread Edwin Martin
Denis schreef:
 Can you provide example implemented with jquery please?
   

Last week this came by:

http://www.trendskitchens.co.nz/jquery/contextmenu/

Edwin Martin

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] How to ignore propogated events

2007-03-07 Thread Edwin Martin
Peter Gordon schreef:
 This is the code when the item is clicked.

 $(li).bind(click, function(){
alert( $(this).text() ); event.stopPropagation();
 });

 The problem is that when I click on a leaf, not only do I get an event
 for that leaf, but I get an event for each parent.

 How can I stop the propogation. I tried event.stopPropagation(), but it
 doesn't seem to do anything.
   

The event variable is an argument of your function. This should work:

$(li).bind(click, function(evt){
   alert( $(this).text() );
   evt.stopPropagation();
});


Edwin Martin

-- 
http://www.bitstorm.org/edwin/en/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] How to document a plugin

2007-03-07 Thread Edwin Martin
Abel Tamayo schreef:
 I'm about to finish the plugin I've been working for lately and can't 
 wait to release, but this time I would like to document it properly to 
 ease it's use and upgrading.
 I'm quite anal about this subject yet I have to admit I have never 
 found a solid way to use tags like @param, @desc, @name, @type, @cat, 
 etc... To be honest I wouldn't even know how to call this language 
 or whatever it is considered to be.
 Does anyone know of a good tutorial that will help me to document 
 better? Is there evena standard or recomendation?
 Thanks.

I suggest you use ScriptDoc. Then you´ll get code completion in the 
Aptana webeditor as a bonus:

http://www.aptana.com/docs/index.php/Documenting_your_code_using_ScriptDoc


Edwin Martin


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Newbie Alert: Problem with Ajax

2007-02-27 Thread Edwin Martin
Matias Oberg wrote:
 Could this be it and are there any ways to avoid it?
   
  success: function(txt){$(#show_'. $catid 
 .').append(txt);}
 

Look at the contents of the string  #show_'. $catid .'. I don't think 
you want to use this as a selector.

I guess you want to paste in the value of a PHP-variable, so your 
problem is in your PHP-code.

Edwin Martin



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] non AJAX request

2007-02-23 Thread Edwin Martin
Brian Ronk wrote:
 Guess
 I'm forgetting the meaning of a/synchronous.
   

Synchronous means the function returns when all data is received. 
Meanwhile, the page is not interactive.

The beauty of asynchronous (the first A of AJAX) is that the function 
returns right after the request and all interaction keeps working.

As you understand, this has nothing to do with the difference between 
AJAX and navigating to another page.

Edwin Martin

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] jQuery 1.1-support for Aptana

2007-01-17 Thread Edwin Martin
Instead of waiting for the new version of Aptana, you can download the
latest jQuery 1.1 scriptdoc-file and documentation for Aptana here:

http://www.bitstorm.org/edwin/jquery/

Edwin Martin

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Interface 1.1

2007-01-15 Thread Edwin Martin
Stefan Petre wrote:
 Paul and I, with help from many jQuery developers, put together a new 
 release of Interface. It has a number of new features, new plugins, 
 speed improvements, nice demos, and improved documentation (there's 
 still a lot to improve there). If you would like to learn more about the 
 1.1 release of Interface, check out our brand-new news section as well 
 as the updated changelog!.
   

Great! It's nice to see plugins updated this fast.

One thing I spotted: the draggable demo has unnecessary scrollbars, 
which make it a bit hard to view the demo.

Edwin Martin

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-15 Thread Edwin Martin
John Resig wrrote:
 jQuery 1.1 has just been release, along with an overhaul of the site
 design, and the documentation; all tied together with a brand new
 surprise!
   

Nice work!

Two things:

1) On the documentation page, you'll find the word Licensing. Someone 
skimming the page might think you have to license jQuery to use it.

I think you'll better use License or even better MIT/GLP Licensed or 
MIT and GLP Licensed or somethink like this.


2) Where is the new documentation XML-file? (It is there, isn't it?)

One minor thing, from a design standpoint:

The blue box seems a bit too large. The space between the first column 
and the blue box is very small. Certainly compared with the space 
between the blue box and the list below it. It looks a bit unbalanced.


In general I'm very pleased with jQuery.

Edwin Martin

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-15 Thread Edwin Martin
I wrote:
 I think you'll better use License or even better MIT/GLP Licensed or 
 MIT and GLP Licensed or somethink like this.
   

Ofcourse I ment GPL instead of GLP.

Edwin

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Finished: jQuery code assist in Aptana

2006-12-14 Thread Edwin Martin
Klaus Hartl schreef:
 Edwin Martin schrieb:
   
 I created the scriptdoc-file needed for code assist in Aptana.

 You can download it here:

 http://www.bitstorm.org/edwin/jquery/
 
 Thanks Edwin! Great job!

 I have sometimes problems with Aptana and large JS files (for example 
 when opening the complete, uncompressed jQuery file) - it's getting 
 reeeal slow then -, but I'm using it nevertheless.
   
I'm using the normal, uncompressed JS-file (not the annotated version). 
So I don't think you will have performance issues.

The API for Aptana is in a seperate scriptdoc-file.

On my 1.7GHz notebook I don't notice any performance issues. Well, 
actually I do: I work much faster now ;-)

Edwin Martin

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] Finished: jQuery code assist in Aptana

2006-12-13 Thread Edwin Martin
Hi,

I like jQuery and I like Aptana and was very frustrated jQuery didn't
had code assist (auto-completion) in Aptana.

And I think I'm not the only one :-)

I created the scriptdoc-file needed for code assist in Aptana.

You can download it here:

http://www.bitstorm.org/edwin/jquery/

It's all quite new, so it might not work 100%.

Please share your experiences.

Edwin Martin

-- 
http://www.bitstorm.org/edwin/en/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Efforts to Convert Folks to jQuery

2006-12-08 Thread Edwin Martin
Stephen Woodbridge wrote:
 I kind of like: jQuery: puts the fun back in JavaScript!
   

That's much better than the current New Wave JavaScript, which is the 
current tagline on the homepage.

(For the people not old enough to know what New Wave is: it's an music 
style, popular in the eighties with bands like Talking Heads, Elvis 
Costello and Blondie. Ugh! I sincerely doubt New Wave JavaScript will 
help making jQuery more popular. :-))

Edwin Martin
-- 
http://www.bitstorm.org/edwin/en/



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Efforts to Convert Folks to jQuery

2006-12-08 Thread Edwin Martin

jQuery: past prototype.

I like the double meaning of it.

Edwin Martin



Christian Bach wrote:
 jQuery, duty now for the future

 :)



 Pje wrote:
   
 jQuery, the way that javascript should be.

 Just my 2 cents. :)

 On 12/8/06, Luke Lutman [EMAIL PROTECTED] wrote:
 
 Solid Source wrote:
   
 1. Change the slogan New Wave Javascript to something more along the
 
 lines
   
 of explaining what it does or how it does it rather than what it is.
 Everyone thinks they are new wave right? :)
 
 How about:

 jQuery: The JavaScript Swiss Army Knife.

 I like the associations a Swiss Army knife has:
 - small  lightweight
 - handy
 - does lots of stuff
 - can have all sorts of attachments (plugins)

 Luke


 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/

   
 

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/
 

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


   


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Efforts to Convert Folks to jQuery

2006-12-07 Thread Edwin Martin
Rey Bango wrote:
 Guys, some of you may know of my efforts to get jQuery more exposure.
   
I think it would be a good idea to have jQuery on sites like gotapi.com.

They're open for contributions (code, that is).

Site: http://www.gotapi.com/

How to contribute your API: http://www.gotapi.com/contribute/index.html

Edwin Martin (jquery-enthousiast since a week).

-- 
http://www.bitstorm.org/edwin/en/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/