Ria
Ria

Reputation: 526

Show url inside a tab

This is probably a very easy question however I have been banging my head for the last week on how to solve this problem

I am using query tabs In say tab 6 I have got a link to a php file. What I want to do is when tab 6 is opened display the url e.g. my folder/file.php?p=x&p=y&p=z .inside the tab.

I have tried the following:

<img scr="folder/file.php?p=x&p=y&p=z">

also

<a href="folder/file.php?p=x&p=y&p=z"<scr=""></a> 

However noting will display Is there anybody who can help? thanks for looking

Upvotes: 0

Views: 64

Answers (1)

AO_
AO_

Reputation: 2874

<img scr="folder/file.php?p=x&p=y&p=z">

Should be

<img src="folder/file.php?p=x&p=y&p=z" />

notice the typo in scr/src ^

Upvotes: 1

Related Questions