Linked Questions
14 questions linked to/from Call Javascript function from a URL
0
votes
3
answers
4k
views
How to call an onclick javascript function directly in url? [duplicate]
I want to call to a onclick function as I am writting script for MikroTik RouterBoard in order to restart my Modem by just visiting a simple link directly but what I found was that the page from which ...
-1
votes
2
answers
5k
views
Insert javascript alert into url [duplicate]
I am currently learning some web programming related stuff. I'm a little confused on how I insert some javascript into say a random URL. I'm trying to insert an alert message with an echo payload so ...
0
votes
1
answer
321
views
Add a javascript call to link [duplicate]
I have a link on my page with href="javascript:sayhello()",
is it possible to add this function to full url?
Somethink like: http://example.com/page.html+javascript:sayhello()
-2
votes
1
answer
189
views
Is there an alternative to `javascript:` for running JS from the URL bar? [duplicate]
I am wanting to run JS that is put into the URL bar.
I have tried putting javascript: // js code here. in the URL bar but this does not seem to be supported / do anything in my Chromium based browser. ...
0
votes
0
answers
26
views
Linking bookmarklet with site's bookmark [duplicate]
I made working bookmarklet to alter some stuff on some site. What I would like to do, is to link somehow this bookmarklet with that site/bookmark containing url address of that site. I was trying to ...
17
votes
2
answers
56k
views
Execute Javascript method from browser address bar - GWT
I'm trying to execute Javascript on my web application by executing this on the browser URL/address bar:
javascript:window.alert('test');void(0);
However, nothing happens and the alert box is not ...
14
votes
9
answers
130k
views
Ways to insert javascript into URL?
Duplicate of:
What common web exploits should I know about?
This is a security question.
What should I look for in URL that prevents hacking?
Is there a way to execute javascript by passing it ...
8
votes
2
answers
6k
views
Externally link to specific tabPanel in Shiny App
It's possible to use anchor links in flat Shiny apps relatively easily - https://stackoverflow.com/a/28605517/1659890.
However, is it possible for an external link to target a specific tabPanel of a ...
1
vote
2
answers
2k
views
Reload page until HTML contains a given string
I'm trying to figure out a way to automatically reload a browser's page until a certain sequence of characters appears in the page's HTML code. Namely, player.swf". It's a blunt and simple solution to ...
-1
votes
3
answers
1k
views
Fill the search field of google and search it
I want to make a javascript that being put into any browser's url (assuming google.com is opened already) automatically puts the search query into google search field and clicks on search button.
...
1
vote
1
answer
541
views
Add JavaScript script to URL
I know that we can create a bookmark with javascript: somecodegoeshere; and we can use it to add some JavaScript for our client side as KickAss does.
But is it possible to create url to some page, e.g....
0
votes
1
answer
1k
views
How to identify the screen position of found text in a web page, in order to set the mouse cursor to that position?
On a web page in my web browser (preferably, but not necessarily Firefox), I can search (byctrl+f) for a given text "abc" within the body text of the page. From there then I must move the mouse cursor ...
0
votes
1
answer
708
views
Trigger keypress through URL
Is there a way we can include a keypress in the URL? We have a usecase where a webpage shows an additional information pane when a user presses 'i' on her keyboard. We want to show this additional ...
-2
votes
3
answers
83
views
How to call a function with href to other page on HTML
So I have 3 links: 1, 2 and 3 and they all go to the same page and each have a function (1(), 2() and 3()) I want to, when you go to one of those pages from the home page, to go to the 123.html and ...