Deleting a Cookie in JavaScript by name. LAKHAN GEHARWAR November 28, 2024 Set-Cookie function set_cookie(name, value) { document.cookie = name +'='+ value +'; Path=/;'; } Delete-Cookie funct... Continue Reading
how to send variable from .php file to .js file?(Drupal Behaviours) LAKHAN GEHARWAR March 19, 2020 You should use drupal_add_js() in your module,there is no need to output the variable in your .tpl.php: Drupal 7 Step:-1 <?php ... Continue Reading
My Jquery KATA LAKHAN GEHARWAR December 09, 2019 jQuery(document).ready(function(){ jQuery(".we-mega-menu-submenu ul.subul").filter(function () { return jQuery... Continue Reading
How to Resize text using jQuery LAKHAN GEHARWAR December 07, 2019 If you are working on a blog where people come and read your article then you must add a resize text option on your website, becaus... Continue Reading
HOW TO USE LOAD MORE BUTTON IN JQUERY ?? LAKHAN GEHARWAR December 07, 2019 STEP 1 (WAY 1):- <!DOCTYPE html> <html> <head> <title>AUTO LOAD CONTENT USING JQUERY</title> ... Continue Reading
Accodian with images LAKHAN GEHARWAR December 04, 2019 <!DOCTYPE html> <html> <head> <style type="text/css"> html,body{ padding: 0; margin: 0; width: 1... Continue Reading
How To check Username Availability using PHP and jQuery AJAX LAKHAN GEHARWAR October 25, 2019 Step:1 We can access data in the MySQL database, we need to be able to connect to the server.. Demo/config.php <?php $h... Continue Reading