@mira.baka. Thanks for posting. From what you describe it sounds like a javascript issue. Sometimes it is a conflict between jQuery and Mootools. For me to help you more, and give you a possible solution, would you please post a link to the page with the listing. If you prefer not to post the link on the site, you can send it to my email: support[at]valorapps[dot]com
Once I get the link, I will examine the page, and check for any errors in the Browser console, then based on the errors, I’ll tell you what’s going on and what to do to fix it. If I need further access, we’ll discuss it then.
@mira.baka. Thanks for sending me the link via email. I had a look at the site, and checked the error console using Safari browser. The error displayed is:
SyntaxError: Unexpected token ‘<‘ files:37
When I click on this error, it refers to the fact that you have
1
2
3
<![CDATA[<br/>
...your code here...<br/>
]]>
surrounding your javascript. It seems as though what you need to do is to either 1) do not use the CDATA tags, or 2) comment the CDATA tags out, so that it would look like this:
1
2
3
//<![CDATA[<br />
...your code here...<br/>
//]]>
Notice the inline comment delimiters, //, as placed before the CDATA start and end tags.
Based on that reference, I suspect that you may be experiencing this problem because the content-type for your page is not set. You currently have it set to <meta charset=”utf-8″>, and it should be <meta http-equiv=”content-type” content=”text/html; charset=utf-8″ />