Forum Moderators: open
Socialswitcher = {
init: function() {
var panel = jQuery('.social-switcher');
jQuery('.mybutton1').click(function ()
{
jQuery('.social-switcher').show();
}
);
jQuery('.social-close').click(function ()
{
jQuery('.social-switcher').hide();
}
);
}
}
Socialswitcher = {
init: function() {
...
}
}
...
Socialswitcher.init();
<i class="mybutton1">Show</i>
<div class="social-switcher" style="display: none;">
Some content
<div class="social-close"><i class="icon-close">X</i></div>
Socialswitcher = {
init: function() {
var panel = jQuery('.social-switcher');
jQuery('.mybutton1').click(function ()
{
panel.show();
}
);
jQuery('.social-close').click(function ()
{
panel.hide();
}
);
}
}