I'm not aware of any explicit bookmarklet support but if you need to
get jQuery onto the page then at least it has a nice light file size.
A few things to note:
IE limits the length of your bookmarklet to 250 characters or so.
To keep bookmarklets small it is common to have them simply load a
remote script (from your site) that will actually do the fancy stuff.
If your script needs jQuery then I'd suggest that you load it either
in your bookmarklet or in your script. The google-hosted jquery can be
handy for this.
Maybe worth checking whether there's a compatible version of jQuery
already loaded and use that, before fetching another.
If you load jQuery yourself then you should use it's handy noConflict
option to prevent issues with other libraries etc already on the page.

Hope this helps,
George


On Dec 2, 6:03 am, greghauptmann <greg.hauptm...@gmail.com> wrote:
> Hi
>
> I want to development some browser bookmarklets (e.g. for firefox, IE,
> safari) but I'm not sure where to start.  As an example of what I'm
> talking about see:
>
>     *http://www.evernote.com/about/download/web_clipper.php
>     *http://readitlaterlist.com/bookmarklets/
>
> I'm after a way to allow a user pass a browser link (e.g. the page
> they are on) through to my web application & see the "bookmarklet"
> approach a easier/more basic way to achieve this.  They would have to
> type in their username/password the first time they use it for the
> their authentication to the backend.
>
> QUESTION:  How does one develop these bookmarklets?  Does JQuery have
> support or supply a template for this?  Or just any other pointers on
> how people do this?
>
> Thanks

Reply via email to