Need Programmers Create A Site

Need Programmers Create A Site
Hi,

I have the design and graphics of the site ready, now I need programmers to create the programming for what the site needs to do.

Here’s how the site operates:

1) It allows anyone (without registering) to submit content (articles or ebooks).

2) The submission is sent to me (via email and in my admin back end).

3) If I approve the submitted information, it is displayed on the site.

There are other features like the ability to reject submissions and so on…

I created step by step documents to make it as clear as possible about all the details. You can see a sample here:

Administration Document:
http://docs.google.com/View?id=dc728gcg_2gm3j4mf4

My top priority is that it is done by experienced programmers who love what they do.

If you think you really can do this, let me know any previous projects you did and I give you all documents so you can look at all of them.

I don’t mind if this is in php or things like that, I’m not an expert in these, I just want membership to have the features I need!

Thanks,
Mehmet Onatli

Intranet Site Redesign

Intranet Site Redesign
A business unit within our company has published a website that is functional – but not very aesthetically pleasing…http://retailmgnt.com/sandbox/backend.php (user: admin/admin12)

The layout and content are fine…I would like to provide a few alternative options to this group in an effort to liven this site up a little (or to allow this group to offer their users a “theme chooser”). For corporate color schemes, the company’s public website can be found at www.clubmarketing.com (which might be a little too quiet, though).

Travel Information Writing

Travel Information Writing
Hi

I need somebody to write some travel information on Dublin Ireland.

I will give you a list of places/things for each category (hotels, tours, museums etc) and I need you to write approx 200-250 words on each places (you can get this information from their website but you must rewrite it in your own words).

You must also collect there Name, Address & Contact details and have a title and description written as well. (see attached sample)

So there are 50 places/tours/museums etc that I need the 200-250 words written for. I will give you a list of all of them so you just need to rewrite content and collect contact details. It should be very easy to write as you just need to change/rewrite the information from the website.

Need this done asap. Please give accurate start and finish time in PMB.

Thanks

Smarty Php Quick Job

Smarty Php Quick Job
Hello and thanks for viewing my project.

Please message me via yahoo messanger once I choose your bid.

I need someone available to start right now for the next 1 hour to work until complete right now.

This is a very small job and shouldn’t take long

Project:
We need to write script to make the menu on the left collapse and expand when u click the category …

it should also have .css implimented class=’cat_text’ and “subcat_text” which is already coded in my .css but you need to add it to the menu code properly

add a small respective + or – graphic for the category …

Summary

when you click a category …refresh the page and expand all the subcategories ..

if its already expanded ..and you click a category ..then it should refresh the page and implode it back to normal

add a small respective + or – graphic for the category …

wwww.alliedtrustdiamondstore.com see the choose category menu on left

thanks

WordPress Jcarousel Columns

WordPress Jcarousel Columns
Trying to setup up a content area that would have 2 columns 3 rows, which would have 6 items on part 1, part 2 would be the same. So when you load the homepage it would load 12 posts but only show 6 at a time, until you press the next or prev button. When you click next or prev the page can not reload, would have to use jcarousel setup to work with a specific category. I currently have the jcarousel setup just need someone to finish the code to show the columns and rows. If you need an example please ask.

Simple Webpage Setup On Script

Simple Webpage Setup On Script
I already have a full sales page/download template done. I just need someone to upload the sales page and download page and integrate with dlguard script which is already installed on hostgator server. I will be available to help answer any questions during any step of the project.

Details of project

-quick edit of sales page to add dlguard/paypal payment code button and dlguard login button
-have sales page uploaded to site and integrated with dlguard script.
-have download page template uploaded to site

I look forward in having this project completed as soon as possible.

Thanks!

Manipulating the DOM with jQuery: 10+ useful code snippets

Manipulating the DOM with jQuery: 10+ useful code snippets

Add a CSS class to a specific element

A very clean way to change an element look and feel is to add a css class, instead of adding inline styles. Using jQuery, this is pretty easy to do:

$('#myelement').addClass('myclass');

Removing a CSS class from a specific element

It’s great to be able to add some CSS classes, but we also need to know how to remove unwanted classes. The following line of code will do that:

$('#myelement').removeClass('myclass');

Check if a specific element has a CSS class

If your application or site is frequently adding and removing classes to a particular element, it can be very useful to be able to check out if an element has a certain CSS class.

$(id).hasClass(class)

Switch CSS using jQuery

As we saw with the previous examples, adding or removing css styles to an element is very simple using jQuery. But what if you want to completely remove the document css file and attach a new stylesheet? Good news, it is extremely simple as well, as shown in the following example:

$('link[media='screen']').attr('href', 'Alternative.css');

Source: http://addyosmani.com/blog/50-jquery-snippets-for-developers/

Append HTML to an element

When you need to append some html to an element, the append() method is a life saver:

$('#lal').append('sometext');

Check if an element exists

When working with Javascript, we often need to check if an element exists or not. Using jQuery and the length property, it is very simple to do: If length == 0, no elements are used on the page. Otherwise, some are used.

if ($('img').length) {
    log('We found img elements on the page using "img"');
} else {
    log('No img elements found');
}

Source: http://jqueryfordesigners.com/element-exists/

Get the parent element of an element

When working with the DOM, you may need to know which element is the direct parent of another element. The closest() method will let you know:

var id = $("button").closest("div").attr("id");

Source: http://stackoverflow.com/questions/545978/finding-the-id-of-a-parent-div-using-jquery

Get element siblings

The siblings() method is a very handy tool to get siblings of an element. As shown below, using this method is extremely simple:

$("div").siblings()

Remove an option from a select list

When working with select lists, you may want to update the content according to the user actions. To remove an option from a select list, the following code will do the trick:

$("#selectList option[value='2']").remove();

Source: http://calisza.wordpress.com/2009/03/29/6-jquery-snippets-you-can-use-to-manipulate-select-inputs/

Get the selected option as text

Extremely useful when you need to quickly check out what a visitor selected from your select list.

$('#selectList :selected').text();

Apply a “zebra” effect on tables

When using tables, it is a good idea, for better readability, to give a different style to one line out of two. Using jQuery, this can be done easily, without any additional html markup.

$("tr:odd").addClass("odd");

Source: http://web.enavu.com/tutorials/top-10-jquery-snippets-including-jquery-1-4/

Count children of an element

If you’d like to count how many div elements are children of #foo, the following line will let you know. Simple and efficient!

$("#foo > div").length

Source: http://tympanus.net/codrops/2010/01/05/some-useful-javascript-jquery-snippets/

Like CatsWhoCode? If yes, don’t hesitate to check my other blog CatsWhoBlog: It’s all about blogging!

Manipulating the DOM with jQuery: 10+ useful code snippets

Website Duplication

Website Duplication
I need a website designed with all the same functions, pages and layout as eight by eight.com You can use current content as place markers as I will write my own. All images need to be new and must be designed by you, with my input. All images can be similar in style to current site, but i will give you the text and ideas to create the images. Site must be coded well and be seo friendly. I want the exact same site, the same amount of pages, we just need to have new images as I do not want to run into copyright infringement. As I said earlier I will re-write all the text.

Site needs to be built using a CMS (not WordPress)

I also need a logo design for the site.

I need to see examples of your work, please provide your 5 best examples.

Please do not give me a canned response they will be deleted and ignored.

Thanks,

DW

Copy & Paste Job

Copy & Paste Job

Hi, scriptlancer I have a job for you. It’s simple copy & paste job.

I will provide you 10k web link. You have to open each link and copy the Name from ad details then paste it into my excel sheet.

Budget is $30
Time duration: maximum 3 days after project was awarded

winner will get more future projects, if I satisfy with your work.

Thank you

WordPress Surgery Project

WordPress Surgery Project
Serious WordPress and SEO gurus only.

I have a website which is currently mixed with “static” html pages, and a wordpress blog in /blog/.

1 ) I want to convert the whole site to wordpress, so that wordpress is serving its pages from /

2) I must maintain links with this move, or otherwise 301 “old, static pages” to “new wordpress pages”.

3) A new, flexible theme required (I dont mind buying a commercial theme as a base for the template). The design should be as close as possible to the current site design.

4) The new design should include a dynamic menu navigation system.

5) Project is considered complete when new site is up, running, and identical to the old site.

SERIOUS OFFERS ONLY PLEASE. Project is urgent.