Questions tagged as 'html'

2
answers

Separate json response for tags

Personal I have the following ajax call: $(".sec-tags").html(res.data.tags); It is returning the call from the server, however the call is coming as follows: tags: "coelho,teste,gato" Everything is coming within a single string separat...
asked by 15.07.2016 / 22:32
1
answer

Creating your own tags affects something?

I'm creating a web page creation system for people who do not have programming experience, but the organization of the page is done through tags. For example: <conteudo> <artigo class="flex quebra"> <posta...
asked by 14.06.2016 / 01:14
2
answers

Page number on all pages mpdf

How do I get the page number in the footer to appear on all pages? I have briefly the code below, but the way it is, the page number only appears on the last page, how can I make it appear on all pages? $mpdf = new mPDF( '',...
asked by 25.03.2016 / 03:42
1
answer

Calculate pixels for columns in css

Good people have 3 columns in a space of 950px; I made the calculations here on the calculator 950/3 = 316,6666666666667 Only when I convert this to css: width: 316.6666666666667px; nothing changes, it takes like it's width:...
asked by 06.04.2016 / 03:33
2
answers

Display sum in span

I have a javascript code that sums the values of checkboxs selected and displays in a input . However, I'd like to know how do I display the value in a span ? Here is the code below: <script type="text/javascript">...
asked by 30.03.2016 / 07:07
1
answer

Laravel 5 mail format html with css

I'm sending an email through Mail of laravel 5 $data = Input::all(); Mail::send('mails.sendteste', $data, function ($message) { $message->from('[email protected]', 'Sistema'); $message->subject...
asked by 30.03.2016 / 15:44
1
answer

Retrieve the larger facebook image by ID

I need to recover the image of Facebook profile, I already found a code, but the image comes small, does anyone know any code where I can recover it May? I can not use the facebook API, since the ID's, already registered in the client's datab...
asked by 20.09.2016 / 16:15
1
answer

Disable native browser validation

I would like to know how to disable native browser validation on a form? I would like to just leave my validation in JQuery. What I wanted to remove is this "Fill in this field." text box. Any suggestions? I tried to use novalidate but it...
asked by 16.05.2016 / 04:25
1
answer

Text is not entered. after clicking textarea

What happens is as follows: I'm trying to insert an emoticon in this textarea <textarea name="mensagem" cols="90" rows="10" placeholder="digite o texto ou cole HTML">[8)]</textarea> The emoticons are in a bar that inserts w...
asked by 16.05.2016 / 03:02
1
answer

Is there any way to save the input value in a session?

I need to save the value entered by the user to a input without using form . I thought of SESSION , but I do not know any way to do that. Is there? The input: <input type="text" name="valor"> I want to save...
asked by 16.03.2016 / 13:30