freeCodeCamp/guide/arabic/certifications/front-end-libraries/jquery/use-jquery-to-modify-the-en.../index.md

21 lines
456 B
Markdown
Raw Normal View History

---
title: Use jQuery to Modify the Entire Page
localeTitle: استخدم jQuery لتعديل الصفحة بأكملها
---
## استخدم jQuery لتعديل الصفحة بأكملها
### شرح المشكلة
أضف الطبقات `animated` `hinge` إلى عنصر `body` .
#### روابط ذات صلة:
* [.addClass ()](https://api.jquery.com/addClass/e)
### حل:
`<script>
$("body").addClass("animated hinge");
});
</script>
`