I welcome everyone again.

Is it possible to make several links ( <a></a> ) on 1 page of the site, with different pop-up divs?

 таблица, внутри обычные ссылки ссылка 1 - всплывает окно 1, с информацией 1 ссылка 2 - всплывает окно 2, с информацией 2 ... ссылка 50 - всплывает окно 50, с информацией 50 

Can anyone give an example of a complete code?

ps is not a menu with a drop-down list of items, but windows that pop up above everything on the page, in the center, in which the contents of the code I need ( <div></div>, <table></table> )

After unsuccessfully asked question - decided more specifically.

    1 answer 1

     $('.op_link a').click(function() { $('#window_' + $(this).attr('name')).toggle(); }); <style> .window { display: none; margin: 5% auto; width: 50%; height: 400px; position: fixed; left: 25%; border: 1px solid; } </style> <div id="window_1" class="window">window 1</div> <div id="window_2" class="window">window 2</div> <div class="op_link"> <a href="#" name="1">Open window 1</a> <br /> <a href="#" name="2">Open window 2</a> </div> 
    • super !! 1 and how can you close this structure? (link to the page - resets some of the selected parameters on it) - frank