0
votes
4answers
213 views
Parse and add url from clipboard
I need a javascript bookmark to take the url I have in the clipboard parse out the 2 numbers and create a new url, and add a link to the top of the page, that when clicked adds the …
0
votes
0answers
6 views
How can i process XML doc in javascript bookmarklet?
Can a bookmarklet process the XML result document from a web service once it's styled and displayed in the browser?
What i want to do is run the web service from a provided form, …
0
votes
1answer
16 views
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='+docu …
0
votes
1answer
32 views
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) li …
1
vote
3answers
158 views
rel-tag bookmarklet for last path component of a URL
Many web sites support folksonomy tags. You may have heard of rel-tag, where it says that "The last path component of the URL is the text of the tag".
I am looking for a bookmark …
0
votes
4answers
38 views
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?s …
0
votes
5answers
50 views
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 javascri …
0
votes
2answers
46 views
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();
…
1
vote
3answers
52 views
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 …
1
vote
1answer
54 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=' +escape(location)&doctype=Inline& …
1
vote
1answer
31 views
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 se …
1
vote
2answers
70 views
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 …
0
votes
1answer
116 views
convert jquery greybox into favelet
Hi anyone can help me with converting this into a bookmarklet
to load an external site in a iframe inside an overlay like how it is done on
http://jquery.com/demo/grey/
thnx
0
votes
1answer
36 views
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 …
0
votes
1answer
32 views
How do I access currently selected text from a bookmarklet, while on gmail.com
I'm using FF 3.5.3 on Windows Vista.
This is my (edited for shortness) bookmarklet:
javascript:(function(){
var text = window.content.getSelection().toString();
alert(text);
})() …
