Hi Kambene
I think the reason of this issue is the permission for written file. So you should edit it as normal.
<blockquote> And In my case the megamenu is not working</blockquote> I need check directly on your site or please find in templates/ja_university/js/menu/mega.js
prepare: function () {
//preload images
var imgElms = this.menu.getElements('img');
if (imgElms.length && !this.imgloaded) {
var imgSrcs = [];
imgElms.each(function (image) {
imgSrcs.push(image.src)
});
new Asset.images(imgSrcs, {
onComplete: function () {
this.start();
}.bind(this)
});
this.imgloaded = true;
//call this start if cannot load image after sometime
this.start.delay(3000, this);
} else {
this.start();
}
},
and replace as
prepare: function () {
//preload images
var imgElms = this.menu.getElements('img');
if (imgElms.length && !this.imgloaded) {
var imgSrcs = [];
imgElms.each(function (image) {
imgSrcs.push(image.src)
});
new Asset.images(imgSrcs, {
onComplete: function () {
this.start();
}.bind(this)
});
this.imgloaded = true;
//call this start if cannot load image after sometime
this.start.delay(3000, this);
} else {
this.imgloaded = true;
this.start();
}
},
Hope that can help you!
Regards,