Explain the script build up by jquery?



Explain the script build up by jquery?..

Answer / Nagendra Kumar Verma

jQuery script is built using HTML, CSS, and JavaScript. Here's a basic structure:n```htmln<!DOCTYPE html>n<html lang="en">n <head>n <meta charset="UTF-8" />n <title>My jQuery Project</title>n <!-- Include jQuery library -->n <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>n </head>n <body>n <!-- Your HTML elements -->n <!-- Your jQuery script -->n <script>n $(document).ready(function() {n // Your jQuery code heren });n </script>n </body>n</html>n```

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More jQuery Interview Questions

Is jQuery is a client or server scripting?

1 Answers  


Why jQuery is better than JavaScript?

1 Answers  


Explain the difference between size and length of jquery?

1 Answers  


Explain slidetoggle() effect.

1 Answers  


What is the difference between prop and attr?

1 Answers  


Suppose if you have a server control(asp.net server control, button) and on the click of button you want to call a jquery function, so tell me how you will call a jquery function without postback?

1 Answers  


What is the use of toggle() method in jquery?

1 Answers  


Explain the use jquery.data method?

1 Answers  


Need to add jQuery file in both Master and Content page?

1 Answers  


How do I pull a native DOM element from a jQuery object?

1 Answers   MCN Solutions,


How to executed jquery selectors? : jquery mobile

1 Answers  


What is the use of jQuery filter?

1 Answers  


Categories