How to change the URL of the tabs after Ajax load
Hello,
I want to be able to change the URL of the tab after the ajax content has been loaded.
Here is the situation:
I have a tab("comapnies-classifieds") at which I want to load "all the classifieds of the user"
if it was clicked "selected by the user", otherwise if it was reached through a
direct link and the direct link has "a classified_id" then only select the specified classified.
<div id="tabs">
<ul>
<li><a href="#companies-info"><span><?php echo $txt['info']; ?></span></a></li>
<li><a title="comapnies-classifieds" href="classifieds_list.php?id=<?php echo $member_id; ?>&classified_id=<?php echo $classified_id; //if not set then zero ?>"><span><?php echo $classifieds['page_title']; ?></span></a></li>
<li><a href="#comapnies-contact"><span><?php echo $txt['send_message']; ?></span></a></li>
</ul>
The problem is: after the classified_id has been set the link would always be :
companies.php?id=42&classified_id=17#comapnies-classifieds How can I change this URL to companies.php?id=42 after the above URL has been loaded so that every time the user
clicks on this tab the loaded URL will be companies.php?id=42
Thanks
Regards,
Khaled