हां, आप यह कर सकते हैं।
कुछ दिलचस्प उपयोग के मामले हैं: कुछ ब्राउज़र और प्लगइन्स मेटा तत्वों को पार्स करते हैं और विभिन्न मूल्यों के लिए उनके व्यवहार को बदलते हैं।
उदाहरण
Skype: फ़ोन नंबर पार्सर बंद करें
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE">
iPhone: फ़ोन नंबर पार्सर को बंद करें
<meta name="format-detection" content="telephone=no">
Google Chrome फ़्रेम
<meta http-equiv="X-UA-Compatible" content="chrome=1">
मोबाइल उपकरणों के लिए व्यूपोर्ट परिभाषा
<meta name="viewport" content="width=device-width, initial-scale=1.0">
इसे जावास्क्रिप्ट द्वारा बदला जा सकता है। देखें: iPhone व्यूपोर्ट स्केल बग के लिए एक फिक्स
मेटा विवरण
कुछ उपयोगकर्ता एजेंट (उदाहरण के लिए ओपेरा) बुकमार्क के लिए विवरण का उपयोग करते हैं। आप यहां व्यक्तिगत सामग्री जोड़ सकते हैं। उदाहरण:
<!DOCTYPE html>
<title>Test</title>
<meta name="description" content="this is old">
<script type='text/javascript' src='http://code.jquery.com/jquery-1.8.2.js'></script>
<button>Change description</button>
<script type='text/javascript'>
$('button').on('click', function() {
// Just replacing the value of the 'content' attribute will not work.
$('meta[name=description]').remove();
$('head').append( '<meta name="description" content="this is new">' );
});
</script>
तो, यह केवल खोज इंजन के बारे में नहीं है।