I have an noob issue with javascript. I did search the internet how to add a url in javascript, but I cannot figure it out.
I have the following items, but I want it clickable with an url behind it. Does anyone know how to do this in the following code.
$(function(){
$.contextMenu({
selector: '.context-menu-one',
trigger: 'left',
items: {
"Ship": {name: "Ship Expedite", icon: "paste"},
"Request": {name: "Request information", icon: "edit"},
"Reminder": {name: "Send reminder", icon: "reminder"},
"Inbound": {name: "Request Inboud", icon: "copy"},
"delete": {name: "Delete expedite", icon: "delete"},
"sep1": "---------",
}
});
});