Difference Between dragenter and dragover Event in HTML5

Samual Sam
Updated on 30-Jul-2019 22:30:22

432 Views

dragenterThe dragenter event is used to determine whether the drop target is to accept the drop. If the drop is to be accepted, then this event has to be canceled.dragoverThe dragover event, which is used to determine what feedback is to be shown to the user. If the event is canceled, then the feedback (typically the cursor) is updated based on the dropEffect attribute's value.

Creating Multiple Java Objects by One Type Only

Ankitha Reddy
Updated on 30-Jul-2019 22:30:22

1K+ Views

You can create a List of object easily. Consider the following example, where I'll create an array of Employee objects and print their details in a for loop. import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.List; public class Tester implements Cloneable { private int data; public int getData() { return data; } public void setData(int data) { this.data = data; } public Tester(int data){ ... Read More

Upgrading SAP .NET Connector 1.0 to 3.0

Sai Subramanyam
Updated on 30-Jul-2019 22:30:22

309 Views

In .NET connector 3.0.2, it has many bugs and one of the common is connection pooling. There is .NET 3.0.6.0 or higher available. You can go to SAP Marketplace and get the latest version.

Trust Backward Compatibility with HTML5

Rishi Rathor
Updated on 30-Jul-2019 22:30:22

196 Views

HTML5 is designed, as much as possible, to be backward compatible with existing web browsers. New features build on existing features and allow you to provide fallback content for older browsers.It is suggested to detect support for individual HTML5 features using a few lines of JavaScript.The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support many HTML5 features and Internet Explorer 9.0 will also have support for some HTML5 functionality.The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all have excellent support for HTML5.

Fix Video Connection Issues While Using Whiteboard

Mohammad Mohtashim
Updated on 30-Jul-2019 22:30:22

247 Views

If system does not find given meeting room ID then it will give same error. So I suggest to use any other unique room ID.https://www.tutorialspoint.com/whiteboard.htm

Backward Compatibility with HTML5

Govinda Sai
Updated on 30-Jul-2019 22:30:22

1K+ Views

HTML5 is designed, as much as possible, to be backward compatible with existing web browsers. New features build on existing features and allow you to provide fallback content for older browsers.It is suggested to detect support for individual HTML5 features using a few lines of JavaScript.The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support many HTML5 features and Internet Explorer 9.0 will also have support for some HTML5 functionality.The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all have excellent support for HTML5.

Execute Python CGI Script on Apache Server

Arnab Chakraborty
Updated on 30-Jul-2019 22:30:22

555 Views

in apache server normally python script will not run. SO you have to go httpd.conf file in apache server, inside that you will find some .php, .asp etc in a property called AddHandler, you have to put there .py. save the file and restart the server. then run your python CGI script, it will run properly 

What is Ionic and Its Relation with HTML5

V Jyothi
Updated on 30-Jul-2019 22:30:22

355 Views

Ionic is an HTML5 Mobile App Development Framework targeted at building hybrid mobile apps. Think of Ionic as the front-end UI framework that handles all the look and feel and UI interactions your app needs to be compelling. Kind of like "Bootstrap for Native", but with the support for a broad range of common native mobile components, slick animations and a beautiful design. Ionic framework needs native wrapper to be able to run on mobile devicesIonic is built and tested for mobile only. Internet Explorer does not support all the features of Ionic. Use separate applications for desktop and mobile. Read More

Write Python CGI Program to Interact with MySQL

Arnab Chakraborty
Updated on 30-Jul-2019 22:30:22

1K+ Views

suppose you want to login into you account using Python CGi script, below is the details login.html email: password: login.py #!C:\Python27\python.exe import MySQLdb import cgi import Cookie # Open database connection db = MySQLdb.connect("localhost", "root", "", "student" ) # prepare a ... Read More

Top Frameworks for HTML5-Based Mobile Development

Lakshmi Srinivas
Updated on 30-Jul-2019 22:30:22

230 Views

The following are some of the top frameworks for HTML5 based mobile development:1. Kendo UIUse Kendo UI to develop an invaluable cross-platform mobile application.2. BootstrapBootstrap supports HTML, CSS, and JS that allows developing mobile apps with responsive layouts.3. Ionic Ionic is open source framework used for developing mobile applications. It provides tools and services for building Mobile UI with native look and feel. The ionic framework needs a native wrapper to be able to run on mobile devices.4. Sencha TouchSencha Touch is a mobile application framework to develop user interface for mobile apps using HTML5, CSS3, and JavaScript. It assists the ... Read More

Advertisements