Posts by Rogerio Soares Ferreira • 366 points
12 posts
-
0
votes2
answers236
viewsA: What would be the most efficient way to replicate this code? (Javascript)
I have a code that can help you. This helps in many cases. Place script after body'. // AQUI EU SETO O MÉTODO TEMPLATE String.prototype.template = function (obj) { return…
-
2
votes4
answers8025
viewsA: Searching dates through BETWEEN AND
You can convert the date Try: SELECT * FROM sales.logger where date(data) BETWEEN "14-04-2016" AND "14-04-2016" ORDER BY data;
mysqlanswered Rogerio Soares Ferreira 366 -
2
votes4
answers2812
viewsA: Sending email by PHP does not show accents correctly
You need to configure the PHP header. Put this at the top of the page: header('Content-type: text/html; charset=utf-8'); If it works give a UP here.
-
2
votes1
answer46
viewsA: Difficulty positioning objects after @media (max-width: 320px) {
Well, in jQuery you need to put code inside the ready: $(document).ready(functional(e){ // seu código }); Try this, if the answer serve give a up.
-
0
votes2
answers1320
viewsA: How to eliminate white space between columns?
The tag TABLE has a priority for this. Try the code below: <table cellpadding="0" cellspacing="0">
-
2
votes1
answer79
viewsA: Problems implementing the jQueryUI Accordion feature
Remember that in jQuery the script should be used within the function of ready Do as below and everything will go well: $(document).ready(function(e){ // essa é a parte que você esqueceu…
-
0
votes1
answer43
viewsA: Remove action in window.Location
You can use a "History method" window.history.pushState(window.location.host, "Titulo", "/NovaUrl"); This method will override the URL. Check out the documentation.…
javascriptanswered Rogerio Soares Ferreira 366 -
0
votes2
answers144
viewsA: Checkbox style changing label style. How to tidy up?
Try adding this to the LABEL style: float: left; Check if it satisfies your need.
-
0
votes2
answers484
viewsA: Why isn’t my footer staying on the full screen?
Well, I think you can make the following attempt. <html> <head> <title></title> <style type="text/css"> #footer { width: 100%; height: 100px; position: static; bottom:…
cssanswered Rogerio Soares Ferreira 366 -
2
votes4
answers344
viewsA: Convert a Select with 2 option HTML to 2 Buttons
Well, I hope I can still help. with jQuery: <html> <head> <title></title> <script…
-
8
votes5
answers32695
viewsA: Read and manipulate json data using jquery
Man, I know what’s going on. Your return to be coming in string, you have to convert into object to be able to manipulate it. Observe: var valorRetornado =…
-
1
votes2
answers105
viewsA: checkbox in dynamic matrix field
Dude, I have a solution that might help you. String.prototype.template = function (obj) { return this.replace(/\{\{([\w]+)\}\}/g, function (str, prop) { return obj[prop]; }); }; var varString =…