Jump to content

ivanpanchev

New Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by ivanpanchev

  1. Yes, that worked for me Ben.

     

    I had the same issue and spend some time researching.

     

    There is also another solution.

    In ajax call instead of

    $.ajax({
          type: "POST",
          url: "<?php echo SITE_PATH;?>/app/cms/edit.php",
          data: dataString,
          cache: false,
          success: function(html) { $('#cboxLoadedContent').html(html); }
    });
    

    can be used that:

    $.ajax({
          type: "POST",
          url: "<?php echo SITE_PATH;?>/app/cms/edit.php",
          data: {id: id, field: content, type: type},
          cache: false,
          success: function(html) { $('#cboxLoadedContent').html(html); }
    });
    

    and content variable gets it's value as usual:

    var content = $('#field').val();
    

  2. Hi,

    I bought killerphp video package Complete Web Programmer (with PHP and Javascript).

     

    And I'm verry happy with it! Thank you guys for this wonderfull video tutorial!

     

    I have 3 years of php nad javascript programming.

     

    I'm looking now for an open source project. I'll be verry happy to particpate as developer in an open source project, because my prortfolio is limited and I want to expand it with something professional.

     

    Can you give me some advise, some example of open source projects where I can participate as developer?

     

    Thank you

     

    Ivan

×
×
  • Create New...