bookmarklet

Bookmarking page to load specific Frame content, is there a FF add-on or somethign I can do with a bookmarklet?

I am using an application which has a cumbersome menu structure and I would like to create a bookmark to a specific page within the application. The app does not update the url as you click around each screen, and the top level source is I can get the url to the menu item I need, but if I use that in my bookmark, the toolbar is...

Delicious English Only

How I can see English only bookmarks on Delicious? They don't have built-in support as of now. http://support.delicious.com/forum/comments.php?DiscussionID=2218 Is it possible via Javascript Bookmarklet or by some API? Thanks. ...

Setting input field using bookmarklet

Hi I'm trying to set the value of an input field using a bookmarklet so when I open the bookmark it will automatically set the field name? Any idea how to do this? Would like to set the field txtEmail. Thanks! This is the HTML of the website: <input id="txtEmail" class="popUpEmail" type="text" onblur="populateTheEmailField(this);" oncl...

How can I open a webpage and run a javascript function from a Java app

Hi, I would like to open a webpage and run a javascript function from within a java app. For example I would like to open the page www.mytestpage.com and run the following javascript code:document.getElementById("txtEmail").value="[email protected]";submit();void(0); This works in a browser...how can I do it programatically? Thanks! ...

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=' +escape(location)&doctype=Inline&charset=detect+automatically&ss=1&group=0&user-agent=W3C_Validator/1.654'; to work as a Bookmarklet in order to send a URL of this format: http://validator.w3.o...

Combining two bookmarklets

Yesterday I discovered Bookmarklets and am totally in love. I wrote several to reduce the number of clicks for a few common tasks on my favorite websites. What I would like to do now, if possible, is to combine the actions of two of these bookmarklets into one single script/link. The current set up is as follows: Bookmarklet 1 (B1) pe...

Regex explanation

I am looking at the code in the tumblr bookmarklet and was curious what the code below did. try{ if(!/^(.*\.)?tumblr[^.]*$/.test(l.host)) throw(0); tstbklt(); } Can anyone tell me what the if line is testing? I have tried to decode the regex but have been unable to do so. ...

Get the current url but without the http:// part bookmarklet!

Hi! Guys I have a question, hoping you can help me out with this one. I have a bookmarklet; javascript:q=(document.location.href);void(open('http://other.example.com/search.php?search='+location.href,'_self ','resizable,location,menubar,toolbar,scrollbars,status')); which takes URL of the current webpage and search for it in another ...

Bookmarklet to grab the current website address but without http://

The other day you were very helpful. Now I have another question. I have a bookmarklet to grab the current URL or I should say host name (without the http:// part - which is ok) like: javascript:q=(document.location.host); void(open('http://mysite.com/search.php?search='+location.host,'_self','resizable,location,menubar,toolbar,scrollba...

Search for current website title and host bookmarklet

I have a bookmarklet which gets current website TITLE and search for it on my website: javascript:q=(document.location.host);void(open('http://example.com/search.php?search='+document.title,'_self','resizable,location,menubar,toolbar,scrollbars,status')); But now I would like to change this bookmarklet so it will search for current web...

How can i process XML doc in javascript bookmarklet?

Can a bookmarklet process the XML result document from a web service once it's displayed in the browser? After calling a web service from the browser, an XML document is returned. I would like to build a bookmarklet to grab some element values from the XML and display them in another window. However, i'm having trouble getting access to...

Extract part of an url using a bookmarklet or similar (e.g. firefox addon)

Does anybody know of a bookmarklet or firefox addon that let's you extract part of an url. Specifically I want to extract the message id from a gmail conversation. Every message in gmail has a unique ID. The url may look like this: https://mail.google.com/a/domain.com/#all/1251b8f40722a3c2 What I want, is to be able to extract the last...

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 bookmarklet, and then something doesn't work, so I try to find what's wrong and change my javascript function accordingly and the tedious cycle s...

where can I learn about how do developer browser bookmarklets (language, framework, IDE, techniques etc)?

Hi, where can I learn about how do developer browser bookmarklets (language, framework, IDE, techniques etc)? Perhaps they are more of a Javascript development thing? To give examples of what I'm talking about see: http://www.evernote.com/about/download/web_clipper.php and http://readitlaterlist.com/bookmarklets/ Thanks ...

WOT Bookmarklet

I'm trying to write a bookmarklet that will allow me to view the Web Of Trust (WOT) ratings for all the links on a page before visiting them. While WOT provides their own bookmarklet, it is not very useful since you need to visit the page first before viewing the rating. This will be used on SeaMonkey, so I can't just install the WOT e...

Javascript Bookmarklet

Hi, I've coded a bookmarklet that opens a new window at a certain URL and sends some variables to a PHP using GET. The problem is I need to have it load the same php and send the same variables but inside a div this time. Could anyone point me in the right direction please? ...

How do I add Roboform Bookmarklet to the Chrome browser toolbar

I'm slowly moving over to use Google Chrome almost exclusively. The one thing that is really stopping me is Roboform - which I use and love. There is a RoboForm bookmarklet which does most of what I need, and this works a treat. What I want to do though is have a RoboForm icon on the Chrome toolbar (next to the address bar), which invok...

What is the best practice for writing bookmarklets

I am writing some bookmarklets for a project that I am currently working on and I was wondering what the best practice for writing a bookmarklet was. I did some looking around and this is what I came up with javascript:void((function() { var%20e=document.createElement('script'); e.setAttribute('type','text/javascript'); e...

How to load external css, js and append a div to the DOM from a bookmarklet?

Hi, I'm trying to build a bookmarklet that does the following: 1.)loads an external js, located on my server (done) javascript:function%20loadScript(scriptURL)%20{%20var%20scriptElem%20=%20document.createElement('SCRIPT');%20scriptElem.setAttribute('language',%20'JavaScript');%20scriptElem.setAttribute('src',%20scriptURL);%20document....

JavaScript Programming Help

Hello everyone, I have some previous programming knowledge but need some help with this. I need to create a JavaScript bookmarklet like the one that Instapaper.com has. I want for this bookmarklet to have the following functionality and look: Popup on the corner of the page (which I could specify in the code) Display a count-up timer ...