0
votes
4answers
27 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
2answers
41 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();
…
0
votes
5answers
45 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 …
1
vote
3answers
40 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
35 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
2answers
67 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 …
1
vote
1answer
28 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 …
0
votes
1answer
26 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);
})() …
0
votes
2answers
68 views
What are the issue with putting markup outside <body> ?
I have a bookmarklet storing a lot of DOM data, but I would love to avoid to put them out of the body tag so the script in the page won't mess with it.
Semantic value is not an is …
0
votes
1answer
30 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 …
3
votes
1answer
53 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
0
votes
1answer
54 views
How to to dump JS array… (boommarklet?)
A page on a site I use is holding some of my data hostage. Once I have logged into the site and navigated to the right page, the data I need is in the array eeData[] - it is 720 el …
0
votes
2answers
57 views
Change all links that have an image in it to: javascript(alert(thehref));
Change all links that have an image in it to: javascript(alert(thehref));
eg.
<a href="/galleries/anna-leah-111827/image01.html"><img src="/source_galleries/anna-leah-11 …
0
votes
1answer
77 views
Bookmarklet script too long to create application shortcut.
I figured out how to create a bookmarklet for Google Analytics that opened to immediately show only today's stats. I wanted to make a Google Chrome application shortcut for this t …
-1
votes
1answer
44 views
Bookmarklet Image Question
I'm trying to make bookmarklet to
IF(url ends in .jpg || .png || .jpeg)
dosomething(the url)
ELSE
onhover of any image, put a 50% opacity red cover over it. And onclick something …
