Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I am using an tag to load a NPAPI plugin in my HTML page. At certain point in time, I am trying to hide the and in order to do so, I am changing the width and height of the object to
I am using an tag to load a NPAPI plugin in my HTML page. At certain point in time, I am trying to hide the and in order to do so, I am changing the width and height of the object to 0px using JavaScript. But this is not affecting the tag.
Here is the syntax:
"object width='100px' height='100px' id="pluginmedia" type="application/x-wcfmedia">"
Can some one please let me know how to hide the ?
Thanks and Regards, Souvik
It is possible ton automatize application authorization using username and password. You need to "simulate" user acceptation (on the auth web page) and parse the PIN code on the resulting page.
You need username and password (or manual acceptation) one time only if you retrieve and save user tokens (key and secret).
Some OAuth libs already provide such features
您可以改用 jQuery hide()
$('#id').hide();
在你的情况下$('#pluginmedia').hide();
$('#pluginmedia').hide();