Jump to content

auto update preview


doddsey_65

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.