Home > Miscellaneous (Page 3)

Agile estimation and Story points

1) What is story points in Agile Story point is a unit used in agile process which estimates the efforts for implementing a complete feature considering actual efforts, risk involved, uncertainties may occur and complexities of the implementation. The story point actually defines the difficulty level to achieve the goal. The main goal

This Article is TAGGED in , . Read more

Importance of Daily standup meeting in an agile process

1) What is the daily standup in an agile process? A short team meeting conducted on a daily basis (Usually before starting the day) to know the task or work status of the team members. The focus of the meeting should be the each team member completed the yesterday's task and have

This Article is TAGGED in , , . Read more

How to create file with specific size for Testing

While performing software testing we always need test data. To test file related scenarios like upload , download etc we need test files. Follow these 2 simple steps to create file with specific size limit. Step 1) Open command prompt (press windows key then type command and press Enter) Step 2) Type below

This Article is TAGGED in . Read more

jQuery: Difference between selectors :first, :first-child and :first-of-type

Definition: :first – use this selector to select first element. This selector select only one single element from all related elements available on the page. :first-child – use this selector to select all first child elements from each parent. :first-of-type – use this selector to select all first child elements, of a specific

This Article is TAGGED in , , , , , . Read more

TYPES OF HTML ELEMENTS AND TAGS

Types Of Elements: Block Level: Block elements are meant to structure the main parts of your page, by dividing your content in coherent blocks wth full width. paragraphs <p> lists: UL and LI headings <h1> to <h6>, articles <article> sections <section> long quotes <blockquote> Division <div> Form <form> Table <table> Inline Level: Inline elements are meant to differentiate part of

This Article is TAGGED in , , . Read more

How to set background image position for all browsers in CSS? Specially for Safari browser.

CSS: div{                    width:600px;                    height:400px;                    border:5px solid black;                    background-image: url('image.jpg');                        /*Add your image path here*/                    background-repeat: no-repeat;                    background-position: right 75% center;                   /*For all browser except Safari*/                    background-position-x: 25%;                                      /*For support all browsers with Safari browser*/                   background-position-y: 50%;                                      /*For support all browsers with Safari browser*/                   margin:0 auto; } DEMO

This Article is TAGGED in . Read more

jQuery: Difference between remove(), empty() and detach() methods

jQuery Difference between remove(), empty() and detach() methods

Definition: remove() – Removes all child elements with selected element. In this method you can restore all data but not event handlers of removed elements from the DOM. All data and events related with elements will be removed. empty() – Removes all content and child elements from the selected element. This method

This Article is TAGGED in , , , . Read more