Posts by mvocamargo • 21 points
2 posts
-
1
votes2
answers148
viewsA: What does this line mean? --> $.ajaxSetup({ scriptCharset: "utf-8" ,contenttype: "application/x-www-form-urlencoded; charset=UTF-8" })
This line sets a default setting for future AJAX requests to be made via jQuery. Instead of setting these Assets on all calls, you determine them beforehand and save a few lines when you need to…
-
1
votes4
answers1375
viewsA: How to change the color of only one element in a form-group with several others?
To keep styling separate, you cannot use more than one form field within the element with the class form-group. See in: http://getbootstrap.com/css/#Forms-inline. Even with each field in a…