Posts by Darlei Fernando Zillmer • 3,867 points
153 posts
-
-1
votes1
answer113
viewsA: Domain forwarding to domain with ssl
Tried to redirect to . htaccess? redirect 301 http://siteX.com.br https://siteY.com.br And if you want to change the entire domain, not to lose the strength of the links that point to the site, or…
sslanswered Darlei Fernando Zillmer 3,867 -
1
votes3
answers2089
viewsA: Get the site name in the javascript url
Try it this way: var splt = window.location.hostname.split('.') var dominio = (splt[0] === 'www') ? splt[1] : splt[0]; console.log(dominio);
-
0
votes1
answer38
viewsA: Create tab using images on button
You can solve this by customizing a CSS. Basically you have the images of each tab, turn these images into icons, and link to the id of each tab. To resolve the issue of active tab: Inspect the…