Hi guys
I got a code from a website header menue from a website,It's a combination of JS, and CSS.
Right now I have the following code:
<script>
$("#menu-images").Menu({
dataSource: [
{
text: "Dashboard", imageUrl: "images/home.png",
},
{
text: "Catalog", imageUrl: "images/AdminCatalog.gif",
items: [
{ text: "View Products"},
{ text: "Add Product"},
{ text: "Product Categories"},
{ text: "Search Products"},
{ text: "Promotion"},
{ text: "Tags"},
]
},
</script>
so here the "Catalog" is the name of the menue and "View products" and etc are the submenue for catalog,which will be appear when you bring your mouse on it.
I do not know how can I give these fildes a link to the other page?because right now the click event is not working,please help.
thank you and merry christmast.