Jump to content

Recommended Posts

Thanks in advance for any help guys

 

<script type="text/javascript">

 

 

function showDialog() { $('#box').fadeIn(250); $('#box').fadeTo(0.5); }

function hideDialog() { $('#box').fadeOut(250); }

 

</script>

 

<?php

   

$strLink = "<a href='viewTicket.php?id={$row['id']}'>$strName</a>";

 

 

?>

here is the correct method.

 

<script type="text/javascript">


function showDialog() { $('#box').fadeIn(250); $('#box').fadeTo(0.5); }
function hideDialog() { $('#box').fadeOut(250); }

</script>

<?php
    
$strLink = "<a href='viewTicket.php?id=" .$row['id']. "'>" .$strName. "</a>";


?>

it should work :)

anton_1, are you trying to use the

$strLink = "<a href='viewTicket.php?id={$row['id']}' class='simpledialog'>$strName</a>";

to fade in an id called box? you are already using the href to link it to another page thus the simpledialog function cannot be used.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.