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.

Willows

Members
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Willows reacted to Lyndsey in Toggle Div   
    You can use a class instead, something like this:
    <div class="js-toggle"><a href="#" class="signup-a">Link 1</a></div> <div class="hide"><p>link1 info div</p></div> <div class="js-toggle"><a href="#" class="signup-a">Link 2</a></div> <div class="hide"><p>link2 info div</p></div> Then your jQuery:
    $(function() { $(".js-toggle").click(function() { $(this).next().toggle(); }); }); Note: $(function() { }); is a shorthand version of document ready.
     
    Example:
     
    https://jsfiddle.net/u8Lp93wo/
     
    Update: Alternatively, you can use the href attribute of the link to determine the target of the toggled element, for example:
     
    <a href="#link1" class="signup-a js-toggle">Link 1</a> <div id="link1" class="hide"><p>link1 info div</p></div> <a href="#link2" class="signup-a js-toggle">Link 2</a> <div id="link2" class="hide"><p>link2 info div</p></div> https://jsfiddle.net/u8Lp93wo/1/
  2. Like
    Willows reacted to Leonvv in toggle div style problem.   
    Do you have a link ?
    That makes helping a lot easier.
     
    Léon
  3. Like
    Willows reacted to Jack in Selling a Domain   
    According to http://www.valuate.com/ it's worth $170 but I would be a bit skeptical about that. I can't see there being much of a price tag for this domain, probably somewhere in the region of what you paid for it. The official movie already has a site and established fan sites already exist.

    You could try auctioning it Sedo to see if any domain buyers would be interested.
  4. Like
    Willows got a reaction from Kaskhautual in Selling a Domain   
    Hi
     
    First of all forgive me if i have posted this is the wrong section.
     
    I own a domain name "TheBookOfEli" .co.uk and im wondering whether it would be worth any value of such? Obviously its related to the Box Office movie!
     
    Is there any way of getting some sort of value on it or any recommendations where I could sell it?
     
    Cheers
     
    Willows
  5. Like
    Willows reacted to evu in DIV height change ease on hover   
    You can do it quite easily in css.
     
    If you want to support older browsers you'll need to use jquery .animate() or something, though.
     
    ~evu.

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.