CDN for production:-
<script src="https://cdn.rawgit.com/rao123dk/Rao.js/5cab7589/rao.js"> </script>
CDN for development
<script src="https://rawgit.com/rao123dk/Rao.js/master/rao.js"> </script>
var a = rao("#id");
console.log(a.val());
var a = rao(".class");
var b = rao("input[type='text']");
var ht = rao('#htm');
ht.html("<p>hello html here</p>"); //Set
ht.html(); //Get
var txt = rao('#txt');
txt.text("hello text here"); //Set
txt.html(); //Get
rao('#id').append("<div>Hello append</div>");
rao('#id').prepend("<div>Hello prepend</div>");
rao('#parentid').mychild();
rao('#txt').on('click', function(){
alert("hmm");
});
rao('#txt').off('click');
Like "hello javascript" to "HELLO JAVASCRIPT"
console.log(rao('#id').UPPER());
- Like "javaScript often abbreviated as JS, is a high-level, dynamic, weakly typed, prototype-based programming language." to "JavaScript often abbreviated as JS, is a high-level, dynamic, weakly typed, prototype-based programming language."
var str = "javaScript often abbreviated as JS, is a high-level, dynamic, weakly typed, prototype-based programming language.";
console.log(r.upper(str,"1"));
- Like "javaScript often abbreviated as JS, is a high-level, dynamic, weakly typed, prototype-based programming language." to "JavaScript Often Abbreviated As JS, Is A High-level, Dynamic, Weakly Typed, Prototype-based Programming Language."
var str = "javaScript often abbreviated as JS, is a high-level, dynamic, weakly typed, prototype-based programming language.";
console.log(r.upper(str,"1++"));
console.log(r.upper(str,">1"));
- Preserve the case of the original word when you are replacing it. For example if you mean to replace the word "Book" with the word "pen", it should be replaced as "Pen". :hotsprings:
let org_str = "This is my Book.",
console.log(r.rao_replace(org_str, "Book", "pen"));
Output :- This is my Pen.
Set own attribute
rao('#sr').attri("attribue","value");
Ex:-
rao('#sr').attri("custom_id","12CU100");
output :-
<span id="sr" custom_id ="12CU100"> </span>
Get attribue
rao('#sr').attri("nameofattribue")
Ex:-
console.log(rao('#sr').attri("class"));
Output:-
It will return classname of element which is is 'sr'
Hide
rao('#id').out();
show
rao('#id').in();
toggle
rao('#id').inOut();
console.log(rao("#id").Data("customAttribute"));
exp:-
<span id="myid" data-myperonalId="177466"></span>
console.log(rao("#myid").Data("myperonalId"));
♨️
Simply call "r.browser();"
Exp:-
console.log(r.browser());
Output :- Chrome 62
This method is helpful for those who manually update copyright year on webiste
rao("#copyrightYear").currentYear();
rao("#id").addClass("newclass");
rao("#id").removeClass("alreadyThere");
♨️
r.showWatch('#showwatchid',"h","m","s",hour12=true);
Ex:-
console.log(r.showWatch('#showwatchid',"h","m","s",hour12=true));
output:- 1:8:58 PM
console.log(r.showWatch('#showwatchid',"h","m","s",hour12=false));
output:- 13:8:58
console.log(r.showWatch('#showwatchid',"h","m",hour12=true));
output:- 11:19 AM
JavaScript New Feature checker(i.e. It will check, is your browser support new fetaure of not ?) Like ECMAScript 2015/2016/2017 or ES6/ES7/ES8
♨️
console.log(r.ES6());
console.log(r.ES7());
console.log(r.ES8());
Output :- True/false
// r.random(first_digit, last_digit)
console.log(r.random(10, 111));
Output :- 29 or different
♨️
// r.randomString(length_of_string)
console.log(r.randomString(8));
Output :- g485edgn or differnt
- Return duplicate items :hotsprings:
// r.duplicate(Array_name);
Ex:- const array = ["a", "f", "e", "w", "r", "e", "o", "j", "j","w"];
console.log(r.duplicate(array));
Output :- ["e", "w", "j"]
- Remove duplicate items from array :hotsprings:
// r.duplicate(Array_name);
Ex:- const array = ["a", "f", "e", "w", "r", "e", "o", "j", "j","w"];
console.log(r.removeDuplicate(array));
Output :- ["a", "f", "e", "w", "r", "o", "j"]
- Get difference between two date {General} :hotsprings:
// r.dayDiff("Start_date","end_date")); // Format will be DD/MM/YYYY
console.log(r.dayDiff("21/12/2017","30/12/2017"));
Output :- 9
- Get difference between two date{ escape Saturday and Sunday i.e. count only working days} :hotsprings:
// r.dayDiffSatSun("Start_date","end_date")); // Format will be DD/MM/YYYY
console.log(r.dayDiffSatSun("21/12/2017","30/12/2017"));
Output :- 7
- Get difference between two date{ escape Saturday, Sunday and holiday festival also} :hotsprings:
console.log("Coming soon.....");
♨️
console.log(r.countDown(01,01,2018)); // Format will be DD/MM/YYYY
Output :- {total: 896620000, days: 10, hours: 9, minutes: 3, seconds: 40}
console.log("Thanks!");