Now $.load() is suddenly acting differently?!
I have been doing the following for MONTHS without a problem, now it is suddenly not working anymore, what the?
Link:
- <a onclick="readPage('http://www.mysite.com/jquery_work.php?a=register','registerCont');" style="cursor:pointer;">Sign Up</a>
Jquery function:
- function readPage(keyPage,container)
- {
- $(function()
- {
- $("#"+container).load(keyPage);
- });
- }
Not even this is working! This is nuts..
- <a onclick="readPage('jquery_work.php?a=register','registerCont');" style="cursor:pointer;">Sign Up</a>