mirror of
https://github.com/boostorg/website.git
synced 2026-01-27 19:32:16 +00:00
47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
<!--===========================================================================
|
|
Copyright (c) 2007 Matias Capeletto
|
|
|
|
Use, modification and distribution is subject to the Boost Software
|
|
License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
http://www.boost.org/LICENSE_1_0.txt)
|
|
============================================================================-->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
<title>Boost.GroupedLinks Example</title>
|
|
<link rel="stylesheet" href="../../css/grouped_links.css" type="text/css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Include the grouped links java script api -->
|
|
|
|
<script type="text/javascript" src="../../../grouped_links.js"></script>
|
|
|
|
<!-- Add a div with an unique "id" attribute -->
|
|
|
|
<form id="boost_libs_list">
|
|
|
|
<!-- Call the GroupedLinks "select box" with the following parameters
|
|
(1) GroupedLinks xml definition url
|
|
(2) form id
|
|
(3) base url for the links
|
|
(4) selected item [optional] -->
|
|
|
|
<script type="text/javascript">
|
|
|
|
grouped_links_select_box('boost_libs.xml',
|
|
'boost_libs_list',
|
|
'http://www.boost.org/libs/');
|
|
|
|
</script>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|