css - How to properly integrate JQuery with IP.Board? -


i've been having trouble integrating jquery background chooser ip.board forum. i've tried including noconflict seems disable jquery completely. code i'm using this:

$("#btn").click(function(){     $("#image").css("backgroundimage", "url('"+$("#imageurl").val()+"')"); }); 

use jquery(elem) instead of $(elem) or if want use $ did:

jquery(function($) {     // jquery code goes here }); 

Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

jquery - How would i go about shortening this code? And to cancel the previous click on click of new section? -