when i use this code,the jquery code in the #paylasimlar does not run.i search a lot.some say
use .ajax some say do not use bind.load.but none of them works.what can i do if i want codes
run in both places?
$('#paylasimlar').load('profile.php #paylasimlar');
(shortly i submit an information and i want to load the section that these information are shown,and there are comment sections below informations whixh work with jquery)
$.load()requires a callback function, and runs the function when the item gets added to the DOM.So generally you do:
is this what you are looking for? If not you may want to look at
$.ajax()or$.get()