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?
Answer Posted / 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 |
Post New Answer View All Answers
Should I disable javascript?
what is a code in vb amount display in words
What is nodetype in javascript?
Can an anonymous function be assigned to a variable?
What is variables in javascript?
How to write normal text code using JavaScript dynamically?
What's the Difference Between Class and Prototypal Inheritance?
What is output of undefined * 2 in javascript?
Define unescape() function?
20 Functions of Selenium with description and Examples.
How to create an array in javascript?
What is the data type of variables of in javascript?
What do mean by NULL in Javascript?
What is the difference between ‘var’ and ‘let’ keyword?
Can I declare a variable as CONSTANT in JavaScript?