0% found this document useful (0 votes)
32 views10 pages

BARKII

Uploaded by

chandanahk775
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views10 pages

BARKII

Uploaded by

chandanahk775
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 10

VISVESVARAYA TECHNOLOGICAL UNIVERSITY

“JNANA SANGAMA”, BELAGAVI - 590018

K.R PETE KRISHNA GOVERNMENT ENGINEERING COLLEGE, K.R PET -571426


Department of Computer Science & Engineering
Seminar Topic On
“JAVASCRIPT”
Presented by

CHANDANA H K
4GK21CS011

Under the Supervision of

Under the Guidance


Head of the Department
Dr Devika G
Dr Hareesh K
Assistant Professor
2023-2024
JAVASCRIPT:

 JavaScript is a versatile programming language commonly used for web


development.

 It allows developers to add interactivity ,dynamic behaviour and functionality to web


pages.

 It is one of the scripting language primarily used for client-side web development.

 It was developed by Brendan eich at Netscape communications in 1995.

 Overall Javascript is a fundamental technology for web development,


empowering developers to create interactive and engaging web applications that
enhance the user experience.
SOME KEY FEATURES AND BENEFITS OF JAVASCRIPT:

 Client-side scripting: Javascript primarily runs on the client-side (in the users web browser),
unlike server-side languages like python(used in Django). this means javascript code is
executed on the users device ,allowing for real time interaction without needing to
communication with the server for every action.

 Dynamic content: Javascript enables the manipulation of HTML and CSS, allowing developers
to dynamically update the content and styling of web pages based on user interactions or
other events. This includes like showing/hiding elements , changing text or images, and
animating elements.

 Event Handling: Javascript allows developers to respond to various events triggered by


user interactions, such as mouse clicks, keyboard inputs, form submissions. Event handlers
can be attached to HTML elements to execute javascript code when event occurs.
 DOM Manipulation: The DOCUMENT OBJECT MODEL is a programming
interface that represents the structure of an HTML document as tree of nodes.
Javascript can interact with and manipulation the DOM , enabling the addition ,
removal, or modification of elements and their attributes on the fly.

 Asynchronous programming: Javascript supports asynchronous programming ,


allowing tasks to be executed concurrently without blocking the main execution.
This is a crucial for tasks such as making Ajax requests and processing data in
the background.

 Browser compatibility: Javascript code can run on most modern web browsers,
including chrome, firefox, safari, and edge. However, developers need to consider
browser compatability
 Install django
 Create a Django project
 Modify views.py
urls.py
Example_template.html
• Perform migrations using the commands.

Python manage.py makemigrations


python manage.py migrate

• .Run the server in the VSCode terminal.

python manage.py run server


Output:
THANK YOU

You might also like