All Questions

3
answers

What is the difference between col-lg- *, col-md- * and col-sm- * in Bootstrap?

It's been a while since I used Bootstrap I worked with almost all versions. Usually to structure my applications I use Bootstrap's grid system, row to create rows and col- for columns. I would like to know: The...
asked on 05.02.2017 / 12:33
1
answer

Upload does not work $ _FILES undefined index error

When uploading a file I'm getting the following error:    Notice: Undefined index: file in Z: \ web \ upload.php on line 3 upload.php: <?php $location = 'uploads/'; $arquivo = $_FILES['file']; if ($arquivo) { $name = $arquivo['n...
asked on 17.02.2015 / 15:09
3
answers

CORS in NodeJS without the use of Frameworks

I'm creating an application in Phonegap and consuming an API provided through NodeJS. For this to happen, I need NodeJS to accept CORS. How do I enable CORS so that NodeJS accepts the request?     
asked on 15.02.2014 / 06:26
5
answers

How to use @import in a CSS file?

Within a style.css file I'm using the @import url() option to call another file CSS . For example: @import url("/css/fonts.css") Both the file and the path are correct and even then I can not import this CSS . Wher...
asked on 10.03.2014 / 19:59
3
answers

How to check if a file exists using Python

How to check if a file exists, in Python, without using a block try: ?     
asked on 29.01.2014 / 18:37
2
answers

Height property of jQuery and JavaScript, what difference?

What is the difference between $(window).height() of jQuery and screen.height of JavaScript? Using them I notice different results ... And what is similar to screen.height in jQuery?     
asked on 07.09.2014 / 02:06
3
answers

Separate typed words within an input

I have a input , where the user types his / her full name from the following code: <input type="text" id="fullname" name="fullname" title="fullname" maxlength="255" class="input-text fullname onestep" placeholder="Escreva o nome compl...
asked on 31.10.2017 / 19:26
2
answers

How to send SMS for free using PHP? [closed]

I wonder if there is any way to send SMS for free to Brazilians cell phones. I have already seen some PHP systems with this function, and I would like to have this function on my system as well.     
asked on 11.12.2013 / 17:13
2
answers

Syntax, meaning

$("#add_city_btn2").click(function() { var city = $("#add_city2").val(); $("#cities2").append($("<option>", { text: city, selected: "selected"})).change(); $("#add_city2").val(''); return false; }); What does the line...
asked on 13.10.2015 / 17:42
2
answers

What is the difference between Meter and Progress in HTML5?

What's the difference between these two html tags, only the appearance (layout, color) is different? <meter min="0" max="100" value="22"></meter> <progress value="22" max="100"> </progress> What's the difference bet...
asked on 24.04.2014 / 18:01