Skip to content Skip to sidebar Skip to footer

Unable To Call Specific Content From An External File Inside Jquery

I am unable to load a specific content located inside of an external html file using jquery inside DIV container :/ Please visit a link: http://www.flyingcowproduction.com/123 to h

Solution 1:

You're loading the whole page if you want to load specific content you need to put a selector after the url but you need a space between them which you are missing var loadStr = "load.php " + section;. I would reconsider adding handlers in the .load() callback`.

Also I see in the console

Uncaught ReferenceError: showArea is not defined PageNavigation.js:312

Solution 2:

You can link to somewhere at same page as like described here: http://www.w3schools.com/html/tryit.asp?filename=tryhtml_link_locations

so if you have some problems you can try that way. Give to link at same page and call that click or relate your tab click functions to fire it.

Post a Comment for "Unable To Call Specific Content From An External File Inside Jquery"