Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

jamaks

Members
  • Joined

  • Last visited

Reputation Activity

  1. Like
    jamaks got a reaction from PixieWeb in meta tags   
    Hi, whilst Google may not place any weight in the meta keywords, the other search engines still do read them. Google may be the biggest but they are by no means the only source of organic traffic so I would advise the use of meta keywords every time. Jim
  2. Like
    jamaks reacted to ELITE in Highlight all divs with same CSS class   
    this will only work on mouseover name class is that what you want?

    <!doctype html> <html> <head> <meta charset="UTF-8"> <title>Untitled Document</title> <script src="http://code.jquery.com/jquery-latest.js"></script> <style type="text/css"> .name { color:red; } .test { color:blue; } </style> </head> <body> <script type="text/javascript"> $(document).ready(function() { $(".name").on('mouseover', function() { $(".name, .name2 , .name3").addClass("test"); }); $(".name").on('mouseout', function() { $(".name, .name2, .name3").removeClass("test"); }); }); </script> <div class="name"> <p>Top Name</p> </div> <div class="middle"> <p>Middle</p> </div> <div class="name"> <p>Bottom Name</p> </div> <div class="name2"> <p>Top Name 2</p> </div> <div class="middle2"> <p>Middle 2</p> </div> <div class="name2"> <p>Bottom Name 2</p> </div> <div class="name3"> <p>Top Name 3</p> </div> <div class="middle3"> <p>Middle 3</p> </div> <div class="name3"> <p>Bottom Name 3</p> </div> </body> </html>

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.