ivanpanchev
-
Posts
4 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Downloads
Gallery
Store
Posts posted by ivanpanchev
-
-
-
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();
-
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
Amazing : Javascript/HTML5/PHP for mobile application?! On all platforms?!
in Web Design News
Posted
Hi,
I was pretty surprised recently. There are cross platforms like appmobi, titanium stuido (and maybe more) that are making possibe the development ot mobile applications with Javascript/HTML5/PHP. And they work on iOS and Android. It is possible now to write once and it will work on almost all mobile platforms. Sounds just great!
What do you think?