yumedoll
Active Coder
So I have this homepage that contains two separate iframes that are sourced from two separate html files. One is a calendar, the other is a blog. What I want to do is to put hyperlinks on marked dates on the calendar that the user can click to jump to the related blog post of that date.
Something like this:
Calendar's marked date will have an anchor tag like so, let's say the date is the 15th of the month
And then the blog post in the separate iframe
But I'm not sure if this is possible. If it's not possible, I'd really appreciated if someone can suggest a workaround but if not, it's ok, I'll try to find a way myself 🙂
Something like this:
Calendar's marked date will have an anchor tag like so, let's say the date is the 15th of the month
HTML:
<a href="#blogpost1">15</a>
And then the blog post in the separate iframe
HTML:
<div class="blog" id="#blogpost1">15th May is my friend's birthday :)</div>
But I'm not sure if this is possible. If it's not possible, I'd really appreciated if someone can suggest a workaround but if not, it's ok, I'll try to find a way myself 🙂