Hello,
I would like to call simple 'hello world' in lightbox jQuery. I added the .js and .css files of it in appropriate folder. now how would I call it?

A typical page template is like this.

<!DOCTYPE ...>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/path/to/stylesheet.css" />
<script type="text/javascript" src="/path/to/jquery.js"></script>
<script type="text/javascript">
$(function(){
//your jQuery code here
});
</script>
</head>
<body>
<!-- your html here -->
</body>
</html>

Airshow

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.