Friday, September 13, 2013
Wednesday, September 11, 2013
Tuesday, September 10, 2013
Sunday, September 8, 2013
Saturday, September 7, 2013
SET ESC KEY EVENT IN WEB PAGES
<html>
<head>
<title>Untitled Document</title>
<script type="text/javascript" src="jquery.js" /></script>
<script>
$(document).keyup(function(e) {
if (e.keyCode == 27) { document.write("RUN");} // esc
});
</script>
</head>
<body>
Demo File.
</body>
</html>
GTU Module 3-Preparation of Patent Search Report
Material for GTU Module 3
Download Document :
Compendium of Module 3- Interpretation of Patent Documents from Different Databases.pdf
Module 3-Preparation of Patent Search Report.pdf
Sample - Patent Search & Analysis Report.pdf
Frequently Asked Questions for Patent Search & Analysis Report.pdf
Circular_Patent Search Report _2nd Sept 2013.pdf
Download Document :
Compendium of Module 3- Interpretation of Patent Documents from Different Databases.pdf
Module 3-Preparation of Patent Search Report.pdf
Sample - Patent Search & Analysis Report.pdf
Frequently Asked Questions for Patent Search & Analysis Report.pdf
Circular_Patent Search Report _2nd Sept 2013.pdf
Friday, September 6, 2013
Web Developing - Computer Engineering: 60+ Awesome New WordPress Themes
Web Developing - Computer Engineering: 60+ Awesome New WordPress Themes: 60+ Awesome New WordPress Themes Blog Post In: http://www.webdesignerdepot.com It seems like every time you go looking for a new...
Labels:
WordPress
Sunday, August 11, 2013
Facebook Like Button Start Count as 0 in Box Count
<iframe
src="//www.facebook.com/plugins/like.php?locale=en_US&href=YOUR_URL_HERE&layout=button_count&show_faces=true&width=500&action=like&font&colorscheme=light&height=23"
scrolling="no" frameborder="0" style="border:none;
overflow:hidden; width:50px; height:23px;" allowTransparency="true"></iframe>
blinking-text-using-jquery
1<!DOCTYPE html>
|
||
2
|
<html>
|
|
3
|
<head>
|
|
4
|
<meta charset="utf-8">
|
|
5
|
<title>Blinking Text | istockphp.com</title>
|
|
6
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
|
7
|
<script type="text/javascript">
|
|
8
|
$(function() {
|
|
9
|
var
x;
|
||
10
|
setInterval(function()
{
|
||
11
|
if(x
== 0) {
|
|
12
|
$('.blinking').removeAttr('style');
|
|
13
|
x
= 1;
|
|
14
|
}
else {
|
|
15
|
if(x
= 1) {
|
|
16
|
$('.blinking').css('color',
'red');
|
|
17
|
x
= 0;
|
|
18
|
}
|
|
19
|
}
|
|
20
|
}, 500);
|
|
21
|
});
|
|
22
|
</script>
|
|
23
|
||
24
|
</head>
|
|
25
|
||
26
|
<body>
|
|
27
|
<p
class="blinking">istockphp.com</p>
|
|
28
|
</body>
|
|
29
|
</html>
|
Labels:
JQuery
Subscribe to:
Posts (Atom)