Questions tagged as 'html'

1
answer

How to create a page that has different information for each type of user? [closed]

It's my first question here in Stack overflow. Well, I would like to know how I would structure a page in php to display different information for different users, since I do not want to have more than one page for each type of user. For exam...
asked by 27.11.2015 / 18:44
1
answer

PHP, AJAX and jQuery

Hello. I have the following hierarchy of folders: Parent folder, with the following: file submit.php, with the following code: <?php ini_set('display_errors',1); ini_set('display_startup_erros',1); error_reporting(E_ALL); include("libs...
asked by 11.12.2014 / 23:39
1
answer

Twitter Bootstrap: Set specific CSS rule for different sizes

I would like to know how to declare a value to a CSS property according to the browser's resolution in Bootstrap. Example: I want a border to appear only on smartphones or very small resolutions (col-xs). Does bootstrap provide an easy way to...
asked by 17.12.2014 / 05:18
1
answer

URLs in doctype and html tags

1) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2) <html xmlns="http://www.w3.org/1999/xhtml"> With HTML5 the use of URLs in the <!DOCTYPE html>...
asked by 12.05.2015 / 00:23
1
answer

Change pages url with ajax and load in another browser

I'm having the following problem, I'm developing a web application in java and would like to know how do I change the URL of a page when I click on a link in the menu. For example: Access a website www.example.com.br this is the main link and...
asked by 29.12.2014 / 19:21
1
answer

How to compare two dates in Javascript or jQuery

I'm trying to compare two dates coming from fields text , turning them into object Date , as follows (the first function is to format the field input with XX/XX/XXXX ): function formatar(mascara, documento){...
asked by 07.06.2015 / 01:11
3
answers

Doubt about how the header is interpreted

We have a <header> main on the page where we normally put the logo image. Within this <header> does the image require both alt and title to be interpreted by the correct search engines? I would like...
asked by 30.12.2014 / 03:52
2
answers

Pass parameter of a function according to the value clicked with JavaScript

I need to pass the value of a function according to its clicked value. There are 3 divs, each one is a gallery. I need to click on the "see more" option, open a page with all the photos only from that gallery, however, I do not know how to pass...
asked by 15.04.2015 / 00:03
2
answers

Remove space between span and input

I want to know how I can remove these spaces: Sothatspanandinputgettogether,likehere: My CSS : input, textarea { background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #C9C9C9; color: #545658; padding: 8px; font-size: 14px; b...
asked by 11.05.2015 / 19:49
2
answers

How to select / deselect a multiple select input at each mouse click? (without Ctrl)

I'm trying to make a script to select multiple options of a <select multiple> with each mouse click. So far so good, I've got and follows the code: var numSelected = 0; var valSelectedArray = []; $(document).on('mouseup',...
asked by 12.02.2014 / 17:14