skip to Main Content

membership database – I need a clickable email link put into a table's cell – Plesk

$result = mysql_query("SELECT * FROM pm where idno ='$idno'", $db); $datas = mysql_fetch_array($result); <table><tr><td> <? if ($userLevel > 9){ echo "<p><strong>$datas[email]</strong></p>"; echo "<p>&nbsp;</p>"; echo "<p><strong>Dear $datas[name]</strong></p>"; echo "<p>Here is the information you requested.</p>"; echo "<p><strong>Username: </strong> $datas</p>"; echo "<p><strong>Password: </strong>…

VIEW QUESTION

jQuery mega menu add/remove class on parent menu item – Shopify

I'm trying to build a mega menu in Shopify, this is what I have in my HTML: $('.has-child').on('click', function(event) { event.preventDefault(); $(this).find('.child').toggleClass('menu-visible'); $('.child').click(function(e) { e.stopPropagation(); }); }); .menu-visible{ color:red} <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <ul class="parent"> <li class="parent-main has-child"><a href="/collections">Shop</a> <ul class="child"> <li…

VIEW QUESTION
Back To Top
Search