Tagged Questions

A bookmarklet is a browser bookmark for a URL using the javascript: protocol. The javascript: prefix is followed by a snippet of JavaScript. When invoked, instead of navigating to a new page, the script is executed within the context of the current page.

learn more… | top users | synonyms

27
votes
4answers
6k views

How to have favicon / icon set when bookmarklet dragged to toolbar?

I've made myself a bookmarklet, and it functions just fine, but when added to a toolbar in Opera or Firefox, it just takes on the default bookmark icon for the browser (a globe and a star, ...
22
votes
1answer
3k views

Load external JS from bookmarklet?

How can I load an external Javascript file using a bookmarklet? This would overcome the URL length limitations of IE and generally keep things cleaner.
18
votes
5answers
861 views

Adding favicon to javascript Bookmarklet (uses window.open)

I have a bookmarklet that launches a window.open javascript function to open a small window with my bookmarklet -- an external feature used to communicate between any visted site and my server. I'd ...
16
votes
2answers
2k views

JavaScript: Invert color on all elements of a page

I want to be able to invert the color of all the elements on a page with a JavaScript bookmarklet. I know that to invert a color you subtract each of the RGB hex values from 255(xFF), but beyond that ...
12
votes
7answers
3k views

Add a bookmark that is only javascript, not a URL

I'm thinking that the reason I can't do this is because it might be a huge security hole, but here goes... I want to have a bookmark on my browser (FF3, preferably) that is only a snippet of ...
9
votes
4answers
3k views

Bookmarklet wait until Javascript is loaded

I've got a bookmarklet which loads jQuery and some other js libraries. How do I: Wait until the javascript library I'm using is available/loaded. If I try to use the script before it has finished ...
8
votes
6answers
17k views

Reverting CSS style of <input type=submit button to its default style

I'm using a bookmarklet that inserts a script tag into the current web page. This script has some UI and an "input type=submit...." tag in it. Web page A has chosen not to style "input ...
7
votes
5answers
2k views

Change CSS of selected text using Javascript

I'm trying to make a javascript bookmarklet that will act as a highlighter, changing the background of selected text on a webpage to yellow when the bookmarklet is pressed. I'm using the following ...
7
votes
3answers
7k views

JavaScript bookmarklet to delete all cookies within a given domain

I am testing a web app that writes cookies to subdomain.thisdomain.com and several subfolders within that. I'm looking for JavaScript that I can put into a bookmarklet that will delete all cookies ...
6
votes
1answer
198 views

Bookmarklet approach

I am trying to write a bookmarklet that will bookmark the current page and save the link to the current page in a backend service. When I click this bookmarklet, I want this bookmarklet to show up as ...
5
votes
3answers
67 views

How to enforce a bookmarklet to run only once?

My bookmarklet consist of a call to a 'launcher' script that is inserted into body. As it runs, it inserts in a similar way more scripts (jQuery, the actual application), and a CSS. Bookmarklet ...
5
votes
1answer
218 views

If I include jQuery via bookmarklet, will it ruin the original javascript on the site?

I'm creating a bookmarklet and of course I'd like to use jQuery. But, if I include jQuery (append a script-tag to head) on a site, will the site itself work anymore, if it has some other js on? ...
5
votes
1answer
961 views

JavaScript bookmarklet and URL encoding

Fully disclosing that I do not know Javascript, I'm trying to get this Javascript: javascript:location = 'http://validator.w3.org/check?uri=' ...
5
votes
3answers
2k views

Is it possible to load multiple different version of jQuery on the same page?

I'm making a bookmarklet which will load jQuery if the object is not found. The loading will check on the version of jQuery. The code is like: (function(){ var myBkl = { loadScript: ...
4
votes
3answers
105 views

Javascript bookmarklet fails on certain sites, creates ghostly new <html> page

I noticed that my Javascript bookmarklet was failing on certain sites like Google Reader and Google search results pages (and randomly on some non-Google sites). Looking at the console, I could see ...
4
votes
1answer
219 views

Making a bookmarklet in javascript

I am trying to make a bookmarklet for my website. I have made a php page that when sent a GET for example www.website.com/index.html?a=banana it will return echo 'stand'; Now I am trying to make a ...
4
votes
4answers
207 views

Xpath different in IE and Firefox. Why?

I used Firebug's Inspect Element to capture the Xpath in a webpage, and it gave me something like: //*[@id="Search_Fields_profile_docno_input"] I used the Bookmarklets technique in IE to caputre ...
4
votes
3answers
503 views

GWT bookmarket or GWT as an external library

I simply want to load a GWT app by adding a script tag to the DOM, however because the GWT linker uses document.write() I'm unable to find any good way of doing so. I've found some hacks for doing so ...
4
votes
2answers
733 views

Create a Delicious Bookmarklet in Firefox using Delicious API

I want to create a Delicious bookmarklet in Firefox that bookmarks the current page with a predefined tag. For proof of concept, if I enter this url, it works: ...
4
votes
1answer
393 views

unable to run an external javascript using a bookmarklet

Totally newbie about JS. I need to use an external script which modifies some elements in the current page accessing it as a bookmarklet. If I modify the html source code of the web page inserting ...
4
votes
5answers
3k views

scripting a google docs form submission

I'm trying to create a bookmarklet that parses a page and sends the results to a googledocs spreadsheet via a form that I've defined. The relevent bit of the script is: var form = ...
4
votes
2answers
172 views

Can a function defined in a bookmarklet be called from a page-level script?

I have a bookmarklet that needs to open a new window/tab. In order to avoid the popup blocker, I need to call the window.open() method directly in the bookmarklet ie: at the browser-level. However, ...
4
votes
1answer
519 views

Is there a way to automatically convert a Greasemonkey script into a bookmarklet?

For those who don't know what a bookmarklet is: http://en.wikipedia.org/wiki/Bookmarklet
4
votes
7answers
1k views

Find all instances of 'old' in a webpage and replace each with 'new', using a javascript bookmarklet

What I want to do is replace all instances of 'old' in a webpage with 'new' in a JS bookmarklet or a greasemonkey script. How can I do this? I suppose jQuery or other frameworks are okay, as there're ...
4
votes
5answers
1k views

Is there a way to have browsers ignore or override xml-stylesheet processing instructions?

I'm trying to write a bookmarklet to help some QA testers submit useful debugging information when they come across issues. Currently I can set window.location to a URL that provides this debugging ...
4
votes
2answers
716 views

How do I detect a keyboard modifier in a bookmarklet?

Is there a way to detect if the user is holding down the shift key (or other modifier keys) when executing a javascript bookmarklet? In my tests of Safari 3.1 and Firefox 3, window.event is always ...
3
votes
4answers
107 views

JavaScript how to remove http:// from url

I have run into an odd situation. I'm writing a JavaScript Bookmarklet that will allow users to click and share external websites to our website very easily and quickly. It simply get's the Title, ...
3
votes
1answer
46 views

Bookmarklet to open an empty tab/window with some javascript in it?

I know there are a lot of discussions about opening http pages in new windows and tabs, but that's not what i'm looking for. How do I open an empty new tab and run some arbitrary js in it? That is ...
3
votes
1answer
58 views

How can a bookmarklet automatically run without interaction? Is that a security hole?

Last night while listening to turntable.fm, I looked for an auto awesome extension for chrome. I came across a bookmarklet that does the same thing. The thing that gave me pause was that a bookmarklet ...
3
votes
3answers
182 views

How to encode a URL as a CakePHP parameter

I would like to create a bookmarklet for adding bookmarks. So you just click on the Bookmark this Page JavaScript Snippet in your Bookmarks and you are redirected to the page. This is my current ...
3
votes
2answers
94 views

javascript: long click for a bookmarklet

I need to recognize a long click in a JavaScript bookmarklet. So, I cannot use jQuery, neither onclick() event and similar. Is it possible, and how?
3
votes
2answers
122 views

Bookmarklet doesnt working on Mozilla but does in chrome

i wrote this bookmarklet <a href="javascript:var m = document.getElementById('xxx'); m.value=17;">test</a> and it is working in Chrome, but not in Mozilla Firefox i even tried <a ...
3
votes
2answers
322 views

Add border to images

I'm totally new to JS. I'm trying to make me a bookmarklet that finds all images on a web page and adds a colorful border to them. Then, by clicking on an image I'd like to attach the image path. This ...
3
votes
2answers
167 views

Bookmarklet security considerations, CSRF, hashed key

My bookmarklet can be called from any website and basically allows the user to insert a row into his collection from afar - if he is logged in. Now I want to enable CSRF protection for my site and ...
3
votes
3answers
228 views

How to “Decompile” a Bookmarklet?

We all know that bookmarklets are nothing but some executable javascript code that do some things for us when we click on them depending on the function that they are intended to do... My Question is: ...
3
votes
3answers
306 views

Capture keypress in Javascript (Google Docs)

I'm trying to write a little greasemonkey script/bookmarklet/what have you for Google Docs. The functionality I'd like to add needs a keypress/keyup/keydown event handler (one of those three). ...
3
votes
4answers
285 views

Preserving Browser History via a Javascript Bookmarklet

I'm working on a bookmarklet that suggests links when you click on it. I imagine after clicking one of those links, when someone hits the back button, the intention is to go back to the list of links ...
3
votes
6answers
198 views

Check (from bookmarklet) whether page is loaded?

I'm writing a bookmarklet javascript. The problem here is that it can be invoked by user before and after some page has finished loading. I want to ensure that the sript is run only after the page has ...
3
votes
2answers
187 views

What does tstbklt() from the Tumblr bookmarklet javascript do?

javascript: var d = document, w = window, e = w.getSelection, k = d.getSelection, x = d.selection, s = (e ? e() : (k) ? k() : (x ? x.createRange().text : 0)), f = ...
3
votes
2answers
166 views

jquery forms plugin noConflict problem

I am writing a bookmarklet in which I want to use the jquery forms plugin. The problem I am having is that a web page on which the bookmarklet might be used could be using a different js lib, which ...
3
votes
4answers
3k views

Javascript for conditional URL append or redirect based on window.location.href

I am trying to make a bookmarklet that when clicked will check the URL of the current tab/window to see if it contains 'char1' and/or 'char2' (a given character). If both chars are present it ...
3
votes
2answers
1k views

Firefox Or JavaScript, count the DOM

I'm sure this is simple but I have no idea how to do it. How do i count the amount of DOM elements in my HTML page? I wanted to do this in a userscript or bookmarklet but i have no idea how to start!
3
votes
4answers
205 views

Is there any way to have some javascript (such as a Bookmarklet) autorun on page load?

To execute bookmarklet code the bookmarklet needs to be actioned by the user. Is there any way to have a bookmarklet or indeed any javascript run automatically on page load? Or is an Add-on the way ...
3
votes
3answers
1k views

easier bookmarklet development

Here's how I make develop a bookmarklet: I write a javascript function, pass that to Bookmarklet Builder to make a bookmarklet, add the bookmarklet to my browser, load my test webpage, test the ...
3
votes
4answers
5k views

javascript prompt for password (i.e. *******)

I'm writing a bookmarklet and I need to be able to prompt the user for a "password". However, I don't want it to be in clear text on screen, so I cannot use prompt. Is there a masked alternative to ...
3
votes
2answers
374 views

Create a favicon for a link that is JavaScript?

I have a link on my site that is strictly JavaScript, that the users can optionally drag to their browser's link bar. Because there is no associated site with a Favicon, the link always gets a blank ...
3
votes
5answers
879 views

How to dynamically load Javascript files and use them right away?

I am using JQuery to inject dynamically script tags in the body tab of a webpage. I got something like : function addJS(url) { $("body").append('<script type="text/javascript" ...
3
votes
1answer
1k views

Bookmarklet In New Window

So I've got a bookmarklet which should open up a page in a new window. ...
2
votes
1answer
56 views

More robust way to get location.href in Javascript Bookmarklet?

This is my current bookmarklet: javascript:(function(){ alert(location.href); })(); which seems to work fine, but for me, it doesn't work on youtube under chrome for some reason.. is there a more ...
2
votes
1answer
60 views

Security for an Instapaper-like bookmarklet

I'm trying to make a bookmarklet that does something similar to what Instapaper's does. I need the bookmarklet to send the URL of the page the user is visiting and the user's token(so the server ...

1 2 3 4 5 9