Hide Link On Click ?

Aug 12, 2011

I have a link, and a onClick event, which calls jscript function.

Everything is okay, but how can i for example hide that link on click ?

I mean, i can do onClick = "this.hide()" or link.observe('click', function() { ... I can acomplish it this way, but can i do it with a function ?

Because, on click,a function does ajax reuqests, and i want that function to hide the link, not with inline code, or with some observe actions..and after that request, i want to hide the link.

View 3 Replies


ADVERTISEMENT

Hide A Link After Click?

Jul 21, 2010

I am programming a website. On there website the users will be able to click "Add as friend". I am basically wanting it so that when my users click "Add as friend" the link will dis-appear and then it will visit a page on the iframe that I have already coded with a variable (addfriend.php?pid=CODEHERE).

If there is anyone that knows how I can make the code dis-appear using Ajax.

View 2 Replies View Related

JQuery :: Show Hide 'td' On Click Of A Link?

Feb 12, 2010

I have a table that contains information that is hidden within a 'td' element. Users can access this information if they wish by clicking on a link that is held in another 'td' element on the previous row (table structure below):

<table>
<tr>
<td><a href="#" class="install_toggle"

[code]....

View 1 Replies View Related

Link Click To Hide / Show Series Of DIV

Jan 1, 2011

I'm basically trying to make it so a link click will hide and display a series of DIVs to make my site look a bit neater and more professional. The code I have WORKS, it can make a DIV appear and disappear easily enough but the issue I'm having is that it only works if you click the same link to show nad hide. Click a link to show a DIV then click another link and both will be visible.

But the only other code I tried to hide all but the selected DIV just results in my page becoming invisible (Its constructed with DIVs from top to bottom) so its not a suitable result. I'm basically after this: [URL]. Where you click on the link (in this case an image) and it shows what you need. I did try searching through their HTML and code but their javascript file appears as one long string to me so its hard to find any real useful detail.

This is the code I have at the moment:
Code JavaScript:
function showHide(shID) {
if (document.getElementById(shID)) {
if (document.getElementById(shID).style.display != 'block') {
document.getElementById(shID).style.display = 'block';
}else {
document.getElementById(shID).style.display = 'none';
}}}

And this is my current page in practice. [URL]. I'm assuming I might need an array but I need to stop it picking on every DIV and only the DIVs in my content area.

View 6 Replies View Related

Hide/Show Div - On First Click It Detects That Div Is Hidden And Makes It Visible - Button On Second Click It Does Nothing

Mar 8, 2010

What I've doing wrong, on first click it detects that the div is hidden and makes it visible, button on second click it does nothing:

View 1 Replies View Related

JQuery :: Simple Click(display) And Click(hide) Not Working?

Aug 15, 2011

I have this code:

$
(
'#region_dc').
click

[code]....

The click works fine. Check the checkbox, the hidden div displays. But when I uncheck the checkbox, I want it to go away.

View 3 Replies View Related

JQuery :: If You Click On A Link (going To Info.html) In The Textbox ".details" And Go Back It Doesnt Hide The ".details"-box?

May 31, 2010

thats my simple source, sorry i'm a beginner... :

$(document).ready(function(){
$(".details").hide();
$(".details a")

[code]....

and thats my problem: if you click on a link (going to info.html) in the textbox ".details" and go back (via the back button in your browser) it doesnt hide the ".details"-box. how can i hide my ".details" everytime the page is loaded, even by the backbutton?

View 2 Replies View Related

Call The Click Event Of The Link (anchor Tag) On The Click Of The Button?

Jan 24, 2011

I want to call the click event of the link (anchor tag) on the click of the button. I used this code below in the click event of button to call links click event and it works fine in IE.

document.getElementById('linktag').click();

But, this doesn't work in Firefox. I googled a bit and found that in firefox, you have to do something more to achieve this behaviour. So, I ended up doing this on button click to work in firefox:

var link=document.getElementById('linktag');
var e = document.createEvent('MouseEvents');
e.initEvent(

[code]....

The above code does the click on link when I click on the button. But my problem now is that I have defined a link as

<a href="mailto:abc@xyz.com?subject=abc&body=email body">email </a>

and when click is called and mailto links opens my email client, it somehow ignores the subject and body parameters of the link. It works properly when i actually click a link element. but it doesn't work when i simulate the click event by code written above. above dispatching event code somehow ignores the link parameters?

View 3 Replies View Related

Synthetic Click On Link Doesn't Follow Link

Jun 4, 2007

Below is an example of a synthetic click in Firefox. The browser does
not follow the link. Is that the just the way synthetic clicks work of
am I doing something wrong? I know the synthetic click occurs because
if I add an onclick attribute to the link the handler runs. Any ideas? Code:

View 2 Replies View Related

JQuery :: Click On A Link Just Created Using Click Event?

May 31, 2010

How can I give a click on a link when it is just created and added to DOM?

None of this works:
function openProfilePage(profile){
$('#profile-link').remove();
var link = $('<a/>').attr({'href':'profile.php?user='+profile, 'target':'_blank', 'id':'profile-link'}).css({'top':'-200px','left':'-300px', 'position':'absolute'}).html(profile);

[Code]...

View 7 Replies View Related

On Click Open Form Box - Html Form Shows Up When Visitor Click A Link

Aug 24, 2009

How to Make a Html Form Shows Up when Visitor Click a Link.. I have seen Site where you want to add Message u click Link then the Form under the Link Shows Up .. it stays Hidden unless Visitor Click Link 'Send Message'. It seems done by Java but How ..

View 10 Replies View Related

Hide A Div/link Without Any Id

Jan 22, 2010

look at following html:

<div style="padding-bottom: 4px;">
<img height="10" align="absmiddle" width="10" src="images/1rightarrow.gif"> <a class="mainmenu" href="affiliate-settings.php">Inoutscripts Affiliate Id </a>
</div>

way to hide this div or link in javascript/jquery? I can't make use of class as well because there are several links as well with the same class name.

View 7 Replies View Related

Show / Hide DIV According To Link URL

Mar 4, 2009

I am pretty new to JS but I've managed to create a function to show and hide a div according to a link's URL, but I am gonna have lots of url's and lots of div's to show and hide, its not a problem to show and hide them, the only trouble is that they stack, if I show div 1, and then press link 2 to show div 2, Div 2 is gonna be below div 1, and what I want is that when I click link 2 to hide div 1 or any other shown divs, I am sure its possible but i don't know how to do it. I think it would be possible by storing the id of the div in a variable, but the only problem is that when I call that function, the variable always changes so it would be a matter of storing the id in a variable outside the function, but i don't know how to do that, or what are the rules?

This is my code:
JS
function showHide(product) {
var el = document.getElementById(product);
el.className = (el.className == 'hide') ? '' : 'hide';
}

HTML
<div id="1" class="hide">Content of Div 1</div>
<div id="2" class="hide">Content of Div 2</div>
<a href="javascript:showHide('1');">Show Hide 1</a>
<a href="javascript:showHide('2');">Show Hide 1</a>

CSS
.hide {
display:none;
}

I need to have the javascript function call in href because of an applet I am using. In resume, the divs are hidden at the start, when I click one link, the div shows, when I click the other link I need the previous div shown to be hidden (class="hide"), and show the new div and so on.

View 4 Replies View Related

How To HIDE Link At Certain Time

Dec 1, 2009

I need a javascript code that allows me to hide a link at a certain time and show the link again at a certain time. my project requirement is that i need to be able to hide the link at a certain period of time to restrict users from acessing it.only from 12pm to 2pm the link will be display, users are able to click the link. after and before that timing, the link will not be displayed[hide] or the when click on the link error message will be shown.

View 11 Replies View Related

Hide Link And Div OnClick?

Mar 24, 2010

I am having trouble trying to hide a link and a div when I click on a link. Here is what I tried to do first.

I have two links and one div box. When I click the first link I want to show the div box and another link (hide) then at the same time I want to hide the link that I clicked.

Showdiv HideDiv(initially hidden)
--------------div box------
| initially hidden |
| |

[Code]....

If it is not possible to do with link (<a> tags) can I achieve this with an image? Lets say I just change the image onclick and show a div box and then click the same (now changed image) and hide the box.

View 5 Replies View Related

Hide Div On Click

Dec 24, 2006

So basically I want to make a side navigation that has a button that can hide the whole layer (making more room for text). Saw it done before but forget how it was done. More info:

Along the side of that div is the button to hide the div, i know that that will be in its own div, that will have a script to hide (or somehow change a value in the css) to make the side bar and its conetent not visible.

View 4 Replies View Related

Hide URL In Statusbar When Mouse Over Link

Jul 23, 2005

I know you can do an onmouseover/onmouseout to display alternate text for
links but Im looking for a script that would cover all links on a page
without having to add code to each link.

Is there such a thing?

I also know lots of people hate it when you do that but this is for an
application which requires IE5.5+ and there is no need for the user to view
the links.

View 9 Replies View Related

JQuery :: Hide The Destination URL Of A Link?

Jul 30, 2009

I have a menu, on which is a delete link. The URL of the link is quite plain: <a href="http://mysite.com?delete=true&id=123">http://mysite.com?delete=true&id=123</a>
(quite obvious I think that the request is to delete the id=123) I wish to hide the destination URL in the browser from the user - so that it shows a harmless url like: <a href="http://mysite.com?#">http://mysite.com?#</a> or similar. The reasons are more aesthetic than anything else. Also the other advantage is once the user clicks on the link, and then hits on refresh, the request gets posted again and because the id=123 has already been deleted, it will just generate an error. I dont mind using ajax for this - ajax and non-ajax.<br clear="all">

View 7 Replies View Related

Hide Previous Link Until Next Clicked

Dec 31, 2009

HTML Code:
<ul id="toggle">
<li class="previous"><a href="#1"><</li>
<li class="next"><a href="#2">></a></li>
</ul>

Basically what I'm looking to do is at first, I want to hide the previous link until next is clicked. When next is clicked the first href will change to #2 and the 2nd will change to #3. If then #2 is clicked it'll go back to the first step, if #3 is clicked it'll move on to...
#2 changes to #3 and #3 changes to #4, repeat above process.
#3 changes to #4 and #4 from the last frame is now hidden.
Is this possible with javascript?

View 1 Replies View Related

Hide/show Link Like Rapidshare

Jun 29, 2006

just wondering, anybody has script/tutorial that does the show link after 45 seconds like rapidshare? There's a counter and after 45 seconds it displays the link.

View 1 Replies View Related

JQuery :: Show / Hide Link Div?

Apr 13, 2009

I have multiple divs called article which have a show/hide link to toggle a div inside called articleBody. Problem is when I click the link all divs show/hide. The html structure is below:

<div class="article">
<p class="show"><a href="#">Hide [-]</a></p>
<div class="articleBody"><!-- Stuff i need to hide on click</div>
</div>

how I can toggle the text to say show/hide as well as just closing that one instance of div article rather than every instance on the page?

Thanks</textarea></p>
<input type='hidden' name='ID[4]' value='206852' />
<input type='hidden' name='URL[4]' value='http://forum.jquery.com/topic/direction-please-show-hide-from-single-link' />
<input type='hidden' name='CAT[4]' value='JQuery' />

[code]....

I have 11 elements with long description of each element of them. I decided to display the elements on the sidebar and the description of each one of them will be displayed on the body directly when the user clicks on the element.but the problem with this one is put the content (or description) inside the javascript code, and I want the description be on the HTML code to make it later on flexible for changes by the admin after putting the data including the description of these elements on the database instead of hard-coded style.

View 4 Replies View Related

JQuery :: Hide DIV Tag When Click Outside

Jul 25, 2011

The issue is that I want to hide a div tag once click anywhere else, exactly like Jquery UI Datepicker.

View 12 Replies View Related

Hide A Div Via Button Click?

Sep 2, 2009

I'm using the <div> command, but I would like that, when the page opens, this <div> is closed.

The main goal is that the user can open this <div> with a button.

View 2 Replies View Related

Hide Div When Click Anywhere In Browser

Jul 5, 2006

I know how to click a link to show a hidden div. However, how can I hide the div when users click anywhere in the browser? I would like some behaviour like "releaseOutside" in javascript.

I search this forum and find some code to try, but it doesn't work. When I click the link, the div does not show anymore (if I took out the document.onclick function, the div shows). Here is my code:

<script language="javascript" type="text/javascript">
function showdiv() {
document.getElementById("mydiv").style.display = "block";
return false;
}
document.onclick = function() {
document.getElementById("mydiv").style.display = "none";
}
</script>
</head>
<body>
<a href="#" onclick="return showdiv()">Link</a>
<div id="mydiv" style="display:none">bah bah bah...</div>

View 2 Replies View Related

Hide Email Address With Image As Link

Mar 9, 2006

I'm hiding the email address on a website with this javascript which works fine:
---------------------------------
<p>Send your comments and questions to our
<script language=javascript>
<!--
var contact = "Newsletter Editor"
var email = "news"
var emailHost = "netmechanic.com"
document.write("<a href=" + "mail" + "to:" + email + "@" + emailHost+">" + contact + "</a>" + ".")
//-->
</script>
</p>
---------------------------------
How can I make an image instead of the text as a link to start thisscript?

View 17 Replies View Related

JQuery :: Hide And Show Elements With Same Link?

Jun 16, 2011

$('a.showContent').click(function(e) {
e.preventDefault();
$(this).each(function(i) {
$(this).parent().parent().find('.hide').slideDown();

[code]...

is also not doing it..how do I hide elements with same link that I used to show them?

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved