Hi, I use cKeditor, and I've managed to implement it into my staff panel, looks great!
however my site works with AJAX, so on links, I need it to be rel="noAJAX" how would I do this with cKeditor? and making sure the target="_blank".
Because some of my staff don't know simple html, and I wanted to know if there was a quick way of editing this so it automatically sets the rel="noAJAX" thing.
however my site works with AJAX, so on links, I need it to be rel="noAJAX" how would I do this with cKeditor? and making sure the target="_blank".
Because some of my staff don't know simple html, and I wanted to know if there was a quick way of editing this so it automatically sets the rel="noAJAX" thing.
Re: Quick Question
Try this code
<a href="/xx">AJAX</a>
This is non-AJAX link:
<a href="/xx" rel="noajax">No AJAX</a>
Good luck!