Link to home
Start Free TrialLog in
Avatar of bbimis
bbimis

asked on

is there a way to make a dynamic text event on wix.com

i'm making a website on wix.com and would like to dynamically take and change some text in a box to reflect the date.
I was hoping to make like a months calendar and if the date is within that range take and display the data.
for example:
<script type="javascript">
<!--
var triggerDate=new Date()
triggerDate.setFullYear(2006,08,01)
var today = new Date()
if (today=>triggerDate)
{
document.write('The text from your inserted paragraph goes here')
}
//-->
</script>

Open in new window


anyone know of a way to do it on there?
ASKER CERTIFIED SOLUTION
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bbimis
bbimis

ASKER

not what i was looking for but pointed me in the right direction. thanks!