Skip to content

Instantly share code, notes, and snippets.

@jeferandom
Last active November 24, 2021 06:07
Show Gist options
  • Save jeferandom/2bb006b87738c6883da1b79911f2d37c to your computer and use it in GitHub Desktop.
Save jeferandom/2bb006b87738c6883da1b79911f2d37c to your computer and use it in GitHub Desktop.
Hide element class name on webview React Native
import React, {useEffect} from 'react';
import { WebView } from 'react-native-webview';
export default function OrderReviewScreen() {
const runFirst = `
document.getElementsByClassName('main-header')[0].style.display = 'none';
true; // note: this is required, or you'll sometimes get silent failures
`;
return (
<>
<WebView
source={{ uri: `https://example.cl/`}}
injectedJavaScript={runFirst}
style={{backgroundColor: 'blue'}}
/>
</>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment