| bio | website | jsbookmarklets.com |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 4 months |
| seen | yesterday | |
| stats | profile views | 137 |
|
May 15 |
awarded | Notable Question |
|
Apr 2 |
awarded | Popular Question |
|
Mar 20 |
comment |
How to get current URL by JavaScript bookmarklet before loading that URL? No ... this is not possible ... till recently, running a bookmarklet on a blank page (equivalent to about:blank) was possible where you could have (window.)prompted the user or tried something else (i believe even that wouldn't have solved your requirement anyways) ... but it doesn't work anymore ... now you need to load the page first and then the bookmarklet |
|
Mar 18 |
comment |
JS and CSS dont work from Windows Azure CDN, while they load just fine in RoR appContent-Type: application/javascriptapplication/x-javascript that is weird, I guess it should be Content-Type: application/javascript or Content-Type: application/x-javascript |
|
Mar 18 |
comment |
JS and CSS dont work from Windows Azure CDN, while they load just fine in RoR app and you are sure that there are no errors? Another thing you can try, assuming your app is not too dynamic/ajaxified ... can you save the page from File -> Save Page As ... and try to open that static html page ... either directly (file:///) or from localhost ... and then try to pin-point the problem |
|
Mar 18 |
comment |
JS and CSS dont work from Windows Azure CDN, while they load just fine in RoR app Do you mean they do not work at all ... did you check the error console of Firefox ... did you check the Net panel and Console Panel of Firebug to see anything weird ... did the files load properly with fresh content (clear your cache and test again)? |
|
Mar 16 |
answered | bookmarklet - loading jquery and jquery UI if not loaded, checking a minimum version and in the right order |
|
Mar 16 |
comment |
Google Analytics for bookmarklets You can probably pass the current url as a parameter for the iframe url ... make it like <iframe src="http://mysite.com/trackGA.html?url=CURRENT_PAGE_URL"></iframe> then you might filter for this in Analytics admin page |
|
Mar 16 |
comment |
Debugging bookmarklets in Firefox Is it that you want to debug the bookmarklet in its original form, ie, debug the single line of code? I'm a bit confused by the last comment! What are the other things that you are looking for resolving your requirement? |
|
Mar 14 |
accepted | Internet Explorer automatically switches to compatibility mode (IE9 and IE10) |
|
Mar 12 |
answered | Debugging bookmarklets in Firefox |
|
Mar 8 |
comment |
Why does appending to innerHTML in a bookmarklet overwrite the entire page?void(0); is just the shortest way to get undefined. undefined = 9 characters ... void(0) = 7 characters ... void 0 => void%200 = 8 characters (%20 is space in bookmarklets) |
|
Mar 8 |
comment |
Why does appending to innerHTML in a bookmarklet overwrite the entire page? link ... It is just the way you need to use javascript: uri ... you last executed statement must resolve to undefined in a bookmarklet ... otherwise, that last value is converted to string and that is attempted to parse as an HTML page of its own. |
|
Mar 7 |
awarded | Caucus |
|
Mar 1 |
awarded | Scholar |
|
Mar 1 |
comment |
Get file path of currently executing JavaScript code for dynamically loaded cross domain JavaScript file Going with my original solution as mentioned in this answer ... there is no perfect solution and the other answers might be more easy to implement depending on the requirement. |
|
Mar 1 |
accepted | Get file path of currently executing JavaScript code for dynamically loaded cross domain JavaScript file |
|
Mar 1 |
comment |
Overlay jQuery Lightbox with Bookmarklet Please provide more details ... I understand it like you have been able to create a bookmarklet which works for your domain/site but not on others ... generally, one of these 2 must be happening: either your code is not able to handle DOM structure of the other site ... or the other site that you are testing with restricts JavaScript from other domains (eg: Your bookmarklets would not load on Facebook, Gmail which block loading external JavaScript files) |
|
Feb 27 |
answered | Styling visited links via bookmarklet? |
|
Feb 22 |
comment |
Internet Explorer automatically switches to compatibility mode (IE9 and IE10) Yeah ... and seems Microsoft knew it before release of IE 10 but still decided to not to fix it. |