Sponsored Links


Results 1 to 3 of 3

Thread: IT430 - E-Commerce Assignments No. 2 Solution and Discussion Close Date Dec 15, 2014

  1. #1
    Senior Member Entboy's Avatar
    Join Date
    Dec 2011
    Posts
    5,454

    IT430 - E-Commerce Assignments No. 2 Solution and Discussion Close Date Dec 15, 2014

    Sponsored Links1


    Objective:
    The goal of this assignment is to get you acquainted with concept of using HTML, java script
    and objects in java script.
    Lectures Covered: 10-16
    BEST OF LUCK
    Question: Marks: 15
    Part a)
    Develop a web page with java script code that should display a button named "Click Here". After
    clicking that button an alert should be displayed with text "Java Script is Working". 5 marks
    Part b)
    Write Java Script code to display digital clock. Time should be updated after every second and output
    of the code should be displayed as given in the following figure. (10 marks)

  2. #2
    Administrator Vuhelper's Avatar
    Join Date
    Apr 2011
    Posts
    9,578
    span class="start-tag">style type="text/css"> body { background-color: #80d4ea; } #clock{ height: 100px; width: 800px; margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0; padding-top: 70px; font-family: courier, monospace; text-align: center; color: white; font-size: 50px; } p{ text-align: center; margin-bottom: 0px; } </style> </head> span class="start-tag">body> span class="start-tag">div id='clock'> </div> span class="start-tag">script type="text/javascript" langauge="javascript"> function displayTime() { var currentTime = new Date(); var hours = currentTime.getHours(); var minutes = currentTime.getMinutes(); var seconds = currentTime.getSeconds(); // This gets a "handle" to the clock div in our HTML var clockDiv = document.getElementById('clock'); if (seconds < 10) { // Add the "0" digit to the front // so 9 becomes "09" seconds = "0" + seconds; } clockDiv.innerText ="HH:MM:SS\n" +hours + ":" + minutes + ":" + seconds; setTimeout('displayTime()', 1000); } displayTime(); </script> span class="start-tag">p> This is an Educational Purpose Clock. Only Works in Chrome and Internet Explorer. But not work in Mozilla FireFox. span class="start-tag">br> span class="start-tag">strong> Designed By: Double Diamond</strong> </p> </body> </html> <!-- Hey Guys and Girls.... Once again for the smiplicity u can remove all style from this code that is in style tag. To change the assignment you can change variables and funciton name and replace with ur own as u like. you can also change id names of divs. Am not it430's Student. But asuming that u know a little bit about code.

  3. #3
    Administrator Vuhelper's Avatar
    Join Date
    Apr 2011
    Posts
    9,578
    span class="start-tag">html> span class="start-tag">head> span class="start-tag">title>JavaScript Click Here Button</title> </head> span class="start-tag">body style="text-align: center; margin: 50px;"> span class="start-tag">button onclick="alert('Java script is working')"> Click Here </button> span class="start-tag">br>By: Double Diamond </body> </html> <!-- Hey Student...... This is very Simple Question You can remove the Style from body tag and my name also And I am using button tag you can use input tag to change the Assignment. After that Code will looks like this <input type=submit value="Click Here " onClick="alert('Javascript is Working')"> And one thing more don't forget to remove this comment starting with <!-- and ending with -->

    Sponsored Links

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 0
    Last Post: 12-05-2014, 02:00 PM
  2. Replies: 0
    Last Post: 11-24-2014, 07:43 PM
  3. IT430 - E-Commerce GDB No.1 Solution and Discussion Spring 2014
    By vuassignments in forum GDB Discussion
    Replies: 0
    Last Post: 08-04-2014, 02:44 PM
  4. IT430 - E-Commerce Assignment No. 04 Spring 2014 Close Date 23rd July, 2014
    By vuassignments in forum Assignments & Solutions
    Replies: 2
    Last Post: 07-23-2014, 01:40 PM
  5. MTH603-Numerical Analysis Assignments Fall 2014 Close Date 12 May, 2014
    By education-2014 in forum Assignments & Solutions
    Replies: 2
    Last Post: 05-12-2014, 10:12 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
-: Vuhelp Disclaimer :-
None of the files shown here are hosted or transmitted by this server. The links are provided solely by this site's users. The administrator's or staff of Vuhelp.net cannot be held responsible for what its users post, or any other actions of its users. You may not use this site to distribute or download any material when you do not have the legal rights to do so. It is your own responsibility to adhere to these terms. If you have any doubts about legality of content or you have any suspicions, feel free to contact us.
Online Education | JhelumSoft