Last active
November 16, 2015 16:04
-
-
Save mkrdip/755658ce4a24b92f10ec to your computer and use it in GitHub Desktop.
Replace values using jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($){ | |
$("#ID").text("Your Text"); | |
$(".class").attr("placeholder", "New Value for Placeholder"); | |
$(".class").attr("title", "New Value for Title"); | |
})(jQuery); |
Change Divi Mobile Nav Text
<script>
(function($){
$(".mobile_nav .select_page").text("Menu");
})(jQuery);
</script>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For Instant Comment Validation