Cursor suddenly jumping from textarea

If we use typejs in our document this type of issue will occur find below code to fix.
$(“.textarea”).bind(‘keypress’, function(e) {
if(e.which == 32){
var textarea_val = $(“.textarea”),
val_ask = textarea_val.val();
textarea_val.focus().val(“”).val(val_ask);
}
});

Advertisement

Sessions functionality in jQuery

Find below code for handling sessions in jQuery.

/*Set session value*/
$.session.set(‘session_key’, ‘a value’);

/*Get session value by key*/
$sess = $.session.get(‘session_key’);

/*Remove session*/
$.session.remove(‘session_key’);

/*Remove all sessions*/
$.session.clear();

HTTPS redirection code for htaccess

/*Total website redirect to HTTPS*/

ExpiresActive On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]


/*Redirect specific page to HTTPS*/

ExpiresActive On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{HTTPS} !=on [NC]
RewriteCond %{REQUEST_URI} /page_path/
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]

Browser close & reload events in jQuery

/*Browser close jQuery event*/
Put this code body tag –> onunload=”doUnload()”

Below code for script
function doUnload()
{
if(window.event.clientX < 0 && window.event.clientY <0){
var cookieName = ‘suitebeb123’;
$.removeCookie(cookieName);
}
}

/*Broser reload javascript function*/
window.onbeforeunload = function (e) {
// Your logic to prepare for ‘Stay on this Page’ goes here
}

Cookies functionality in jQuery

/*Create cookie*/
$.cookie(cookieName, cookieValue);

/*Create cookie with expiry time*/
var expDate = new Date();
expDate.setTime(expDate.getTime() + (15 * 60 * 1000));
$.cookie(cookieName, cookieValue, { expires: expDate });

/*Get cookie value*/
var cook = $.cookie(‘cookieName’);

/*Remove cookie value*/
$.removeCookie(‘cookieName’);

Featured Images missing from my RSS feed?

function featuredtoRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = ‘div html tag open‘ . get_the_post_thumbnail( $post->ID, ‘medium’, array( ‘style’ => ‘margin-bottom: 15px;’ ) ) . ‘div html tag close‘ . $content;
}
return $content;
}

add_filter(‘the_excerpt_rss’, ‘featuredtoRSS’);
add_filter(‘the_content_feed’, ‘featuredtoRSS’);