//Selector $ ( document ). ready ( function (){ //Button with ID = testbutton //# for id $ ( "#testbutton" ). click //we can select multiple items here too //$("#testbutton,strong").click ( function () { //All div go red $ ( "div" ). css ( "background-color" , "red" ); //All p tags $ ( "p" ). css ( "background-color" , "red" ); //Selecting multiple items $ ( "div, strong, #testbutton" ). css ( "background-color" , "red" ); //Selecting all items $ ( "*" ). css ( "background-color" , "red" ); //Selecting children //Selecting all p elements child of div $ ( "div > p...
Recently I have been looking into a special need to create my own programming language. I have also studied the history of different languages and success and issues they are struggling and stuck with. Here is my personal point of view on this: Creating a Purely new Programming Language The best available language is C\C++ for a cross platform development with different compilers and debuggers. If you are thinking of creating a remarkable new language, HOLD ON, 1- You need to create a compile to target X86, X64, and ARM etc 2- Compiler shall work on Windows, Linux and MAC etc... 3- You need to revisit the entire history of programming language in this case and you have to port all that stuff 4- You Need IDE, compiler 5- Debugger ...