doddsey_65 Posted October 5, 2010 Share Posted October 5, 2010 hi, i am looking for some code which will automatically update a div. the div will be updated to what the user types in the textbox automatically. I did have this feature working but for some reason it stopped working. If anyone could point me in the right direction or tell me why my code isnt working anymore. Heres the code: <script src="<?php echo SITE_ROOT; ?>/js/jquery.min.js" type="text/javascript"> </script> <script src="<?php echo SITE_ROOT; ?>/js/jquery.bbcode.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function(){ $("#test").bbcode({}); process(); }); var bbcode=""; function process() { if (bbcode != $("#test").val()) { bbcode = $("#test").val(); $.get('bbParser.php', { bbcode: bbcode }, function(txt){ $("#preview").html(txt); }) } setTimeout("process()", 2000); } </script> Link to comment https://forums.phpfreaks.com/topic/215172-auto-update-preview/ Share on other sites More sharing options...
Adam Posted October 5, 2010 Share Posted October 5, 2010 Could be many things. Do you have a link to a page we can test it (and user / pass if needed)? Link to comment https://forums.phpfreaks.com/topic/215172-auto-update-preview/#findComment-1119216 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.