Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <html>
- <head>
- <!-- Customize Context Menu Code Start -->
- <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
- <script src="jquery-1.4.2.min.js" type="text/javascript"></script>
- <script src="jquery.contextMenu.js" type="text/javascript"></script>
- <link href="jquery.contextMenu.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
- $(document).ready( function() {
- // Show menu when #myDiv is clicked
- $("#myDiv a").contextMenu({menu: 'myMenu'},function(action, el, pos) {
- alert(
- 'Action: ' + action + '\n\n' +
- 'Element ID: ' + $(el).attr('id') + '\n\n' +
- 'X: ' + pos.x + ' Y: ' + pos.y + ' (relative to element)\n\n' +
- 'X: ' + pos.docX + ' Y: ' + pos.docY+ ' (relative to document)'
- );
- });
- // Show menu when a list item is clicked
- $("#myList UL LI").contextMenu({menu: 'myMenu'}, function(action, el, pos) {
- alert(
- 'Action: ' + action + '\n\n' +
- 'Element text: ' + $(el).text() + '\n\n' +
- 'X: ' + pos.x + ' Y: ' + pos.y + ' (relative to element)\n\n' +
- 'X: ' + pos.docX + ' Y: ' + pos.docY+ ' (relative to document)'
- );
- });
- });
- </script>
- <!-- Customize Context Menu Code End -->
- </head>
- <body>
- <h3>Asset List</h3>
- <div id="myDiv">
- <c:forEach items="${assets}" var="asset">
- <a href="assets/<c:out value="${asset}"/>"><c:out value="${asset}"/></a>
- <br />
- </c:forEach>
- </div>
- <br/><br/>
- <a href="asset">Upload Asset</a>
- <!-- Customize Context Menu Code Start -->
- <ul id="myMenu" class="contextMenu">
- <li class="edit"><a href="#edit">Edit</a></li>
- <li class="cut separator"><a href="#cut">Cut</a></li>
- <li class="copy"><a href="#copy">Copy</a></li>
- <li class="paste"><a href="#paste">Paste</a></li>
- <li class="delete"><a href="#delete">Delete</a></li>
- <li class="quit separator"><a href="#quit">Quit</a></li>
- </ul>
- <!-- Customize Context Menu Code End -->
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment