You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently use this plugin in my website which use jquery ui (1.6.2+ and ui 1.8+ version)
when i use this plugin in a septate solution..its work perfect
but
when i include these in my existing page (which is in the master page) so its show working here is my files that i m using
VerticalMenu.css" (css given in this plugin)
dot-luv/jquery-ui-1.8.15.custom.css" (ui css)
jquery-1.6.2.min.js" (core)
jquery-ui-1.8.15.custom.min.js" (ui)
jquery.ui.smoothMenu.js" (include in this plugin)
jquery.placeholder.js" (another plugin which is working)
and my script
calling from ajax (working fine)
success: function (msg) {
var content = msg.d;
alert(content); $("ul[id$=smooth_menu_1]").hide(); $("ul[id$=smooth_menu_1]").html(content);
$('#smooth_menu_1 > li').smoothMenu({ direction: 'vertical', zIndex: 10, icon: false }); $("ul[id$=smooth_menu_1]").show();
my markup
(data will be fill from code behind)
i need solution....................there is no issue of master page since master page excute on the server side and our web on the browser (client side).............. i also use $.noconfilt but nothing working on my way...................need help !
The text was updated successfully, but these errors were encountered:
somehow i resolve the issue using $.noconflct.......its wokring fine for me for only 2 days... now when i open the page i gives me exception (e.message = 'undefined')
without any reason since i selection is working fine and in console... when i code this. it give me 1 as return $("ul[id$=smooth_menu_1]").length
...
what is wrong any idea guyz?
I recently use this plugin in my website which use jquery ui (1.6.2+ and ui 1.8+ version)
when i use this plugin in a septate solution..its work perfect
but
when i include these in my existing page (which is in the master page) so its show working here is my files that i m using
VerticalMenu.css" (css given in this plugin)
dot-luv/jquery-ui-1.8.15.custom.css" (ui css)
jquery-1.6.2.min.js" (core)
jquery-ui-1.8.15.custom.min.js" (ui)
jquery.ui.smoothMenu.js" (include in this plugin)
jquery.placeholder.js" (another plugin which is working)
and my script
$("ul[id$ =smooth_menu_1]").hide();
$("ul[id$ =smooth_menu_1]").html(content);
$("ul[id$ =smooth_menu_1]").show();
calling from ajax (working fine)
success: function (msg) {
var content = msg.d;
alert(content);
$('#smooth_menu_1 > li').smoothMenu({ direction: 'vertical', zIndex: 10, icon: false });
my markup
(data will be fill from code behind)
i need solution....................there is no issue of master page since master page excute on the server side and our web on the browser (client side).............. i also use $.noconfilt but nothing working on my way...................need help !
The text was updated successfully, but these errors were encountered: