Question
Why doesn't jquery execute
I have created Ubuntu 14.04 droplet, and have manualy installed apache, php, and mysql (as described here: https://www.digitalocean.com/community/articles/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-14-04).
I have also transfered my DB's and web to this new droplet. Now, i cant seem to execute the jquery code properly.
eg:
I have html:
and JS:
$("#frm").submit(function(event) {
console.log('starting');
event.preventDefault();
var posting = $.post( 'content_add_proc.php', $(this).serialize() );
posting.done(function( data ) {
alert(data);
console.log(data);
loadadm('content.php','#top03');
});
});
I never get 'starting' in the console. Nor any errors for that matter.
howewer if i replace the div with this:
and click it, i get the 'test' in the console
so the DIV.click triggers, but the function doesn't execute
before you ask, there is the tag
i'll repeat: it's only copy paste from one server to another
Add a comment
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×