TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 10-07-2009, 06:52 PM   #1 (permalink)
Jmz
The Acquainted
 
Join Date: Oct 2007
Location: Newcastle, UK
Posts: 113
Thanks: 3
Jmz is on a distinguished road
Default Best way to echo some js

I have an if statement that will echo some javascript if certain things are true.

I'm currently writing it as:

PHP Code:
<?php
if($x=1){
?>
        <script type="text/javascript">
            $(document).ready(function(){
                $('.boxgrid.captionfull').hover(function(){
                    $(".cover", this).stop().animate({top:'30px'},{queue:false,duration:160});
                }, function() {
                    $(".cover", this).stop().animate({top:'150px'},{queue:false,duration:160});
                });
            });
        </script>
<?php
}
?>
Obviously that's not my real if, it's just to give you an idea.

I'm sure there must be a better way to do it than this?
__________________
Free CSS Tutorials
Send a message via MSN to Jmz
Jmz is offline  
Reply With Quote
Old 10-07-2009, 08:00 PM   #2 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

Looks OK to me... You may want to consider using PHP's short tags for this too:

PHP Code:
<?php if($x==1): ?>

    javascript...

<?php endif; ?>
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Advance Pagination Class Rendair Advanced PHP Programming 13 02-01-2013 11:08 AM
World of Warcraft Armory xml Grabber with cURL mortisimus Show Off 144 06-25-2012 12:34 PM
print() vs echo() allworknoplay Absolute Beginners 9 05-27-2009 01:46 PM
My dynamic menu lesP Advanced PHP Programming 7 01-21-2008 10:28 PM
I present... my first original script obolus Absolute Beginners 14 12-29-2007 04:05 AM


All times are GMT. The time now is 05:33 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design