Posts by user3632930 • 481 points
11 posts
-
6
votes2
answers1906
viewsA: How to leave a responsive . svg image inserted directly into html
SVG soaked using <img>: <img src="my_SVG_file.svg" alt="Image description." /> css: img { max-width: 100%; } fiddle: http://jsfiddle.net/jnLc174j/ SVG as a background <div>:…
-
1
votes1
answer224
viewsQ: Error 500 when using Slim Framework with Twig
I’m developing a simple website, with Slim Framework and Twig for template engine, only that is returning the error 500 in the browser, this is the content of my file index.php (at the root of the…
-
0
votes1
answer175
viewsQ: Radio Carousel Radio Uttons
I am using the plugin Owl-Carousel 2.0.0, to make a Carousel of images packaging products that are selectable, through a radio input, only one package must be selected, the structure of this…
-
4
votes1
answer342
viewsQ: Float 2 side-by-side with triangular tip
This is a tough one, and I’ll explain why, I have two Ivs like in the print below, the site is responsive, they should float side by side, but these Ivs have triangular tips, and they should scale…
-
5
votes3
answers3929
viewsQ: pick element after being inserted into DOM with jQuery Append
My page has a selectbox, with some segments, when a user selects a segment, through the event on change jQuery, he takes the value of <option> selected and inserts an Hidden input with the…
-
3
votes1
answer4831
viewsQ: Show and hide form fields of the radio type
I have a form with two inputs of the kind radio, one with physical and other legal value. When one is selected, the fields to be filled are different from the other (mainly in PJ), so I would like…
-
7
votes4
answers1152
viewsQ: Is it possible to build an HTML5 app for Android with Material Design?
I wonder if it is possible to develop an html/css/js app for android using material design. If not, is there any framework that has the look?
-
1
votes1
answer40
viewsQ: Opencart Should I ignore the checked.cache file in GIT?
am having a little stress with the opencart checked.cache file that every update asks to do an add/commit/push and every time this has to be done I have headaches with conflicts and etc. I must add…
-
1
votes2
answers148
viewsQ: best way to do sprites in SASS
I am making a Sprite with Sass as follows below, but I would like to know if this way is correct or not, or if there is another better way. $sprites: bovino, suino, aves, embutidos, congelados,…
-
7
votes3
answers3350
viewsQ: Add event to multiple elements without being inside a for loop
I wonder how you would add an event click to all links with the same class without using jQuery, and without this event click is inserted within a loop for. The reason is this: don’t use functions…
-
2
votes2
answers1389
viewsQ: add/remove array to an Hidden input
I am using a jQuery code to add products that are chosen in a select list à a table. Included is the product name and quantity, and finally only the button to remove the product from the table. I…