Linked Questions

14 questions linked to/from Call Javascript function from a URL
0 votes
3 answers
4k views

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 ...
Umair Shah's user avatar
  • 2,290
-1 votes
2 answers
5k views

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 ...
Dgwrigh58's user avatar
0 votes
1 answer
321 views

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()
MrBinWin's user avatar
  • 1,329
-2 votes
1 answer
189 views

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. ...
tisme's user avatar
  • 7
0 votes
0 answers
26 views

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

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 ...
quarks's user avatar
  • 35.7k
14 votes
9 answers
130k views

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 ...
dev.e.loper's user avatar
  • 36.2k
8 votes
2 answers
6k views

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

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

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

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....
Ryba's user avatar
  • 25
0 votes
1 answer
1k views

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 ...
MaryL's user avatar
  • 1
0 votes
1 answer
708 views

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 ...
dmkathayat's user avatar
-2 votes
3 answers
83 views

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 ...