
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Vrundesha Joshi has Published 289 Articles

Vrundesha Joshi
167 Views
Using input group you can easily prepend and append text or buttons to the text-based inputs. The same is the usage of input-group class in Bootstrap.You can try to run the following code to implement the input-group class −ExampleLive Demo Bootstrap Example @ .00 $ .00

Vrundesha Joshi
353 Views
The JavaScript eval() is used to execute an argument. The code gets execute slower when the eval() method is used. It also has security implementations since it has a different scope of execution. In addition, use it to evaluate a string as a JavaScript expression.The eval() method is not suggested ... Read More

Vrundesha Joshi
3K+ Views
Use the rowspan attribute to set the number of rows a table cell should span. To merge cells in HTML, use the colspan and rowspan attribute. The rowspan attribute is for number of rows a cell should span, whereas the colspan attribute is for number of columns a cell should ... Read More

Vrundesha Joshi
153 Views
To get the pathname part of the href attribute of an area in JavaScript, use the pathname property.ExampleYou can try to run the following code to display the pathname part. var x = document.getElementById("myarea").pathname; document.write("Pathname: "+x);

Vrundesha Joshi
2K+ Views
HTML5 Geolocation API lets you share your location with your favorite websites. A Javascript can capture your latitude and longitude and can be sent to backend web server and do fancy location-aware things like finding local businesses or showing your location on a map. The geolocation coordinates specify the geographic ... Read More

Vrundesha Joshi
358 Views
Use the onmousedown attribute to in HTML to execute a script when a mouse button is pressed down on an element.ExampleYou can try to run the following code to implement onmousedown attribute − This is demo heading. ... Read More

Vrundesha Joshi
4K+ Views
Use the tag to add date and time. The HTML tag is used for displaying the human readable date and time.The HTML tag also supports the following additional attribute −AttributeValueDescriptiondatetimedatetimeIt is a machine readable date timeExampleYou can try to run the following code to learn how to ... Read More

Vrundesha Joshi
474 Views
The Date object is a datatype built into the JavaScript language. Date objects are created with the new Date( ) as shown below.Once a Date object is created, a number of methods allow you to operate on it. Most methods simply allow you to get and set the year, month, day, ... Read More

Vrundesha Joshi
343 Views
A class, method, constructor, interface, etc. declared public can be accessed from any other class. Therefore, fields, methods, blocks declared inside a public class can be accessed from any class belonging to the Java Universe.However, if the public class we are trying to access is in a different package, then ... Read More