Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(document).ready(function($) {
- // Show/hide the search box at mobile widths
- $('.search-toggle').click(function() {
- // var target = $(this).parent().children('.nav-primary');
- var target = $('.site-header .widget_search');
- $(target).slideToggle('fast', function() {
- return false;
- // Animation complete.
- });
- var bg = $(this).css('background-image');
- bg = bg.replace('url(','').replace(')','');
- if (bg == '"http://utulsa.dev/wp-content/themes/utulsa/images/search.png"') {
- bg = 'url(http://utulsa.dev/wp-content/themes/utulsa/images/close.png)';
- }
- else {
- bg = 'url(http://utulsa.dev/wp-content/themes/utulsa/images/search.png)';
- }
- $(this).css('background-image',bg);
- });
- // Stop the navigation link moving to the anchor (Still need the anchor for semantic markup)
- $('.search-toggle').click(function(e) {
- e.preventDefault();
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement