Questions tagged as 'html'

2
answers

HTML and Javascript integration

I'm doing some initial testing with javascript, and I'm not succeeding when trying to change a parameter from my HTML code. The idea is that by clicking the "Message" button, the text will be updated to "New Text!" Here is the HTML and javascrip...
asked by 25.08.2016 / 18:24
3
answers

Hide description with '' Display: none "is bad for SEO?

I have some links on the site and I will add a description for each one of them, and hide the description, but I have a question about hiding with display: none See how I want to do it <li><a href="http://www.facebook.com/d...
asked by 29.08.2016 / 19:31
1
answer

How safe is it to use "password" or "text" input?

Recently we are in a wave of using the combination of input of passwords with the option to hide / display the password (*** -> abc) with the "eye" technique. I understand this purpose because it greatly improves the UX side of the...
asked by 09.09.2016 / 13:59
1
answer

How to fit text around a 'div / image'?

I'm having a hard time adjusting a text in a div that has another div inside it, which is at the top left. Below is an image that explains better what I'm trying to do, I hope you can help me. Thank you.     
asked by 03.10.2016 / 16:48
2
answers

Create Static SelectList and pass a selected item to View

I have a question about how to send my selectList "status" to my View EditarUsuario . I've created my list with the following items: var list = new SelectList(new[] { new{ID="2",Name="Selecione"}, new{ID="1",Name="A...
asked by 02.10.2015 / 22:42
1
answer

Mouse Click Trace

I need a script, that on a whole page where you click, a ball appears in the place where it was clicked, but after about 2 seconds it disappears. No need to be ripples, just something that leaves a trace, an example is Google Maps when you cl...
asked by 08.03.2014 / 00:03
1
answer

Doubt about POST and GET in php

I tried searching the internet, but I could not answer my question ... I started programming the web recently, although I already used post and get, I came across a situation where I got "packed". I have the page cadastrar_endereco.php, which is...
asked by 07.04.2014 / 23:00
2
answers

Convert HTML as an image

I have string with the page's HTML, is there any way to save it as an image? Render the entire page as an image, and if possible, store it in MemoryStream .     
asked by 15.03.2017 / 19:03
1
answer

How to transform a string into HTML C #

I'm using a component and need to load it with HTML snippet that comes in a variable. For that I created this JQuery: $(document).ready(function(){ $('.mentions-kinder').html('@HttpUtility.HtmlDecode(Model.FormulaRecover)'); }); But eve...
asked by 18.03.2017 / 23:26
2
answers

How to create a toggle button with input = checkbox without using the label element?

Create / transform a <input type="checkbox"> on a toggle button without needing the <label> element as in these examples: How to create a toggle button on and toggle off? An example I made based on the Andreas...
asked by 19.02.2018 / 14:12