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
What is spread syntax?
How to you change the title of the page by javascript?
What is use of object as function?
What is meant by vanilla javascript?
what is a dataset
Why do we need javascript?
What is the use of let & const in javascript?
Where are cookies actually stored on the hard disk?
What is use of flutter?
What is difference between ajax and javascript?
How will you create new object in javascript?
What is the scope of a function?
What does 3+4+"7" evaluate to?
How do I open javascript in browser?
Does spread operator deep copy?