Welcome Guest, Not a member yet? Register   Sign In
how to easily make ci anchors target blank
#1

[eluser]dhaulagiri[/eluser]
How do i easily make this open in new window ?

Code:
View site <?php echo anchor(base_url(), 'Here')?>
#2

[eluser]n0xie[/eluser]
If you want to do it the 'nice' way take a look here:
http://www.badlydrawntoy.com/2009/03/03/...ery-redux/
#3

[eluser]mi6crazyheart[/eluser]
Try this...
Code:
$atts = array(
              'target' => '_blank'              
            );
echo anchor(base_url(), 'Here', $atts);

For more details: http://ellislab.com/codeigniter/user-gui...elper.html
#4

[eluser]Hernando[/eluser]
View site <?php echo anchor_popup(base_url(), 'Here')?>




Theme © iAndrew 2016 - Forum software by © MyBB