function(){$('h6').css('display','none')
There is a widget to insert comments on the site. tag h6 builds it too. Why does not this code work? After all, the home-tree is already formed. Tags used outside the widget by this code are hidden.
function(){$('h6').css('display','none')
There is a widget to insert comments on the site. tag h6 builds it too. Why does not this code work? After all, the home-tree is already formed. Tags used outside the widget by this code are hidden.
I suppose this is a widget commenting ala Vkontakte or Facebook? Then nothing will work out for you: javascript from your domain cannot influence (even read) the content of the iframe from another domain. Read a little about the same origin policy .
Source: https://ru.stackoverflow.com/questions/192668/
All Articles