Posts by remmendo • 56 points
6 posts
-
2
votes2
answers460
viewsA: text-overflow with line break
[...] You can do this using the -webkit-box and -webkit-line-clamp- Example http://jsfiddle.net/ArKeu/7/ Link to the original solution in English:…
-
1
votes1
answer102
viewsA: How can I do a function if the customer clicks on the image of the left column it opens in the right div?
Anderson, your question is a little hard to understand. From what I understand, Oce wants the house that Oce clicks on a menu to appear in larger size on the other side of the screen, correct? Well,…
-
0
votes2
answers949
viewsA: How to change a color based on scroll position
I took advantage of the same code that LF Ziron posted and modified so that as the page goes down using scroll, Divs will change color $(window).scroll(function(){ var posicao =…
-
0
votes3
answers4021
viewsA: Changing Onclick Javascript does not work
For the case that Voce wants to do, this already solves and does not need to change the function of the click, just ceritify to call the method you want: function aluno() { alert("Eu sou um aluno");…
javascriptanswered remmendo 56 -
1
votes3
answers758
viewsA: How do I know if a record has been added to the database?
You can use a database function to give that input. Inside this Voce function makes the INSERT necessary and can give a SELECT right away return true or false to the application to know if it was…
-
0
votes3
answers756
viewsA: How to remove duplicate data in this query?
Use the ROW_NUMBER, grouped by the field that Voce wants to use to differentiate and ordered by the value you want to use to pick up the first one (in the example that Voce placed would be the…