Remove Referer When Clicking Link?
Mar 18, 2005
I have a pages with list of sites and when I click on links to other domains, the other domains will see the referer where I clicked from. How can I avoid the referer when clickin on links on my page? (I don't want to click new IE browser and paste the url).
View 3 Replies
ADVERTISEMENT
Feb 18, 2010
How can add and remove input field by clicking on a button. EX:
<input type="text" id="name">
<input type="text" id="email">
<input type="button" value="Add More fields">
When you click on Add more fields, input fields name and email needs to be duplicated and REMOVE button must appear to be able to remove them if neccessary.
View 1 Replies
View Related
Sep 9, 2009
I have a problem with my menu. I am trying to add and remove classes when clicking on the main menu links. For instance when on load, the 'Home' is the current tab clicked, but when I click on 'Contact Me' I would like the class current to be removed from 'Home' and added to
'Contact Me' instead.</div>
<div> </div>
<div>The code im using is the one below.</div>[code]....
View 1 Replies
View Related
Apr 27, 2007
I would like to set the link's "visited" pseudo-class with javascript
without clicking on the link. My goal is to update the link's color
(previously set in the CSS file) to be "visited" without actually
clicking on the link and then clicking "back" in the browser.
Does anyone know how? Here are the following things I've already
tried to no avail:
var obj = document.getElementById("idOfMyLink");
//obj.visited=true; // NO
//obj.style.visited=true; // NO
//obj.click(); // NO, performs a click and takes me away from
current page
/*
// Setting the src of an iframe on the same page, trying to
"stuff" this URL into browser's "History"
var theFrame = document.getElementById("myiframe");
theFrame.src = obj.href;
// NO. The iframe does go to correct URL, but the link's color
doesn't update.*/Any ideas?
View 3 Replies
View Related
Dec 4, 2009
I want to have a javascript popup box so that when a hyperlink is clicked, a user is asked if they are sure they want to click this link, if they select ok then the page loads, if they click canel then nothing happens, However when a user clicks cancel the link still loads, can anyone see where I am going wrong?
View 5 Replies
View Related
Nov 18, 2011
I have a couple of links which when clicking on them start a video. In another div with id="info" I want to give more information about the video which is playing. When you click on a new link and the video starts the information should update. The information wich is in a list item is hidden with display: none before you click on the link. My problem is that the information of the previous video is not disappearing when I start a new one. I don't know what to write to make the information of the previous video disappear.
I tried empty() and remove() but then the div id="info" shows nothing.
#info {
width: 195px;
height: 338px;
border: 2px black solid;
}
.hide {display: none;}
<script>
$(document).ready(function(){
$('#text1').click(function () {
$('#mona').show(300);
}); .....
View 12 Replies
View Related
Mar 10, 2009
I got a paragraph, and i want the letter of A will change to N and the letter of P will change to A when i click the link of the "click me to change the letter".
View 2 Replies
View Related
Apr 3, 2009
How can i reveal the contents in a div on clicking a link, like. code...
View 1 Replies
View Related
Mar 16, 2009
Does anyone know how to set the code, so that if someone clicks send on a form, and there's an error, that the form then shows in the window, (always a few pixels down from the top of the window), please ?The form is a php include on many different positions on many pages so the offsetTop will be different depending on which page it's on.
View 12 Replies
View Related
Aug 17, 2005
i've searched this forum before posting but didn't find a "clean" solution to my problem.
I have an image with a link on it:
Code:
<a href="#null" onClick="addValue('bold');"><img src="images/myimage.gif" title="Some text" alt="Some text" /></a>
which adds the value in a textarea in the same page via this function:
Code:
function addValue( val ) {
var tb = document.forms['valuesform'].elements['valuesfield'];
if ( tb.value.length > 0 ) tb.value += " , ";
tb.value += val;
}
I need to disable the link after the image has been clicked,preventing multiple insertions of the same value. I've modified the link this way:
Code:
<a href="#null" onClick="addValue('bold'); this.onclick=null;" ><img ......
but while only one click is allowed,i get many JS errors in the JSConsole like
Code:
uncaught exception etc.... and i think this is not a good sign.=
View 4 Replies
View Related
Jun 24, 2010
What I want to do is make a link appear after a user clicks a link, which would make a new tab open. So basically, the user clicks the link and it opens in a new tab, and back on the website a link appears.
View 6 Replies
View Related
Oct 21, 2011
I am dynamically adding text boxes within a table and I want to be able to dynamically remove them as well. I have this part of the code figured out.
With each text box that I add, I also add a link in the same row, but different cell that will be a "remove" link. Im having trouble finding the index of that row by clicking on a link.
I can find the index by clicking on the row(tr) but I can't seem to figure out how to find the index by clicking on the link inside of the row.
Here is my code:
Creates the link dynamically in the 4th cell:
Code:
Remove Row Code:
Code:
Find Row Index Code:
Code:
I beleive the problem is in the rows[i].onlick part, since I'm not techinically clicking on a row, Im clicking on the link. I have tried changing the rows variable to:
Code:
But that doesn't work.
View 6 Replies
View Related
Mar 10, 2009
I got a paragraph, and i want the letter of A will change to N and the letter of P will change to A when i click thethe link of the "click me to change the letter" .My code as following,
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
[code]....
View 6 Replies
View Related
Jan 10, 2011
I tried to word the question as best as possible, but here is what I want to do. I am creating a calculator online and it is getting more and more extensive, which is good b/c I'm learning a lot. Here is what I'm trying accomplish now. I am using "input" to get information from the user in the top section of my calculator and that will always stay the same.The part that will change is the results section (bottom part of the calc) based on a few different variations or setups, so I want to be able have them click on a few different options.
Option 1ption 2Option 3Depending on which one they click I want the javascript that is run for the results section to correspond to the option chosen. I also, want to be able to have a default option displayed the first time the page is loaded and then have it change if a different option is chosen. I don't think reloading the page is necessary, but I'm new to this and could use a little direction.I hope what I'd like to do makes a little sense. I'm not asking for any code written that will do this, but naturally something hints or tips that could get me going.I don't know how to "monitor" a link and return a value to a variable, so that it can be put into a an if statement in the results section.After that, it would be continually monitored or somehow restarted if the variable does change. Again, I don't know if this is the best way to go at it, but I'm not sure at all
View 1 Replies
View Related
Aug 9, 2009
I have the following code
<tr>
<td><input name="test" type="hidden" value="1" /></td>
<td class="icon"><a href="#" class="delete"><img src="images/action_delete.png" /></a></td>
</tr>
And once the delete button is clicked, I need the value from the input.
$(".delete").live("click", function(){
var id = $(this).parent("tr").children("input").attr("value");
$(this).parent("tr").remove();
});
However, I cant seem to select the input's value.
View 2 Replies
View Related
Feb 1, 2010
Is it possible to click and drag a link (either text or image) to a text field (or something similar) and have it display the URL of the link?
View 1 Replies
View Related
Jun 10, 2011
I did a search of the forums, and this was the only thing I could come up that seems similar: [URL]. The last post in this thread tells me what I already know from my other research today - this function doesn't work in FF, Safari, etc.
Here's my code:
Code:
<script type='text/javascript'> window.onload = function()
{ setTimeout(function()
{ document.getElementById('popupLink').click();
}, $timeleft); }; </script>
Works great in IE, but nothing else. I'm using a jQuery gallery tool called fancybox, and from what I can gather, the popup of the gallery must be tied to a click on an anchor link.
On their support forums, one of their admins suggested that I use the following:
Code:
<script type='javascript'>setTimeout( function() {$
('#popupLink').trigger('click'); }, $timeleft);</script>
Still doesn't work (not even in IE). BTW, $timeleft is a var that is being created in PHP. I've checked the source code and it is counting down correctly.
View 3 Replies
View Related
Sep 3, 2010
I am wanting to be able to swap out any of them to make them 'primary' this works for the first click, but after the first click it makes every div id and input name the same as the first that was clicked.It's also not working AT all if i click on the bottom link first, then a link above it.Top-down works, bottom-up doesn't.
View 3 Replies
View Related
Jan 27, 2011
How can I make a link or banner to be hidden after x clicks on it? And if possible to count only different IP clicks? Like if 30 users click on the banner and it is no longer shown in the site, unless I put some more clicks for it.
View 2 Replies
View Related
Oct 10, 2011
How to get this to work?
01.js:
View 2 Replies
View Related
May 3, 2009
I need an way to upload a file by clicking a link instead of button(<input type="file" name="somename"/>). This feature has been newly added to GMail, to attached a file we need to click a link.
View 2 Replies
View Related
Jun 4, 2011
I have a project to display PDF files by clicking a hyper link. The PDF are huge in size and it will take a long time to load. I want to show a message like "Loading Please wait" on that loading time..
View 1 Replies
View Related
Jun 3, 2010
On a page I display a link of search results which are hyperlinks, which all have the same URL get paramaters with different values (i.e. companyreport.aspx?....). I want to then click on a search result hyperlink and then generate a Div popup (this is called through a javascript call that is attached to each search result hyperlink's onClick property.
For the hyperlink that is clicked, I need to take its 'href' value and use it (reason for us is in a bit).
On the popped up Div element is a dropdown box and two buttons (accept / decline). Once the accept button is pressed, I want to then go to the page the selected hyperlink was pointing to by using the 'href' value I obtain from the clicked search hyperlink and to also append to this hyperlink the a new GET parameter and the value of the dropdown box.
I have got this to work currently but it seems quite mess, so was wondering if there is a better solution to this.
For the search results hyperlinks I have...
Code:
PromptRequestReason(this.href); return false;
this '' javascript method is....
Code:
function PromptRequestReason(hrefLocation)
{
lnkDERequestReason.href = hrefLocation;
popup('popUpDivReason');
}
then on the DIV popup I have the following link....
Code:
<a id="lnkDERequestReason" onclick="this.href = this.href + '&reason=' + document.getElementById('drpPortfolios').value">Select</a>
now this all works, but I really seem like I am taking the long way around when there could be something simple.
View 1 Replies
View Related
Mar 6, 2002
I am building a web based site administration tool and I would like to implement a system whereby when a site administrator is adding a news item or whatever they can click on a text or button link (say, "Bold") and it will automatically insert the correct tags (i.e. "<b></b>"). Almost exactly like vBulletins code imput buttons when you are composing a new topic or reply. But with vBulletins version you are presented with a textbox you need to type in which then puts the code and your text in the form, I want my version to just put the code in. I can't really explain it but I hope you get it.
View 6 Replies
View Related
May 29, 2002
I know how to use javascript to modify a newly opened window's properties. Instead, what I want to happen is someone clicks on a link and they stay in the current browser window, but the window size changes to fit my specifications.
View 4 Replies
View Related
May 22, 2010
how to send text to a textarea when clicking on a link. Kinda like when clicking on a smiley or bbcode. I have a script, and it works, but only when the text to insert is on one line. Here is the code:
<script>
function sendtext(e, text) {
e.value += text
}
[Code].....
View 2 Replies
View Related