iframe - Embedded Google calendar : how to set range of hours to display? -
given following embedding code:
<iframe src="https://www.google.com/calendar/embed? title=2014 plidam international symposium (paris)& dates=20140611/20140615& mode=week& shownav=1& showdate=1& showprint=1& showtabs=1& showcalendars=0& showtz=1; height=600& wkst=2& bgcolor=%23666666& src=vdfmfbp0msroletduigs2qtkoc%40group.calendar.google.com& color=%232952a3& ctz=europe%2fparis" style=" border:solid 1px #777 " width="800" height="600" frameborder="0" scrolling="no"></iframe>
is there parameter set hours display/focus_on 09:00 18:00 (6pm), aka working hours ? same days, there someways display/focus_on rights 4 days only.
there doesn't appear way through api, currently. use javascript/jquery remove elements don't want show in dom after iframe has finished loading.
so, delete wednesday column, if know column index, this:
$("tr").each(function() { $(this).filter("td:eq(3)").remove(); });
you can scroll specific div view:
https://stackoverflow.com/a/4884904/5129424
$("#myimage")[0].scrollintoview();
Comments
Post a Comment