<!doctype html>
<
html
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
meta
name
=
"viewport"
content="
initial-scale
=
1
.0,
maximum-scale
=
1
.0,
user-scalable
=
no
">
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"themes/metro/easyui.css"
>
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"themes/mobile.css"
>
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"themes/icon.css"
>
<
script
type
=
"text/javascript"
src
=
"jquery.min.js"
>
</
script
>
<
script
type
=
"text/javascript"
src
=
"jquery.easyui.min.js"
>
</
script
>
<
script
type
=
"text/javascript"
src
=
"jquery.easyui.mobile.js"
>
</
script
>
<
script
type
=
"text/javascript"
>
$(document).ready(function (){
$('#gfg').menu('show',{
left: 50,
top: 100
});
});
</
script
>
</
head
>
<
body
>
<
h1
>GeeksforGeeks</
h1
>
<
h3
>EasyUI jQuery menu widget</
h3
>
<
div
id
=
"gfg"
class
=
"easyui-menu"
style
=
"width:120px;"
>
<
div
>menu 1</
div
>
<
div
>
<
span
>menu 2</
span
>
<
div
style
=
"width:150px;"
>
<
div
><
b
>Sub menu 1</
b
></
div
>
<
div
>Sub menu 2</
div
>
<
div
>Sub menu 3</
div
>
</
div
>
</
div
>
<
div
>menu 3</
div
>
<
div
class
=
"menu-sep"
></
div
>
<
div
>menu 4</
div
>
</
div
>
</
body
>
</
html
>