I have a report which has id as hyperlink.when i click the
id it should move to next report which displays the
corresponding details.tell me how to get the value of
hyperlink(which id is clicked) dynamically using javascript?
so that i can make condition on my second report?
Answers were Sorted based on User's Feedback
Answer / abinash grahacharya
<script>
function show(id)
{
var n_id = id+1;
var div = 'div'+n_id;
for(var i=1;i<3;i++ )
{
var n_div = 'div'+i;
document.getElementById(n_div).style.display='none';
}
document.getElementById(div).style.display='block';
}
</script>
<div id='div1'>
<a href='#' onClick='show(1)'>Click 1</a>
Some description of 1st section
</div>
<div id='div2' style='display:none;'>
<a href='#' onClick='show(2)'>Click 2</a>
Some description of 2nd section
</div>
<div id='div3' style='display:none;'>
<a href='#' onClick='show(3)'>Click 3</a>
Some description of 3rd section
</div>
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / hanuman prasad
write some function in Onclick="myfunction(Hyperlink)"
like
<a href="#",onclick="myfunction(click1)">click1</a>
in javascrpt function u can decide which is the hyper lick
uer presently clicked on..
Cheersssssssss
| Is This Answer Correct ? | 2 Yes | 2 No |
What value does prompt() return if the user clicked the cancel button?
How can JavaScript be used?
0 Answers Deloitte, JPMorgan Chase,
Which is better for or foreach in javascript?
How do I enable cookies and javascript?
<script type="text/javascript"> function dispValue(e) { v = function (s) { return e.name + ': ' + s } if (e.type == "") return v(e.checked ? "" : ""); else return v(e.value); }
How do we add javascript onto a web page?
What is the difference between ‘function declaration’ and ‘function expression’?
What is the difference between null & undefined?
Explain window.onload and ondocumentready?
Are there any predefined constant provided by the browser with the key code values that can be reused?
What output will this program produce System.out.println(x+"+"+y+"="+(x+));
What is a null variable in javascript?