lyleyboy
-
jQuery - Better understanding of .live();
Awww you guys rock, thanks for your help.
-
jQuery - Better understanding of .live();
Hey, Thanks. But. On what? This is intended to just happen on load. So $('').on('click',function(){()}; won't work cos it never gets clicked. etc etc. Cheers
-
how to make multi themes in my program like wordpress
Hey amis, We're gonna need way more information There are a million different ways this could be done. Try setting up a table with theme info in it. Store the templates and stylesheets. Then set the theme using the id of the theme in the tab…
-
php gig list not ordering AM-PM correctly
The first thing you need to do is to look in the database to see what format the date/time is in. Then we can look at adapting the SQL query.
-
Parsing Twitter feed
Hi All, In case it helps here is the code so far. JQuery get tweets
-
Setting focus to a textarea after it has been loaded via ajax .load()
Cheers for that but it doesn't work as the div was loaded after the DOM.
-
Setting focus to a textarea after it has been loaded via ajax .load()
Anyone out there know how to do this? I'm still stuck. Cheers
-
HTML Table to Excel
Your best bet would be to write the data out into a text file. Name the file whatever.csv and put a comma between the fields that you write out. There you have a CSV file. Which, although not strictly an Excel formatted file will open in Excel.
-
Assign a Javascript variable to a PHP variable
On the select just have an onclick with window.location.href but add in ?sort=ORDER BY Price DESC Then in the page using PHP get the $_GET['sort'] variable and appending it to your database query string.
-
how to unlink multiple images !!
You need to loop through the records deleting each image in turn.
-
New Wordpress Theme Feedback
Hi Luminated, Thanks for that. I appreciate you thoughts. I'm very concious that I'm a developer and not a designer and that I can't design for toffee. I'll have a think about you're thoughts. With regards the background …
-
(SUPER JAVASCRIPT NOOB) is it possible to create a horizontal sliding gallery for a website
Look to JQuery, there are a world of plugins that will do this for you.
-
setting up an E-commerce page with PHP and Paypal
There is no 'following'...
-
Wordpress Site URL
Silly as it sounds www.google.com is different from google.com in as far as the domain name goes. So Wordpress looks to see if the current domain matches what's in the options and displays the bar. Hope that helps.
-
need code for this EMAIL FORM
Hi, Not wishing to sound rude but I think you may be out of your depth here. A couple of things 1, The form action needs to point to the PHP page that you want to send the email. At the moment it's pointing to an ASP page. 2, The form method …
-
user personal page
What you are looking at is not a ten minute thing. It's also not something that Wordpress can natively do. You will need to build a database and then interact with that to create the functionality your looking at.
-
(yawn) - My boring button. Thoughts on how to spice it up?
Try making the text a little darker and adding a 1px white text shadow. Also a very slight vertical gradient may help. I think it looks nice the way it is to be honest. Don't fall into the trap of adding all the bells and whistles just becaus…
-
Making an edit entry form for a database
What you have suggested seems fine. Just a quick bullet point list of things to do. The list is displayed somewhere. The URL has the ID of the entry in a get variable. In your page do a query to find all the info for that entry. the sql query woul…
-
Move the background to left?
I think you need to give more detail. Can you post your code? or a link to the site?
-
Change Dollars into Euros on the editable invoice
It's these bit's you're looking for $('#subtotal').html("$"+total); $('#total').html("$"+total); Change to $('#subtotal').html("E"+total); $('#total').htm…
-
background image not sticky at the bottom
position: absolute; bottom: 0; right: 0;
-
my wordpress doesn't recongnize in form processor file
Not sure I know the answer but as a quick and dirty hack why not include the bits you need in hidden form fields?
-
Using frames
hmmm, In which case what would you say was the best way to store the form entries which will be radio buttons and a text box? Cheers
-
Fade Out between pages
That will be javascript. 1, On click fade the page elements out. 2, Get JS to redirect to the new page.
-
How do I create a shape of a tag, only using css?
Arrgh. Sorry I forgot it would format the < and >. They should be < >
-
How do I create a shape of a tag, only using css?
Hmmm, Not sure what you're trying to achieve. Why not just stick to < and > then style them up as required.