active questions tagged bookmarklet - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T13:53:25Zhttp://stackoverflow.com/feeds/tag/bookmarklethttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1932903/what-is-the-best-practice-for-writing-bookmarklets0What is the best practice for writing bookmarkletsRitesh M Nayak2009-12-19T13:23:05Z2009-12-19T13:23:05Z
<p>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</p>
<pre><code> javascript:void((function()
{
var%20e=document.createElement('script');
e.setAttribute('type','text/javascript');
e.setAttribute('src','http://someserver.com/bookmarkletcode.js');
document.body.appendChild(e)
})())
</code></pre>
<p>I felt this is nice because the code can always be changed (since its requested every time) and still it acts like a bookmarklet. Are there are any problems to this approach ? Browser incompatibility etc? What is the best practice for this? </p>
http://stackoverflow.com/questions/613808/is-it-possible-to-load-multiple-different-version-of-jquery-on-the-same-page1Is it possible to load multiple different version of jQuery on the same page?jackysee2009-03-05T06:51:19Z2009-12-18T13:59:43Z
<p>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:</p>
<pre><code>(function(){
var myBkl = {
loadScript: function(src) {
if(window.jQuery && window.jQuery.fn.jquery == '1.3.2'){
return;
}
var s = document.createElement('script');
s.setAttribute('src', src);
s.setAttribute('type', 'text/javascript');
document.getElementsByTagName('head')[0].appendChild(s);
},
whenLoaded: function(callback){
if (typeof(window.jQuery) !== 'undefined' && window.jQuery.fn.jquery == '1.3.2') {
callback(window.jQuery);
}
else {
setTimeout((function() {myBkl.whenLoaded(callback); }), 100);
}
},
init: function($){
console.log($.fn.jquery);
}
};
myBkl.loadScript('http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js');
myBkl.whenLoaded(myBkl.init);
})();
</code></pre>
<p>I use this bookmarklet builder to create the bookmarklet <a href="http://subsimple.com/bookmarklets/jsbuilder.htm" rel="nofollow">http://subsimple.com/bookmarklets/jsbuilder.htm</a></p>
<p>Obviously if the page already has jQuery loaded. The loading of the 1.3.2 script would overwrite the window.jQuery object on the page. I just wonder is there anyway to let 1.3.2 to load to another self named variable? Using <code>jQuery.noConflict(true);</code> ?</p>
http://stackoverflow.com/questions/1921821/how-do-i-add-roboform-bookmarklet-to-the-chrome-browser-toolbar0How do I add Roboform Bookmarklet to the Chrome browser toolbarDerek O'Harrow2009-12-17T13:34:50Z2009-12-17T13:34:50Z
<p>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.</p>
<p>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 invokes the bookmarklet when I click on it.</p>
<p>I've had a go at creating a Chrome extension to do this, but came unstuck.</p>
<p>Any ideas?</p>
<p>Thanks!
Derek</p>
http://stackoverflow.com/questions/950686/create-a-favicon-for-a-link-that-is-javascript1Create a favicon for a link that is JavaScript?OrbMan2009-06-04T13:43:04Z2009-12-15T21:14:12Z
<p>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 icon. Is there anyway to associate a Favicon with it at the time the user drags it? I am primarily interested in a Firefox solution, but IE would be nice, too.</p>
http://stackoverflow.com/questions/1906057/javascript-bookmarklet0Javascript BookmarkletCarvefx2009-12-15T08:52:04Z2009-12-15T09:11:48Z
<p>Hi,</p>
<p>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.</p>
<p>Could anyone point me in the right direction please?</p>
http://stackoverflow.com/questions/1851675/wot-bookmarklet0WOT BookmarkletS.A2009-12-05T09:16:20Z2009-12-08T03:38:25Z
<p>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 extension, either.</p>
<p>WOT has a <a href="http://api.mywot.com/widgets/ratings.js" rel="nofollow">Javascript API</a> that allows you to activate the ratings on any page it is included in, so I am using that as a base. However, it never seems to work correctly as a bookmarklet. Here's one attempt where I tried to keep the code as close to the API as possible. I only modified the wotinject function so that it would work in a bookmarklet and added a timeout so that the rating widget wouldn't be loaded before jQuery.</p>
<pre><code>var wotprotocol = (document.location.protocol == "https:") ? "https://" : "http://";
var wotbase = wotprotocol + "api.mywot.com/widgets";
var wotinject = function(src) {
document.body.appendChild(document.createElement("script")).src = wotbase + "/" + src + ".js";
};
var wotjquery = typeof(jQuery) != "undefined";
if (!wotjquery) {
wotinject("jquery");
}
void(window.setTimeout(wotinject, 200, "ratingwidget"));
</code></pre>
<p>I can see the APIs being loaded in the status bar, but it doesn't do anything at all. Is there any way to get this working?</p>
http://stackoverflow.com/questions/1830810/where-can-i-learn-about-how-do-developer-browser-bookmarklets-language-framewor0where can I learn about how do developer browser bookmarklets (language, framework, IDE, techniques etc)?Greg2009-12-02T05:23:24Z2009-12-02T08:58:52Z
<p>Hi,</p>
<p>where can I learn about how do developer browser bookmarklets (language, framework, IDE, techniques etc)? Perhaps they are more of a Javascript development thing?</p>
<p>To give examples of what I'm talking about see:</p>
<p><a href="http://www.evernote.com/about/download/web%5Fclipper.php" rel="nofollow">http://www.evernote.com/about/download/web_clipper.php</a></p>
<p>and</p>
<p><a href="http://readitlaterlist.com/bookmarklets/" rel="nofollow">http://readitlaterlist.com/bookmarklets/</a></p>
<p>Thanks</p>
http://stackoverflow.com/questions/1810885/easier-bookmarklet-development0easier bookmarklet developmentRamyenHead2009-11-27T22:49:14Z2009-11-30T22:13:46Z
<p>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 starts again.</p>
<p>How can I make this cycle less tedious?</p>
http://stackoverflow.com/questions/1790603/extract-part-of-an-url-using-a-bookmarklet-or-similar-e-g-firefox-addon0Extract part of an url using a bookmarklet or similar (e.g. firefox addon)ploughansen2009-11-24T14:56:00Z2009-11-24T14:56:00Z
<p>Does anybody know of a bookmarklet or firefox addon that let's you extract part of an url.</p>
<p>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: <a href="https://mail.google.com/a/domain.com/#all/1251b8f40722a3c2" rel="nofollow">https://mail.google.com/a/domain.com/#all/1251b8f40722a3c2</a></p>
<p>What I want, is to be able to extract the last 16 characters (the "1251b8f40722a3c2" part) from the url and have it copied to the clipboard automatically.</p>
<p>A bookmarklet would be preferred (compatibility), but a firefox addon is also okay.</p>
<p>Thank you! :)</p>
http://stackoverflow.com/questions/747336/parse-and-add-url-from-clipboard0Parse and add url from clipboardmofle2009-04-14T12:37:55Z2009-11-23T08:40:18Z
<p>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 url to my bookmark menu.</p>
<p>Say I have url's like these</p>
<pre>http://www.website.com/frontpageeditor.jhtml?sectionID=2844&poolID=6276</pre>
<pre>javascript:getPoolPageUrl(9800,22713)</pre>
<p>Then I need to add the numbers to this url</p>
<pre>javascript:frames['content'].getPoolPageUrl(9800,22713)</pre>
<p>and then add the url to the top of the frame "content".</p>
<p>I have tried forever on this, but I can't figure out it out.</p>
<p><br /><br />
<b>Update</b><br />
I've put something together, to show you what I need. This one doesn't work though. <br /><br />Any ideas why?</p>
<pre><code>var url = window.clipboardData.getData('Text');
var reg = /(\d+)/g;
var matches = url.match(reg); //returns ["2844","6276"]
var newUrl = "javascript:frames['content'].getPoolPageUrl("+matches[0]+","+matches[1]+")";
var link = document.createElement('a');
link.src = newUrl;
frames['content'].document.body.appendChild(link);
</code></pre>
<p><br /><br />
<b>Update2</b><br />
This works. Any changes I can do to make it even better?</p>
<pre><code>var url = window.clipboardData.getData('text');
var matches = url.match(/(\d+)/g);
var link = frames['content'].document.createElement('a');
link.href = "javascript:frames['content'].getPoolPageUrl("+matches[0]+","+matches[1]+")";
link.innerHTML = document.title;
frames['content'].document.body.appendChild(link);
</code></pre>
http://stackoverflow.com/questions/1766586/how-can-i-process-xml-doc-in-javascript-bookmarklet0How can i process XML doc in javascript bookmarklet?bill weaver2009-11-19T21:11:10Z2009-11-21T14:30:04Z
<p>Can a bookmarklet process the XML result document from a web service once it's styled and displayed in the browser?</p>
<p>What i want to do is run the web service from a provided form, which returns an XML document, then click a bookmarklet button or link to grab some element values from the XML and display them in another (popup) window.</p>
http://stackoverflow.com/questions/1728070/search-for-current-website-title-and-host-bookmarklet0Search for current website title and host bookmarkletBostjan2009-11-13T09:13:54Z2009-11-13T10:10:48Z
<p>I have a bookmarklet which gets current website TITLE and search for it on my website:</p>
<p>javascript:q=(document.location.host);void(open('<a href="http://example.com/search.php?search=" rel="nofollow">http://example.com/search.php?search=</a>'+document.title,'_self','resizable,location,menubar,toolbar,scrollbars,status'));</p>
<p>But now I would like to change this bookmarklet so it will search for current website title like now and if title is not found it should search for website host. So I guess I should use <em>else</em> option or something???? Is there any way to do this? I wonder what the bookmarklet should be...</p>
<p>Thank you for your help!</p>
http://stackoverflow.com/questions/1707426/bookmarklet-to-grab-the-current-website-address-but-without-http0Bookmarklet to grab the current website address but without http://Bostjan2009-11-10T11:52:47Z2009-11-10T12:04:00Z
<p>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 <code>http://</code> part - which is ok) like:</p>
<pre><code>javascript:q=(document.location.host); void(open('http://mysite.com/search.php?search='+location.host,'_self','resizable,location,menubar,toolbar,scrollbars,status'));
</code></pre>
<p>The problem is that this bookmarklet only grabs the host name like google.com and not the whole address like google.com/sub/page.htm. Is there any way I can left the <code>http://</code> part out and grab the remaining url?</p>
http://stackoverflow.com/questions/265528/rel-tag-bookmarklet-for-last-path-component-of-a-url1rel-tag bookmarklet for last path component of a URLpauld2008-11-05T15:39:51Z2009-11-09T14:25:33Z
<p>Many web sites support folksonomy tags. You may have heard of <a href="http://microformats.org/wiki/reltag" rel="nofollow">rel-tag</a>, where it says that "The last path component of the URL is the text of the tag".</p>
<p>I am looking for a bookmarklet or greasemonkey script (javascript) to get the "last path component" for the URL currently being viewed in the browser, add that tag into another URL, and then open that page in a new tab or window.</p>
<p>For example, if I am looking at a <a href="http://delicious.com/popular/foo" rel="nofollow">delicious.com page with the tag "foo"</a>, I may want to create <a href="http://technorati.com/tag/foo" rel="nofollow">a new URL with the tag "foo"</a>. This should also work for multiple tags in the last path component, such as, <a href="http://delicious.com/popular/foo+bar" rel="nofollow">foo+bar</a>.</p>
<p>Some <a href="http://microformats.org/discuss/mail/microformats-discuss/2008-June/012144.html" rel="nofollow">regexp suggestions</a> have been offered.</p>
http://stackoverflow.com/questions/1696429/get-the-current-url-but-without-the-http-part-bookmarklet0Get the current url but without the http:// part bookmarklet!Bostjan2009-11-08T13:15:26Z2009-11-08T13:45:57Z
<p>Hi!</p>
<p>Guys I have a question, hoping you can help me out with this one. I have a bookmarklet;</p>
<pre><code>javascript:q=(document.location.href);void(open('http://other.example.com/search.php?search='+location.href,'_self ','resizable,location,menubar,toolbar,scrollbars,status'));
</code></pre>
<p>which takes URL of the current webpage and search for it in another website. When I use this bookmarklet it takes the whole URL including <code>http://</code> and searches for it. But now I would like to change this bookmarklet so it will take only the <code>www.example.com</code> or just <code>example.com</code> (without <code>http://</code>) and search for this url. Is it possible to do this and can you please help me with this one?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1617233/how-can-i-open-a-webpage-and-run-a-javascript-function-from-a-java-app0How can I open a webpage and run a javascript function from a Java appDeelo552009-10-24T06:59:46Z2009-11-04T03:56:25Z
<p>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="test@hotmail.com";submit();void(0);</p>
<p>This works in a browser...how can I do it programatically?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1657224/regex-explanation0Regex explanationSonnyBurnette2009-11-01T13:58:45Z2009-11-01T14:55:14Z
<p>I am looking at the code in the tumblr bookmarklet and was curious what the code below did.</p>
<pre><code>try{
if(!/^(.*\.)?tumblr[^.]*$/.test(l.host))
throw(0);
tstbklt();
}
</code></pre>
<p>Can anyone tell me what the if line is testing? I have tried to decode the regex but have been unable to do so.</p>
http://stackoverflow.com/questions/1646076/combining-two-bookmarklets2Combining two bookmarkletsbaiano2009-10-29T19:40:41Z2009-10-30T00:51:17Z
<p>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) performs an action (on URL 1) that loads a page (URL 2) where Bookmarklet 2 (B2) then enters a standard set of data into a form and submits it.</p>
<p>I have tried all sorts of variations of the following:</p>
<p>javascript:(function(){w=window.open(<em>codeFromB1</em>,'CatchyPageTitle'); w.TryToWriteSomethingToTheTheNewWindowToPassAndCallFunctionB2;)}();</p>
<p>But all of my attempts at w.TryToWriteSomethingToTheTheWindow yield errors of varying types. My most recent attempt was to use something like:</p>
<p>alert(w.document.getElementsByTagName("form").length); which gives the count from the calling page on the first time called, but the count from the new window on the second time called...</p>
<p>So anyway, that's my story for today.</p>
<p>In summary, I'm a lost soul in need of guidance. I have two script actions that take place on two different pages that I would like to combine into one code snippet that can be saved as a Bookmarklet. I need someone to point me in the right direction so that I can figure out how to 'link' the two pages/scripts so as to create one spectacular Bookmarklet.</p>
<p>Thanks in advance for any help.</p>
http://stackoverflow.com/questions/1625816/javascript-bookmarklet-and-url-encoding2JavaScript bookmarklet and URL encodingsongdogtech2009-10-26T16:37:06Z2009-10-27T02:26:50Z
<p>Fully disclosing that I do not know Javascript, I'm trying to get this Javascript:</p>
<pre><code>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';
</code></pre>
<p>to work as a Bookmarklet in order to send a URL of this format:</p>
<pre><code>http://validator.w3.org/check?uri=http://www.wordpress.org&charset=%28detect+automatically%29&doctype=Inline&ss=1&group=0&user-agent=W3C_Validator%2F1.654
</code></pre>
<p>to the W3C valdiator.</p>
<p>I'm URL encoding the Javascript with <a href="http://meyerweb.com/eric/tools/dencoder/" rel="nofollow">this encoder</a>, but of course, I'm doing something wrong, either in my Javascript or in the process of encoding it.</p>
<p>Anyone have some ideas in particular or in general about Javascript bookmarklets and URL encoding? Thanks.</p>
http://stackoverflow.com/questions/1617081/setting-input-field-using-bookmarklet1Setting input field using bookmarkletDeelo552009-10-24T05:46:18Z2009-10-24T15:22:58Z
<p>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!</p>
<p>This is the HTML of the website:</p>
<pre><code><input id="txtEmail" class="popUpEmail" type="text" onblur="populateTheEmailField(this);" onclick="blankTheEmailField(this);" value="asdfsa@gmail.com"/>
</code></pre>
<p>I'm happy to contact me </p>
http://stackoverflow.com/questions/1601435/delicious-english-only1Delicious English Onlyaartist2009-10-21T15:01:10Z2009-10-21T15:20:39Z
<p>How I can see English only bookmarks on Delicious? They don't have built-in support as of now.
<a href="http://support.delicious.com/forum/comments.php?DiscussionID=2218" rel="nofollow">http://support.delicious.com/forum/comments.php?DiscussionID=2218</a></p>
<p>Is it possible via Javascript Bookmarklet or by some API?
Thanks.</p>
http://stackoverflow.com/questions/1153260/convert-jquery-greybox-into-favelet0convert jquery greybox into faveletanil2009-07-20T12:20:44Z2009-10-16T00:00:01Z
<p>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
<a href="http://jquery.com/demo/grey/" rel="nofollow">http://jquery.com/demo/grey/</a></p>
<p>thnx</p>
http://stackoverflow.com/questions/1574245/bookmarking-page-to-load-specific-frame-content-is-there-a-ff-add-on-or-somethig0Bookmarking page to load specific Frame content, is there a FF add-on or somethign I can do with a bookmarklet?noel_g2009-10-15T18:37:04Z2009-10-15T18:58:01Z
<p>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</p>
<p></p>
<p></p>
<p></p>
<p></p>
<p>I can get the url to the menu item I need, but if I use that in my bookmark, the toolbar is not loaded.</p>
<p>Does anyone know if there is a way I can create a bookmark where I can load the tookbar, but change the body to load a specific url? </p>
http://stackoverflow.com/questions/1572975/how-do-i-access-currently-selected-text-from-a-bookmarklet-while-on-gmail-com0How do I access currently selected text from a bookmarklet, while on gmail.comjamting2009-10-15T15:05:21Z2009-10-15T15:17:19Z
<p>I'm using FF 3.5.3 on Windows Vista.</p>
<p>This is my (edited for shortness) bookmarklet:</p>
<pre><code>javascript:(function(){
var text = window.content.getSelection().toString();
alert(text);
})();</code></pre>
<p>Works, but not on gmail.com. Probably due to dynamicly generated content.</p>
<p>I'm aware of <a href="http://scottbarnham.com/blog/2008/02/21/getselection-returns-empty-in-google-mail/" rel="nofollow">this</a> workaround, but it only works for Firefox extensions.</p>
http://stackoverflow.com/questions/1548181/what-are-the-issue-with-putting-markup-outside-body0What are the issue with putting markup outside <body> ?e-satis2009-10-10T15:03:21Z2009-10-10T15:24:14Z
<p>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.</p>
<p>Semantic value is not an issue for once, but I would like to know :</p>
<ul>
<li>will it trigger some browser behaviour ?</li>
<li>will it still be accessible in the DOM ?</li>
<li>can I display it using absolute positionning or should I move it to the body every time ?</li>
</ul>
http://stackoverflow.com/questions/1518494/how-to-to-dump-js-array-boommarklet0How to to dump JS array... (boommarklet?)Soulhuntre2009-10-05T06:21:40Z2009-10-05T14:35:18Z
<p>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 elements long (once every 2 minutes of a given day).</p>
<p>Rather than simulate the requests to the underlying stuff json supplier and since its only once a day, I am happy to simply develop a bookmarklet to grab the data - preferably as a XML or CSV file.</p>
<p>Any pointers to sample code or hints would help. </p>
<p>I found a <a href="http://www.phpied.com/two-bookmarklets-for-debugging-in-ie/" rel="nofollow">bookmarklet here</a> that is based on <a href="http://binnyva.blogspot.com/2005/10/dump-function-javascript-equivalent-of.html" rel="nofollow">this script</a> that does part of this - but I am not up to speed on any potential JS file IO to see if it is possible to induce a file "download" of the data, or pop it opn in a new window I can copy / paste.</p>
http://stackoverflow.com/questions/1508194/is-there-a-way-to-automatically-convert-a-greasemonkey-script-into-a-bookmarklet3Is there a way to automatically convert a Greasemonkey script into a bookmarklet?Epaga2009-10-02T07:45:37Z2009-10-02T08:04:33Z
<p>For those who don't know what a bookmarklet is: <a href="http://en.wikipedia.org/wiki/Bookmarklet" rel="nofollow">http://en.wikipedia.org/wiki/Bookmarklet</a></p>
http://stackoverflow.com/questions/1436488/bookmarklet-image-question-1Bookmarklet Image Questionsteven2009-09-17T02:45:22Z2009-09-17T03:02:04Z
<p>I'm trying to make bookmarklet to</p>
<p><strong>IF(url ends in .jpg || .png || .jpeg)</strong>
dosomething(the url)</p>
<p><strong>ELSE</strong>
onhover of any image, put a 50% opacity red cover over it. And <code>onclick something(this.src)</code></p>
<p>Catch, there might be a link already around it:
</p>
http://stackoverflow.com/questions/1416365/change-all-links-that-have-an-image-in-it-to-javascriptalertthehref0Change all links that have an image in it to: javascript(alert(thehref));Steven2009-09-12T22:56:22Z2009-09-12T23:20:17Z
<p>Change all links that have an image in it to: javascript(alert(thehref));</p>
<p>eg.</p>
<pre><code><a href="/galleries/anna-leah-111827/image01.html"><img src="/source_galleries/anna-leah-111827/tn/01.jpg"></a>
<a href="/galleries/23435/image01.html">ssss</a>
</code></pre>
<p>becomes</p>
<pre><code><a href="/galleries/anna-leah-111827/image01.html" onclick="alert(this.href)"><img src="/source_galleries/anna-leah-111827/tn/01.jpg"></a>
<a href="/galleries/23435/image01.html">ssss</a>
</code></pre>
<p>How can I do that as a bookmarklet which uses an external JavaScript file.</p>
<p>I've been trying all day to no avail.</p>
http://stackoverflow.com/questions/1363138/close-a-bookmarklet-after-submitting-form1Close a bookmarklet after submitting formqwertyuu2009-09-01T15:32:27Z2009-09-01T22:44:42Z
<p>This is related to question "http://stackoverflow.com/questions/1360618/bookmarklet-behind-elements". </p>
<p>I want to either self close the iframe after form submission or if not possible, add a close button with the iframe to close it. my bookmarklet at the moment is </p>
<pre><code>javascript:(function(){var iFrame=document.createElement('IFRAME');iFrame.src='http://www.yeongbing.com/testform/dd-formmailer/dd-formmailer.php';iFrame.style.cssText='display:block;position:absolute;top:5%;left:60%;width:40%;height:51%;overflow:hidden;';document.body.insertBefore(iFrame,document.body.firstChild);})();
</code></pre>
<p>I have tried the methods mentioned <a href="http://forums.digitalpoint.com/showthread.php?t=582469" rel="nofollow">here</a> but can't seem to work. Any suggestions?</p>