Showing posts with label Javascript. Show all posts
Showing posts with label Javascript. Show all posts

25.3.10

OnClientClick two functions call

http://forums.asp.net/p/1201855/2101115.aspx#2101115

6.3.09

open popup window

http://www.pageresource.com/jscript/jwinopen.htm

string script = script language='javascript'>window.open('../" + pagename + "','','width=1000,height=750,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');

2.2.09

text scroll vertically in textbox

see this

http://javascript.internet.com/text-effects/layer-scroller.html

=============

http://www.java2s.com/Code/JavaScript/GUI-Components/Scrolltextwithcustomscollbar.htm
============
onbuttonclick:
http://www.java2s.com/Code/JavaScript/GUI-Components/TextScrollwhenclicking.htm
====================
onmouseover:
http://www.java2s.com/Code/JavaScript/GUI-Components/TextScrollwhenmouseover.htm
-----------
onmouseover:
http://cssglobe.com/post/1495/easy-scroll-accessible-content-scroller

29.1.09

Zoom image with javascript

see this

http://highslide.com/

Text Scroll with javascript

see this :
http://www.java2s.com/Code/JavaScript/GUI-Components/TextScrollwhenmouseover.htm

30.6.08

Print button with javascript - fast and simple solution

The simplest way to print a web form is to use client side javascript. To print a web page, you can use code like this:

<input type="button" value="Print" onclick="window.print();">

This HTML code will return a Print button like bellow. You can click it to print this page.


for more information see this link :