-
Notifications
You must be signed in to change notification settings - Fork 936
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to hidden a div #416
Comments
Use the evalJavascript function to do this. For example, if the page in WebView has jQuery already running, this would work: |
thanks @muffinjello for help. that's the correct answer. closing |
@muffinjello Thanks a lot. |
where to paste this line i want to hide menu from my webview? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I want to load a url, then modify the div element of the html, e.g.:
from
<div class="goods-bottom-bar"></div>
to
<div class="goods-bottom-bar" style="display:none;"></div>
then display in flutter widget.
Does the plugin have API to achieve this?
Thanks.
The text was updated successfully, but these errors were encountered: