Home Forums WoodMart support forum There is one problem with login through side bar , its take two time login after that is login Reply To: There is one problem with login through side bar , its take two time login after that is login

#313398

[email protected]
Participant

/* Add your JavaScript code here.

If you are using the jQuery library, then don’t forget to wrap your code inside jQuery.ready() as follows:

jQuery(document).ready(function( $ ){
// Your code in here
});

If you want to link a JavaScript file that resides on another server (similar to
<script src=”https://example.com/your-js-file.js”></script&gt;), then please use
the “Add HTML Code” page, as this is a HTML code that links a JavaScript file.

End of comment */

jQuery(document).ready(function(){

setTimeout(function(){

//var tag_new = jQuery(“template”).eq(38).attr(“id”);
var tag_new = jQuery(“template”).last().attr(“id”);
console.log(tag_new);

//alert(tag_new);
jQuery(“#” + tag_new).css(“display”, “none”);
jQuery(“#” + tag_new).next().next().css(“display”, “none”);
}, 100);

});