有没有办法将类添加到JOOMLA PLUGIN

时间:2014-04-25 12:17:52

标签: jquery html css plugins joomla

我正在使用Joomla 3.2模板,该模板倾向于使用模块后缀隐藏模块在移动设备和平板电脑中的显示,例如: nomobile notablet 因此,从技术上讲,当我们添加这些模块后缀,实际上是将其添加到html代码:<div class="nomobile><div class="notablet">。现在,我刚刚安装了 SCROLL TO TOP 类型插件,我想将其隐藏在移动网站上,有没有办法在任何地方使用<div class="nomobile>隐藏该插件?

1 个答案:

答案 0 :(得分:0)

这将检测页面上该类的使用。

if ($(".nomobile").length) {
    // class exists on the page - hide the scroll to top elements
}
else {
    // class does not exist on the page
}