mweldan
-
Parsing JSON into a table
i have created example codes for this: https://dl.dropbox.com/u/12386479/json_example.zip hope it helps.
-
Critique of web-app
How do you save the list of todos? Session I guess. nice idea. found a bug (i think), try toggle status button on and off a few times. will get this: http://i.imgur.com/i0gNB05.png
-
Clicking thumbnails to change main product image in a custom wordpress product page
you can use wordpress native gallery. you can later embed the gallery in page or post. [1] there are various ways to extend the functionality though, or use other gallery plugins. [1] http://codex.wordpress.org/Using_the_gallery_shortcode
-
Parsing JSON into a table
on success, convert json string to javascript object use: http://api.jquery.com/jQuery.parseJSON/ $.ajax({ type: "POST" ,url: "https://test.my.site.com/api/api/db/" ,contentType: "application/js…
-
WP: Quiz plugin?
When do you need this? Have you found it? I want to create a plugin to run quiz but I need someone to use it. I need about 1 - 2 weeks to finish this. Let me know if you are interested. Thanks
-
Scripts in queue
i will check for specified element to be ready first before use it for anything. $('.element1').ready(function(){ //something }); $('.element2').ready(function(){ //something else }); or if that element require dynamically cha…
-
Post and Get data from JS to PHP
I have no idea how to submit form with native js. in jQuery you can use $.post or $.get example: $.post('process.php', {field1: "value", field2: "value"}, function(result){ //result is response from process.php, suc…
-
Pagination problems with custom website
sure, it is. you already know how to get single post result. you can go from there. title and post excerpt of next article, you can use query_posts again to get next post content. it is possible to get next post image thumbnail, if you set it as …
-
Pagination problems with custom website
which one we currently talking about: image slideshow in front page? i can see it got prev - next link. it works .. single post page? no prev next link? check this: http://codex.wordpress.org/Next_and_Previous_Links
-
site that show the colors that look good togheter
color lover http://www.colourlovers.com/ not worked for blind color people.
-
Pagination problems with custom website
http://visualdesignworkshop.com/
-
Pagination problems with custom website
read this. http://codex.wordpress.org/Function_Reference/query_posts#Pagination http://codex.wordpress.org/Pagination#Adding_the_.22paged.22_parameter_to_a_query wordpress codex have quite a lot of information we want.
-
Pagination problems with custom website
http://pastie.org/5055088 line 27 , you did not pass current page number.
-
add wordpress setting_field dynamically
better create new table for your stuff. leave option for setting data only. easier that way
-
Pagination problems with custom website
try phpfiddle.org or pastie.org or gist.github.com
-
Populate dropdown from dynamically populated dropdown
sorry. was too sleepy on my previous comment. you can do this both from server and client side here is my example of how you can do it with php. form required to be submitted to process it. https://gist.github.com/3879053 if you're on word…
-
Is it possible to merge parts of a database together?
you have to write script to merge database structure, therefore you have to study the table structure first. once merged to wordpress you can follow how wordpress do things. since it's designed for building blog off course commenting is allowe…
-
Is it possible to merge parts of a database together?
table name may different, hash type for password too. and maybe a couple others. not hard.
-
jQuery: if tr row count?
i don't really understand what you want to achieve. for this: It's displaying the "before" and "after" dom manipulations on both tables, when I only want it on the second table. you can put different element id …
-
Populate dropdown from dynamically populated dropdown
how is table structure looks like? it should has column for parent menu id. from there you can check for each menu if it has parent menu or not.
-
How can I feed content from one webpage into another??
you can do something like this : http://api.jquery.com/load/ http://api.jquery.com/category/traversing/ from there you are free to process it any way you can.
-
get_post_meta() not working within a function
since you already used query_posts, you can also pass along array('tag'=>'tag-slug-name')
-
help with some jquery/javascript please
you can do something like this with jQuery: $(".submenu_head").live("click", function(){ $(".submenu_head").css('background', 'white'); $(this).css('background', 'red') }); av…
-
How can I feed content from one webpage into another??
sure you can. if all of this web pages are on same host i think you don't need curl. perhaps an easy way to do this is: put id or class on each element you want to be appear in other page . with javascript you can fetch it. i prefer jQuery. …
-
Wordpress: Embed a Plugin to a theme
ask people to install it themselves. put it on readme file. i don't know if it is possible to activate plugin when activating your theme. but i know you can call function when activating theme . check add_action or register_activation_hook et…
-
Can't install mysql for ruby
on ubuntu? installing libmysqlclient16-dev appears worked. otherwise use ruby-mysql apt-get install libmysqlclient16-dev root@prindu:~# gem list --local |grep mysql mysql (2.8.1) resource: http://www.ruby-forum.com/topic/49439
-
How can I feed content from one webpage into another??
it is hard to understand what you want to achieve. content is stored in database or flat file? is this general php problem or you're asking how to build thing in wordpress? if wordpress, check out how to make template file. if the question …
-
JQuery Banner Bug - Help Needed
i see these error messages: Uncaught TypeError: Object [object Object] has no method 'getElementsByTagName' prototype.js:835 Uncaught TypeError: Cannot set property 'width' of undefined lightbox.js:106 probably have conflict be…
-
JQuery Banner Bug - Help Needed
i gave it a try. i don't know the exact result you want. it may look like this http://jsfiddle.net/dS8W6/
-
Open youtube video on Lightbox in WordPress
let me know if you still having problem with this. will spent some time to create it. :D