Hello I have a quick question.
I can launch javascript code like this through arrays:
arrayLinks[13]="javascript:LaunchKeyboard()";
** but how do I launch jQuery code through an array?**
arrayLinks[8]="??????????????";`
My jquery code is
$(function() {
var ele = $('#div1');
var speed = 25, scroll = 5, scrolling;
$('#scroll-down').mousedown(function() {
etc
}
Any advise would be great.
Thank you.