shabin5785
Broken In
Think there is a google bootstrap .. not sure..
^^ Thanks a lot
BTW, how did you figure that out ?
Got another trouble ??
how do I create the buttons that are used in Google's Homepage ?? They are way too different form the standard buttons.
PS: I'm done with all my issues, I created the button and things became simple with CSS3. Thanks anyway.
//html code...it has missing head, body and other important elements
<form>
<input type = "button" value = "click me" onlick = "testFunc()">
</form>
<script type ="text/javascript">
testFunc() {
alert (" hey now brown cow!!!!");
}
</script>
^^ Thanks a lot
BTW, how did you figure that out ?
Got another trouble ??
how do I create the buttons that are used in Google's Homepage ?? They are way too different form the standard buttons.
PS: I'm done with all my issues, I created the button and things became simple with CSS3. Thanks anyway.
dead5 said:It is a high level scripting language primarily used in web browsers as an easy way for anyone, even those not familiar with the conventions of programming to work with, that also has used in various places like game development with Unity3D. It is a language that emphasises the freedom of the user to work however he or she wants without forcing them to follow any conventions. The only disadvantage JS has for the tasks it is designed is the lack of scoping and uses much of the same structures from imperative languages like C, For example while, for and if. The language is dynamically typed and almost entirely object based(in my experience). One of the best parts is that functions are first class citizens in the language. Inspite of all that it also allows you to program like it is an object oriented language. So depending on the style and preferences of the user it can be used like an imperative language, a functional language or an object oriented language, if not purely as one. However due to this it is also possible to write some truly indecipherable code, even ones that surpass Java in terms of being extreme unreadability.
statement is not acceptable at all. So two brothers, stop backing up each others for nonsense posts and try to do something constructive. It is not a thread to glorify yourselves about your learning. I have also checked the SPOILER posted by Dead5 which is simply his opinion about Javascript, not to do anything about the original description of it.JAVA SCRIPT is Java for Web Browser
He has programming experience with more languages than you will probably ever learn. He knows Python, Java, JavaScript, Ruby, C, C++, Lua, TorqueScript, some Scala and a little bit of C#, and he's started learning Boo and Groovy. He gave up on OCAML because he would not need to program with it. After Groovy and Boo he will learn Haskell.
FWIW he finds Java despicable, so he is more than qualified to talk about what he's talking about.
im no programmer. But this seriously caught my eye. Javascript is java for browsers.
im begining do doubt if he is a script kiddie.
Working on a Event based calendar. Havent used Jqgrid yet but the grid containers available by WDCalender plugin needs some help. I want to disable the old dates so that no one can create a new event on previous dates. Even if I disable the old dates in calendar widget, the grid cells still are available to add event on previous dates.
Since it is an office task, I am not allowed to post any code snippet anywhereCan you do one thing... Add your code in a jsfiddle and paste the link here
I am currently using jqgrid in my project and i must say, its very good and highly customizable. you can set whether any column will be editable or not, or enable editing anytime you want.
An example code would suffice on jsfiddle.com
jQuery("#grid_id").jqGrid({
...
colModel: [
...
{name:'price', index:'price', width:60, align:"center", editable: true, formatter:currencyFmatter},
...
]
...
});
function currencyFmatter (cellvalue, options, rowObject)
{
// do something here
return new_format_value
}
</script>