JQuery Login Dropdown not functioning in theme

its working now:- jQuery(function() { var $button = jQuery(‘#loginButton’); var $box = jQuery(‘#site-crhead’); var $form = jQuery(‘#loginForm’); $button.live(‘click’,function(login) { console.log($box); $box.toggle(); $button.toggleClass(‘active’); }); $form.live(‘click’,function() { return false; }); jQuery(this).live(‘click’,function(login) { if(!(jQuery(login.target).parent(‘#loginButton’).length > 0)) { $button.removeClass(‘active’); $box.hide(); } }); }); Just update your code according to you, even your mouseup function was not working, according to … Read more

Passing variable data from external jQuery file to options.php

May i suggest: $(‘tr td .widget-remove a’).click(function(){ var toremove = $(this).attr(‘rel’); // Out of ideas – you shouldn’t really be for we are here! $.ajax({ type: ‘POST’, // use the method you want dataType: ‘json’, url: ajaxurl, // this is the url to the admin ajax script data: { nonce : your_script_data_object.nonce, toremove: toremove }, … Read more

Adding text to links when not on the homepage

sThis doesn’t need jquery, just add a custom header for your pages and change the menu links in this header accordingly: Copy the same header.php file and rename it to header-pages.php and edit its menu links to the following: <ul> <li data-menuanchor=”home”> <a href=”https://wordpress.stackexchange.com/”>home</a> </li> <li data-menuanchor=”about”> <a href=”/#about”>about us</a> </li> … </ul> In your … Read more

Autocomplete for titles via ajax – rework of past post away from like_escape()

Substitute $search = like_escape($_REQUEST[‘q’]); with $search = $wpdb->esc_like( $_REQUEST[‘q’] ); (Note assuming $_REQUEST has standard WP magic_quotes_gpc escaping.) For reference, here’s the exact code I put in “functions.php”: add_action(‘wp_enqueue_scripts’, ‘se_wp_enqueue_scripts’); function se_wp_enqueue_scripts() { wp_enqueue_script(‘suggest’); } add_action(‘wp_footer’, ‘se_wp_head’); function se_wp_head() { ?> Search: <input id=”se_search_element_id” type=”text”> <script type=”text/javascript”> var se_ajax_url=”<?php echo admin_url(“admin-ajax.php’); ?>’; jQuery(document).ready(function() { jQuery(‘#se_search_element_id’).suggest(se_ajax_url … Read more

How to blur the_post_thumbnail() via blur.js (jquery)?

I figured it out. blur.js needs an background-image to work. i had to set the image as background separately: <?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), ‘full’ );?> <a href=”https://wordpress.stackexchange.com/questions/210956/<?php echo $imageLink; ?>”> <div class=”testbg” style=”background-image: url(‘<?php echo $thumb[‘0′];?>’)”> <?php the_post_thumbnail(); ?> </div> </a>