Hide label/handle/tab
-
I have a ‘contact us’ button in the header of my page. Clicking it executes the following JavaScript:
jQuery('#wpcs_handle').click()
This works as intended. I would like for that button to be the only way to access the slider and contact form. Is there a way to hide its handle?
Because it sets
display:block
as an inline style, CSS is out. I tried placingjQuery('#wpcs_handle').hide()
in my jQueryready()
function but it is still being displayed. I’m guessing the plugin code runs after my ready() function.I can make all of its elements transparent via CSS, but that seems like a ginormous hack. Anyone have any better ideas?
- The topic ‘Hide label/handle/tab’ is closed to new replies.