frame or iframe elements must have a title
<frame> or <iframe> elements must have a title
<frame> or <iframe> elements मैं टाइटल होना जरूरी है आइए जानते हैं टाइटल कैसे लगाते हैं
<frame> or <iframe> elements मैं टाइटल होना जरूरी है इससे ब्राउज़र को पता चलता है कि यह किस बारे में है मैं यहां पर कुछ टाइटल दिए हुए एग्जांपल बता रहा हूं
Example->
1) जब हम फेसबुक लाइक शेयर बटन बनाते हैं तो हमें
iframe में टाइटल लगा हुआ नहीं मिलता जैसे कि
1) जब हम फेसबुक लाइक शेयर बटन बनाते हैं तो हमें
iframe में टाइटल लगा हुआ नहीं मिलता जैसे कि
This is incorrect iframe. 👎
<iframe src="https://www.facebook.com/plugins/like.php?href=httpsxxxxxxxxxx your IDxxxxxxxxxxxxxxxx&width=450&layout=standard&action=like&size=small&share=true&height=35&appId" width="450" height="35" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
<iframe src="https://www.facebook.com/plugins/like.php?href=httpsxxxxxxxxxx your IDxxxxxxxxxxxxxxxx&width=450&layout=standard&action=like&size=small&share=true&height=35&appId" width="450" height="35" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
आप देख सकते हैं इसमें टाइटल तत्व नहीं है। हम सिर्फ अपने एचटीएमएल जावास्क्रिप्ट में टाइटल लिखते हैं और हर कोई अपनी इच्छा मुजब कभी (लाइक बटन) कभी (फेसबुक लाइक बटन) इस तरह से लिखते हैं यही टाइटल हमें iframe में भी लिखना होता है।
iframe मैं टाइटल कैसे लिखते हैं।
आप इस तरह से iframe में टाइटल दीजिए।
आप इस तरह से iframe में टाइटल दीजिए।
This is correct iframe. 👍
<iframe title="Facebook like button" src="https://www.facebook.com/plugins/like.php?href=httpsxxxxxxxxxx your IDxxxxxxxxxxxxxxxx&width=450&layout=standard&action=like&size=small&share=true&height=35&appId" width="450" height="35" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
<iframe title="Facebook like button" src="https://www.facebook.com/plugins/like.php?href=httpsxxxxxxxxxx your IDxxxxxxxxxxxxxxxx&width=450&layout=standard&action=like&size=small&share=true&height=35&appId" width="450" height="35" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>
आपने एचटीएमएल जावास्क्रिप्ट बॉक्स में टाइटल जो लिखा है वही आईफ्रेम में लिखें जैसे कि फेसबुक लाइक, लाइक बटन, लाइक।
2) आपने अक्सर देखा होगा कि देवटूल में कॉमेंट एडिटर के आईफ्रेम में इस तरह का ऐरर आता है।
This is incorrect iframe. 👎
<iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410' id='comment-editor' name='comment-editor' src='' style='display: none' width='100%'/>
<iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410' id='comment-editor' name='comment-editor' src='' style='display: none' width='100%'/>
इस तरह से आईफ्रेम बनाएं।
This is correct iframe. 👍
<iframe allowtransparency='allowtransparency' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410' id='comment-editor' name='comment-editor' src='' style='display: none' title='comment' width='100%'/>
<iframe allowtransparency='allowtransparency' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410' id='comment-editor' name='comment-editor' src='' style='display: none' title='comment' width='100%'/>
Important 👉 किसी भी लिंक का नाम (title) होना जरूरी है। इससे ब्राउज़र को पता चलता है कि लिंक किस बारे में है।
एक टिप्पणी भेजें
आप अपने सवाल, सलाह या संदेश हमें दे सकते हैं।