I'm trying to change css using jQuery but mso-hide property doesn't get saved using jQuery.
What other solution will be to do this using jQuery?
styleCSS = {
'display': 'none',
'height' : '0px',
'line-height' : '0px',
'max-height' : '0px',
'overflow' : 'hidden',
'font-size': '0px',
'mso-hide' : 'all',
'width' : '0px',
'max-width' : '0px'
}
$('.container').find('.hide-me').css(styleCSS);