0
   

JAVA SCRIPT

 
 
pranay
 
Reply Wed 26 Mar, 2014 03:05 pm
Create and call a function
Pass parameters
Use global and local variables, as appropriate
Register an event listener
Use the timing object (setInterval, clearInterval)
Use string and date methods
Manipulate strings (concatenation, methods)
Write mathematical formulas
Use of math methods
Use of randomization
Create and manipulate array elements (methods)
Open a secondary window with or without scroll bars, tool bars, etc
  • Topic Stats
  • Top Replies
  • Link to this Topic
Type: Question • Score: 0 • Views: 672 • Replies: 3
No top replies

 
pranay
 
  0  
Reply Wed 26 Mar, 2014 06:16 pm
@pranay,
$(document).ready(function () {
$('p').on('mouseover', function () {
$('#pic').show();
$(this).css({

"position":"center"
});
var myPara = document.getElementById("1");
myPara.style.color = "gold";

}).on('mouseleave', function () {
$('#pic').hide();
$(this).css({
"text-decoration": ''
});
var myPara = document.getElementById("1");
myPara.style.color = "white";

});;
});
0 Replies
 
bobsal u1553115
 
  0  
Reply Wed 26 Mar, 2014 06:41 pm
All that and an advanced degree will you a nice job.
pranay
 
  1  
Reply Thu 27 Mar, 2014 10:19 am
@bobsal u1553115,
var hit = new Array()
hit[0]=100;
hit[1]=200;
hit[2]=300;

var hr = new Array()
hr[0]=10;
hr[1]=20;
hr[2]=30;

var rbi = new Array()
rbi[0]=1;
rbi[1]=2;
rbi[2]=3;
0 Replies
 
 

Related Topics

 
  1. Forums
  2. » JAVA SCRIPT
Copyright © 2024 MadLab, LLC :: Terms of Service :: Privacy Policy :: Page generated in 0.04 seconds on 04/25/2024 at 11:26:27