Posts by Tiramonium • 111 points
4 posts
-
1
votes1
answer681
viewsA: How to fill a Dropdownliste with ASP MVC
MVC Dropdown methods use lists SelectList with the data. They also support storing the user’s last selection, by the way. So you can either send this SelectList by Viewbag or add a property to your…
-
0
votes2
answers64
viewsA: CSS: How to insert an image element centered on paper?
Use z-index in the header. Or just enter a tag <img> instead of background-image in the element. I particularly think to do with a tag <img> it would be infinitely easier. <html>…
-
0
votes2
answers1013
viewsA: Add Favicon to my website
As the reply from @Bsalvo suggests, you need to insert a specific tag within the tag <head> of every page of the site to reference its icon. Best preferred for a more generic file name so you…
-
0
votes2
answers48
viewsA: Return one of the functions in jquery.
Only create a separate named function for each of them function psNF(){ var pergunta = function(){ alert('a'); } } function rpNF(){ var resposta = function(){ alert('b'); } } Then assign the…
jqueryanswered Tiramonium 111