Search:
Type: Posts; User: sciguyryan
Search :
Search took 0.05 seconds.
Yes. The part I listed in my last post seems to give an undefined answer. It should give the URL but it doens't and I'm not sure why that is.
No difference at all. Since the tabs are generated dynamically by the script doing that to each tab manually shouldn't be needed.
It looks like the issue is that |url = $.data(ui.tab,...
Yeah. You can see the test page here. Since the jQuery UI stuff is generated by the functions. I'm not sure how much help it'll be though.
Hi guys.
This has been irritating me for a while so hopefully someone here can help me out with it.
I'm setting up a tab bar where I want each tab to open the URL in the current page (not via...
Have a look here: www.php.net/header
Cheers,
Ryan Jones
If there any way to detect if a PHP error has occured in the current page? IF so how can this be done?
Cheers,
RyanJ
From what I can see the site you provided uses a lot of flash, the VBScript and the Javascript seem to be used to validate the plugins and then to write the actual HTML tag's.
Other than that...
Ah, I solved it:
for (var i = 0; i <= MemberListTDs.length; i++){
should be...
Yes, the "i" variable is there because I am trying to loop through an array and the "i" is the current item being checked :)
Cheers,
RyanJ
OOOPs, sorry :rolleyes:
http://s9.invisionfree.com/FS_Code_Tests/index.php?act=Members
RyanJ
http://s9.invisionfree.com/FS_Code_...php?act=Members
As you can see in the "Name" column there are usernames and after that is the text added by the script.
Cheers,
RyanJ
Ah, I see, thank you for your Help Charles.
And yes - I will be using true DOM - this is a test version to see how the code can be done :)
it seems to be being set to an object but that is...
Hi evryone,
Its been quite a while since I last used Javascript so, I'm a bit rusty ;)
I am using the following code here: http://s9.invisionfree.com/FS_Code_Tests/index.php?act=Members
I am...
Something like this:
<form action="" method="post">
<input type="checkbox" id="Check_1" Onclick="window.location.href = 'yourpage.html';" />
</form>
Cheers,
Try this:
<div id="myFurnaceText1_1">
<script type="text/javascript">
<!--
document.write('<input type="text" id="lblFurnameName1" value="Furname Name: ' + furnName[0] + '" />');
//-->...
I am guessing that you are using textboxes for the name inputs:
<script type="text/javascript">
<!--
var Surname = docuent.getElementById("Surname");
// Assuming that your textboxe's ID is...
Sorry byt Javascript can not directly access anyhting outside the server or the page it is running on due to security restrictions.
RyanJ
This can not be done through javascript and as far as I'm aware the method you'r using at the moment will only work in IE anyway.
RyanJ
Yes, you are correct this should be in the Development >> HTML section.
Well, you'll need two things, the first is you'll need a method for the form to submit to and a submit-type button to...
Unlike some languages you do not have to do a type designation for Javascript, so this is wrong:
<script language="javascript">
function addSeat(value)
{
var list =...
That sounds very useful and as you've said ignor them and they vanish :D
Cheers,
RyanJ
I'm not exactly wshure what your doing but why don't you try and use eval()?
If you want the link to the PHP documentation then have a look in my signature.
RyanJ
Glad to help,
Cheers.
RyanJ
Why not just set the style.display property to none while you don't need them, it will have the same effect but it will be easy to change too.
RyanJ