OK, so this is my problem.
I'm trying to load an inline container using ibox. Basically it works fine, as long as when calling it, the URL is in the following structure: www.domain.com/likes.php (when clicked it produces www.domain.com/likes.php#inlin e_container
However if the domain is in the structure www.domain.com/likes/24 due to rewritable URLs, this doesn't work anymore (when clicked it produces www.domain.com/likes/24#inline_conta iner
This is my code:
JS Import:
Div:
Link:
What do you think is the best solution to call the DIV and ignore the URL Rewriting structure?
Thanks
I'm trying to load an inline container using ibox. Basically it works fine, as long as when calling it, the URL is in the following structure: www.domain.com/likes.php (when clicked it produces www.domain.com/likes.php#inlin e_container
However if the domain is in the structure www.domain.com/likes/24 due to rewritable URLs, this doesn't work anymore (when clicked it produces www.domain.com/likes/24#inline_conta iner
This is my code:
JS Import:
Code:
<script type="text/javascript" src="ibox/ibox.js"></script>
Code:
<div id="inner_content" style="display:none;"> <div style="background:#52425C;color:#ffffff;border:1px dashed #FFFFFF;padding:15px;margin:15px;"> <p>Sample text</p> </div> </div>
Code:
<li><a href="#inner_content" rel="ibox&width=600&height=410" title="Sample Title!">Create Your Post!</a></li>
Thanks
Comment