Posts

Showing posts from 2015

How To Remove Elements In Array

With Slice method we can remove the Elements in Array . The following code snippet is an Example of the Same. <!DOCTYPE html> <html> <body> <p>Click the button to extract the second and the third elements from the array.</p>   By Clicking the following button we are calling the myFunction ()  Function . <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { now we have a variable "fruits " which contains the following Data .     var fruits = ["Banana", "Orange", "Lemon", "Apple", "Mango"]; With the slice method we can remove element in side an Array . In the following example we want to remove one elements which is in the 1st and 3rd index position of the Array . It will slice that particular elements in and returns the balance elements  which will be stored in "citrus ". ...

What is meant By intolerance?

When 100s of People died in Mumbai Due to Terrorist Attacks is it  Tolerable ? When 1000s of Farmers are ending their lives duo to so many problems .. It is Tolerable ? Now all of Sudden what happened to the people (I Mean congress Supporters ) to give the Statement about intolerance? . It clearly shows that its a political stunt . I have so many Muslim friends who are with us from so many decades . we are not seeing any changes in their lives and they are not getting afraid . There are so many issues to make politics . Why this Hindu and Muslim matter . All the Muslims who are with us now they are Indians . Please don't play any Political Games between us . We are not supporters either for any Parties . So Please stop all this Non sense .

HTML5 and CSS3 Beginner Tutorial 1

Image
Hi Friends , I have already introduced about HTML . If you are seeing this blog and reading my post means i think you want to know about some thing about HTML and Web development . I have not created the following tutorial . But i thing it will be very useful for you to know more about HTML    HTML5 and CSS3 Beginner Tutorial 1

How to delete the selected Div

here is simple image gallery Program . When we Click that particular div will be deleted  . it will delete all the div until the last Element. Here is the Code <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head>     <title></title>     <style>         #box1, #box2, #box3, #box4, #box5 {             width:150px;             height:150px;             border:1px solid red;             display:block;                   }         li {     display: inline; } #box1{     background-color:red; ...

How to hide and show a element with if else condition .

How to hide and show a element with if else condition . in this program , when we click the button it will check the 'myDiv' is hidden or not . If it is hidden it will change the css property so that the element will show . other wise it will be hide . <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head>     <title></title>     <style>     #myDiv{         width:300px;         height:200px;         background:Red;            }         </style> </head> <body>     <div id="myDiv">     </div>     <button onclick="myFunction()">Click</button><!-- When user clicks on the this Button it will call myFunctio...

How to Loop through the Java Script Arrays

Image
How to iterate the data in an Array or the j son ? Fist Let us have one simple Array with few objects inside Example: var states=[{"name":"Andhra Pradesh"}, {"name":"Karnataka"}, {"name":"Telangana"}, {"name":"Kerala"}, {"name":"Tamil Nadu"} ] To display the Data we have to loop the Array . So let us use for loop for the same ; for (var i =0;i<states.length;i++){  document.write (states[i].name) } If you have multiple data values in the objects inside the array , you have to use the property of that object next to the array . For example let us add one more value to the existing Array . var states=[{"name":"Andhra Pradesh","capital":"Amaravathi"}, {"name":"Karnataka","capital":"Bangalore"}, {"name":"Telangana","capital":"Hyderabad"}, {...

Java Script arrays

Image
Java Script arrays are used to store multiple values  in a single variables . It may single value or collection of objects . Arrays are very important in Java Script. Let us look how can we create arrays in Java Script. we can create Java script arrays as follows . var subjects=["Telugu","Tamil","Hindi","English "] ; we can also create Java script arrays  as follows var subjects=[]; this indicates an empty array with the name of subjects; let us add some values for the arrays . Arrays value positions are started from 0 . It means in the above example the index (position )  of the Telugu is "0", and Tamil is "1", so we can add the values for the array in as follows. subjects[0]="Telugu"; subjects[1]="Tamil"; How can we retrieve or Iterate the Data from an array ? we can do it in two different methods .  The first way of doing this is by using the for loop . First wee need to find out th...

javascript objects tutorial

In JavaScript Every thing is considered as an Object except Boolean Values . Creating and Objects and accessing its properties are very important tasks in Java script. Let us discuss about an object with an Examples . Let us create an object of a "Person" <script> var person={}; This Indicates an empty object with a name of person. person.firstName="Murali"; This indicates Object having a property of First Name and its value is Murali. person.lastName="Krishna"; This indicates Object having a property of First Name and its value is Krishna. person.company="HP";This indicates Object having a property of Company  and its value is HP. </script> Now Let us look how can we access the object Properties . To access the Property of an object we have to access the object. Console.log(person.firstName); it will give the value of the person Fist name . In same way we can access all the properties.

How To Create A multiplication Table

Hi Friends i Have create a simple program to Display the Multiplication Table . In This I have used two For loops . Step 1: We will get the user input and we are storing that value in to " table " variable as follows. var table = prompt("How Many Tables you Want"); Step 2 : We are starting our table from to and we will with the User data "table " with the following  for Loop  for (var i = 2; i <=table ; i++); Then we are creating the div dynamically and inserting the Generated As Follows.. <!DOCTYPE html> <head>     <title></title>     <style>        div {         float: left;     margin: 10px;     font-size:large;     width: 130px; }     </style> </head> <body>     <script>         (function () {   ...

How To insert An Image in HTML Document

Image
How to Insert an Image in to a HTML Document ?

HTML Tutorials In Telugu

Image
Hi Friends , I Have started a HTML Tutorial Channel in Telugu . I thing this may be helpful for the people who wants to start their career as HTML Developer or web developer. I request you people to share it for the other people .

I know HTML & CSS .. Whats Next ?

Image
So you have know what is HTML And CSS. Now what you have to do now ? Now you want to know how you can get more experience and good Control on Coding . Its very simple . Find some basic templates . Download it and study thoroughly . How the Navigation panel Coded . how the content placed . You must have clear idea about the Layout of the Document . Start developing same Document . Don't copy and paste it . If you keep on doing this kind of exercise , you will understand and get experience. Try to develop at least 10 Document. Don't forget the oldest Dialogue "Practice Makes Perfect". Just keep on Doing same thing . Once you develop minimum of 10 Documents you will feel more confident . Don't waste your time by just watching the videos and tutorials . Start building the Pages ... Now

HTML Tutorial for Beginners - part 4 of 4

Image

HTML Tutorial for Beginners - part 3 of 4

Image

HTML Tutorial for Beginners - part 2 of 4

Image
  In the previous videos we have seen an introduction About HTML video . Hope it has given some idea about HTML basics and its functionalities . I personally suggest to practice  more . So without out wasting any time let us jump in to the second Videos of the HTML Tutorials 

HTML Tutorial for Beginners - part 1 of 4

Image
As Every body knows  HTML is first step and most important topic to become web developer . Knowing about HTML will help you to understand about web documents . So let me introduce one of the basic introduction tutorial videos about HTML . Here it is ...

Why clear : Both Is required ?

Image
Why clear : Both  Is required ? Where we are use this Clear Both ? Some times we want to start the content from new line . Due to the float property which we might have given for the previous div it will start from the same line  . In this case  we have to Use clear Both Property Exmaple : <html>     <head>         <style>     .box{         width:50px;         height:50px;         border:1px solid red;         float:left;     }     .box1{         width:50px;         height:50px;         border:1px solid blue;         float:left;     }     .clear{      ...

Be Careful from this Kind of Calls

Image
Hi Friends Yesterday i got call from a Number starting from +92....... he told me he is  calling from KBC , that i won 25 Lacks . Then i told them it is scam . you are just making me fool . He told my sim no(not the mobile no ) also and asked me to verify . so I removed and cross checked my sim and verified . It is true . After few minutes,  once again he called me . He has given a number 00923338714111 and he told that number is SBI Bank manager's Number . I can call him and he will explain me the procedure to claim my prize money . After disconnecting that call , i searched on-line and found there are so many cases like this . So be careful...

Important HTML Contents .

 Helo friends , so many people are asking about the important elements in HTML. You need not study entire HTML . Day be day we are getting better and better technology to learn . Understanding the HTML is mandatory . Here are few important topic to learn 1. In How many ways you can Create A HTML File 2. What is meant by HTML Tags? 3. How To write HTML Elements? 4. Basic HTML Structure ? 5. What is Header, Section , Aside , Footer  in HTML5 ? 6. What is Diff between Header & Head in HTML? 7. What is meant by Heading in HTML? How do you specify them? 8. What is meant by Paragraph? 10. What is link in HTML? 11. What is images in HTML? 12. What is meant by Attributes ? Why it is required ? 13. What is Attribute Values? 14. What is HTML Styles ? How do you specify them ? 15. What is Alignment in HTML , How do you specify them ? 16. What is meant by HTML Formatting ? 17. HTML Quotations, Citations, and Definition Elements? 18. What is  HTML Comment Tags?...

Importance of Javascript In UI Developer Career .

In initial days we wont have the clear picture about the role of JavaScript In UI developer Career.   Once you get in to the JOB we will come to know the real picture of the JavaScript . But it is beyond our imagination . If you are serious about building a career in UI Development i personally recommend you to concentrate more on the JavaScript  . I have attended so many interviews recently and faced  so many questions . In that the major questions i have faced about JavaScript only . HTML & CSS Questions are very less , So try to concentrate more on JavaScript More.. And we should have an idea about the Java script Frame works like J Query , AngularJs . So start practicing the JavaScript and  Jquery .  Once we start to study about the JavaScript we will to know where and how it is being used . There is so much information is available on net . So Just search about some basics and study . Some of the important Topic we must Concentrate on JavaScri...

web developer interview questions

Image
                                          I have attended few Interviews for UI developer Post recently . I want to share my experience .I came across so many people who interviewed me .I got selected in IBM  and Mind Tree . I Spoke to the Interview panel personally regarding my status . They confirmed my selection about and i started communicating the Consultants regrading my offer letter . From that moment on wards consultant people have not received my call .                                      After continue follow up they have sent a mail . In that mail they have clearly mentioned , they don't...

A Great match Between India Vs Pakistan .

Image
I would like to congratulate all the Cricket fans . It was a fantastic cricket match . We have not expected such an all-round performance from the Team India . After failing continuously from last few months in Australia , expectations were not there . But As a Indian cricket fan we prayed a lot to win this match . And Thanks to the great performance from Virat and Entertaining knock from Raina and Dhawan .I have expected good performance from Rohit . For me it is rohit's batting was reall disappointment . I have not expected Dhawan in  Todays team . It was real surprise for me . But finally he came to form. let us hope that he will continue the same form. Finally the main Here of the match is Shami . It was a real consistent bowling from him . After a long time i had seen a match without missing ball . I really enjoyed . But the main worry was the midlle order and lower order batting . It could have been more aggressive . At least They could have rotated the Strike . Let ...

UI Developer Interview Quetions . How many You can Answer ?

Image
HI friends , I have received few mails about the question i have posted on my blog yesterday , I think that questions have covered all the important questions related to Java Script and JQuery . But still there are so many important points i missed . I request you all to please let me know any important Question if you know about the same . Coming to the mail i have received , Can you people post any logical problems(Examples) related to the Java script and Jquery . By practicing that we can have good experience . I know there are so many experts in our contacts . If you can post any challenges related to the java script and JQuery It will be helpful for all the team members who are in need . The more you share you knowledge , the more you will get benefit . It may be small example also . Please post here How many of the following Questions you can answer ? .   UI Developer Or Front End Developers Interview Questions  Please spend some time and answer , it...

Interview Quetions , UI Developer

hi friends , Yesterday i had attend an Interview for UI developer For a MNC Comapany . It  took almost full day to complete the Interview . I am waiting for the result . I thought  to share the some of the questions which may be helpful for the people who are looking to get the job in the UI development site . I request you all to post any important questions if you people know . Don't forget to share to the friends ,  because it may be helpful for them  .. What is Diff between Null & Undefined What is diff between document .ready and On load how to create a div dynamically Java script and J Query how to create attribute dynamically in Java script and J Query. How to add css property dynamically in Java script and J Query. How to use prevent default? what is meant by prototype? What are the pseudo classes ? pseudo classes elements> What is diff between bind live on and delegate in Jquery? how to check Browser compatibility ? What we have to do...

Are you want to make money Online ?

This is very common and attractive line we use regularly in all lot of web sites . The reason is who don't want to make money on line without any investment ? But is it true . Making money on line is it so much easy . without any skills and talent by just browsing we can make money ? And the answer is no .. You should work hard and give full efforts to make money . Initially it is not possible to make money . But you should wait more time to make money . But the Question is what you have to do . I had spent so much time to search some good websites to make money . But they will pay you initially but after some time they will become scam . there are so many web sits like that . But if you can learn good knowledge and experience , you can make good money here.

No Shortcuts . Practice and Practice and Practice

Yes . Don't expect any magic will be happen by over night . If you want to be expert only one method is practise is only one best shortcut we have . You must face lot of challenges while you practise . Then you will automatically try to find out the solutions for the same . In this process whatever the knowledge you get , it will be more valuable for you  .  So i personally suggest you to be addictive for the practising .

What is Front End Developement

Image
watch this video . You will get full idea about Front End Developemtn It is really Interesting and Fun..

HTML Attributes ....

Image
What is HTML Attributes and  why it is required ? We already Understood what is meant by HTML Tag . <html> is one tag , <body> is one tag, <header> is one tag . So if we want to give more information about the above mentioned tags , that moment we use Attributes . It means we can give more information by using Attributes , To understand more about HTML Attributes follow the link given here and find our more . HTML Attributes If you still not able understand how it can used and where it can be used   find out more here about the HTML Attributes here.

How Can you make money Online ...?

               There are so many people thinking and trying to make some money on line . Not only Un employed people so many Working people ,retired people and house wife's are searching a reliable money making methods . They are really making money . If  it is how many people are making money and how much they are making ?  Very less people are getting real success . And the important thing is to make it possible you have to be expert . You should have a better talent to make money on line .                  But if you spent same time to learn few simple skills , then you can easily make some on line and offline money . Yes it is true . I have so many people who is really making and very good money . It is not scam and any scheme . That is none other than that Web development .  There so much information is available to k...

best web development language

1.What is HTML? 2.Document Structure? 3.Meta Tag & Heading Elements 4.DIV,SPAN & ADDRESS. 5.LISTS & ITEMS 6.Tables 7.Links & Anchors 8.Images & Image Maps 9.Floating Objects & Formatting 10.Fonts with Styles 11.Layout Designs with Frame 12. Form Control & Tyeps. 13. Elements & Attributes 14. Structuring with Fieldset 15. Access Key & Tab Index.

UI Developer Interview Questions

Image
UI Developer Interview Questions Hi friends , Today i had attented an Interview in A Company . The following are the Questions i had Faced . If you are looking for a job , this Questions May be helpful to you . And I request you pople to share with you friends are . It may be helpful for them . How can visitor Stay in web page more time Why you are using HTML 5? what is the diff between HTML 4 And HTML 5 Advantages in HTML 5? How can HTML 5 Reduce the Page loading time? What are all the tags used in HTML 5? What is the  Importance of the Doctype? Diff between Block level Element and in line Elements? What is the Difference between Block Level Elements & can you give more examples of Block level Elements? How many types of positions are there in HTML? How can you call child element which is having same class names parent? write media Queries for desktop,tablet & mobile? how to position a div in centre of a document (both ways). How to use :before an...

Closing HTML Tags

Closing the HTML tags immediately after opening is the best method . It will give you full control on the code . It will minimize the errors . So i do practice it . It helped me Lot. <html> </html> Its not only gives you the control on coding , it will help you to understand the layout of the document . Let us look it in details . I am  assuming that you dont have any idea about HTML. Step 1 : start the document with <html> and close it with </html> Step 2: 2.Start the Body <body></body> After HTML tag ... <html> <body> </body> </html> Step 3: Write something Between <body> & </body> <html> <body> Hi , Thi is my first Webpage ...  </body> </html> Step 4: Now save this as sample. html You can give any name you want . its up to you . Once you save this open within Any browser . .  Now your very first Html page is ready , Congratualation ...

HTML ప్రాముక్యతలు

HTML ఒక ఆసక్తికరమైన సబ్జెక్టు . మీరు ఒక మంచి ఉద్యోగం కోసం వెతుకుతున్నారా? . ఈ  బ్లాగుని క్రమం  తప్పకుండా  ఫాలో అవ్వండి .  45 కేవలం  60   రోజుల్లో  మీరు ఓకే professional  వెబ్ developer అవుతారు . ఎప్పుడు  ఏ రకమైన సందేహం వచ్చినా నన్నుcontact చెయ్యండి . Important HTML Contents : 1. <html> 2. <head> 3.<title> 4. <style> 5.<link> 6.<a> 7.<img> 8. <border> 9.<table> 10.<div> 11.<span> 12.<ul><ol> 13.Elements & Frames 14.Forms 15. Input tags If you know above tags you can get started in HTML . There are so much suject . But i am  not going to cover all the topics here . Just few tags will help you to start developing websites . Once you started you will come to know more about the subject where ever it rewuired . So .. let us start .

A Basic HTML Template

<html> <head>               <title> This is Title Of the Page </title>               </head>               <body>  This is HTML Body Section . All the content Written here will be displayed in our Website .               </body> </html> There are tons of material available on net related to the HTML . But still the way of teaching and presentation will make each content different . Let me start the web design tutorial from the basic level . If you are interested to know more about HTML .. here it is.. Learning HTML is always great fun and exciting . I like build the webpages and write some interesting  stuff . Its great and creative job to work .