post your comment   print   send to a friend
Rate:   0% | Views: 220
Question categories:  Java

Dynamically displaying what's new on your page

There are several web pages that can look better and make more sense with updated features/elements displayed. For example: Would you like to display a "new" image alongside new content that will automatically disappear (the image) after a specified date has been reached?

The logic to doing so is simple. If the current date is less than the specified future date, write out the "new" image:

<script>

var newimage='<img src="http://www.apluskb.com/scripts/data//Web_design/Do_it_Yourself/Java/whats_new_files/new.GIF">'
var today=new Date()

function whatsnew(yr,mon,day){
var expire=new Date(yr,mon,day)
if (today.getTime()<=expire.getTime())
document.write(newimage)

</script>

<!--"New" image will disappear after Dec 30th, 2002-->
<script>whatsnew(2002,11,30)</script> This is new content!

Example: This is new content!

Customer Feedback
Rate:   0% | Views: 220 | Please Rate:  
 
If you have other comments or ideas for future technical tips, please type them here:

Email: (optional)

Comments: (optional)

 Web Designers | Web Hosting Services    Back to serch results
Browse the Base
Knowledge Base
Web Design
  Do It Yourself
    Java
Messages
 

$75 Free Google AdWords

Free $75 Google AdWords when you sign up for WebImage! Target by location, create your own, or let Google create your ads for you. Check out http://www.aplus.net/google.html to see how AdWords works for you.

Private Area
 
Ask
in Private
   
Personal
Folder
 
Related Questions
 
1. How do I access Servlets or CGI programs from Java?
 
2. My applet computes its window size. Can I resize it in the browser?
 
3. How do I communicate between my applets in the same browser?
 
4. How do I force the browser to reload my Java classes without exiting Navigator?
 
5. Why does my java console show an applet is pruned?
 
Home Browse Search Ask in Private Personal Folder   Help
powered by web hosting 
  Logged as: Guest