- Dom
- click
- inArray
- merge objects
- query string
- smartcheck
- attr
- addClass
- hasClass
- removeClass
- append
- prepend
- remove
- has
- findAll
- empty
- position
- offset
- outerWidth
- outerHeight
- replaceWith
- html
- text
- val
- parseHTML
- parseJSON
- parent
- next
- prev
- first
- last
- now
- toArray
- size
- Manipulation
- dates compare
- getMonthName
- getDayName
- .NET JSON date
- hashtag
- number Format
- pad
- smallCase
- upperCase
- Forms
- focus
- mobile number
- repetition
- placeholder
- Browser
- browser feature
- Browser Information
- Effects
- hide
- show
- sticky
- scrolline
- goUp
- Animation
- circles
- Google analytics
- Google fonts
.upperCase();
Description:Convert string to lowercase. If value is not of type string, the value will be cast as a "String" before converted to upperCase value.
Example:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>upperCase demo</title>
<script src="http://code.bitsycode.com/bitsycode-latest.min.js"></script>
</head>
<body>
<div class="content-container">this text will be set to upperCase</div><br /><br />
<button onclick="convertUpper()">Convert to UpperCase</button>
<script type="text/javascript">
function convertUpper() {
var content = bitsyCode(".content-container").text();
var converted = bitsyCode.upperCase(content);
bitsyCode(".content-container").text(converted);
}
</script>
</body>
</html>
Preview:
this text will be set to upperCase
Share