I am using .load() to pull static HTML files onto my main HTML page. The scripts and selectors that I have written exist within:
$(document).ready(function()
There are more than one option:
$(this).click... ] into callback function of $.load()$.live(), which creates handlers even for dynamically loaded/created objects.More here:
callback: http://api.jquery.com/load/ (notice the "complete()" function)
bind: http://api.jquery.com/live/
Edit: My mistake, it was live(), not bind(), thank you guys