Skip to content

Instantly share code, notes, and snippets.

View sanzeeb3's full-sized avatar
🚩
You are here!

Sanzeeb Aryal sanzeeb3

🚩
You are here!
View GitHub Profile
@sanzeeb3
sanzeeb3 / learning.js
Created December 27, 2018 02:40
Self Learning REACT JS
let a = 30;
console.log(a);
if( true ) {
let b = 40;
}
console.log(b); // Undefined.
@sanzeeb3
sanzeeb3 / functions.php
Created September 12, 2018 15:06
Make 100% width for only wedocs documentation page
add_action( 'wp_footer', 'add_wedocs_100_percent' );
function add_wedocs_100_percent() {
?>
<script>
jQuery('.wedocs-single-wrap').parent().parent().css("width","100%");
</script>
<?php
}