I'm trying to get my secondary links (which are using primary links as the source, so the children of the primary links) to display as a dropdown on every page. However, since (im guessing) there is no active trail on the front page, the secondary links aren't displayed.
How do I set them so that I can display the secondary links on th...
$(document).ready(function(){
$("a[href*='http://']:not([href*='"+location.hostname+"'])").attr("target","_blank");
$("a[target!='_blank'][target!='_top']").live('click', function(){
$("#actualcontent").html('<center><img src="/deltasite/uploads/smallloader.gif"></center>');
var url=$(this).attr("href")+'?jquery=1';
$("#actualconten...
On my new site, I have several different hover states for links. One swaps out a background image for the logo. One swaps out a different background image for the main nav. And normal inline links change background colors via CSS. I can't figure out a way to automatically have all a tags animate gracefully to their hover state.
It doesn...
I've seen posts here on Stackoverflow that describe how to allow users to be directed to apps on the app store.
Is there a way to link directly to the rating and comments form in the App Store?
...
I'm having an issue with this script and for the life of me I can't figure out what's wrong with it. Quick run through what I have:
The HTML:
<ul>
<li id="wildcard_1">
<div>
<a href="#">test</a>
</div>
</li>
</ul>
<a href="#" class="reset">reset</a>
The jQuery:
// Main function
$("[id^=wildcard_]"...
Hi All,
I have a hard time figuring out what code this website (hotair.com) is using for their quicklinks -- it's the Headline section. I' trying to create the same table layout but with one column.
I was using the Minipost plugin, but I figure there must be an easier way to maintain links from feeds, which I can customize the headlin...
Hi,I'm trying to have the users click on the links in an article, but have the results open in the same article (so the article reloads and open the target page in itself, like it would if it was in an iframe, right now it reloads the whole page), I do not want to use the main menu, and would also like to avoid using iframes, normally if...
I am working on a website which loads its data via AJAX. I also want that the whole website can be crawled by search engines like google and yahoo.
I want to make 2 versions of the site...
[1] When a user comes the hyperlinks should work just like GMAIL (#'ed hyperlinks)
[2] When a crawler comes the hyperlinks should work normally (AJAX...
Since git does not recognize symbolic links that point to outside of the repository.
is there any problem using hard links ?
Git could break them ?
Can point me to detailed information ?
...
I am working on a project that requires me to collect a large list of URLs to websites about certain topics. I would like to write a script that will use google to search specific terms, then save the URLs from the results to a file. How would I go about doing this? I have used a module called xgoogle, but it always returned no results.
...
hi,i have some problem that in articles its not showing the navigation links even i have set the perameters yes and default plugin is set.
so plz help me out for the same
Thanks
...
But of a confusing title so let me explain. I have an array of links like this:
http://somesite.com/videoplayback?ip=81.0.0.0&sparams=id,expire,ip,ipbits,itag,algorithm,burst,factor&fexp=905602&algorithm=throttle-factor&itag=34&ipbits=8&burst=40&sver=3&expire=1285056000&key=yt1&signature=690F9475D...
Hi guys!
I want to do a pie chart in matplotlib.
This pie chart will be a representation of two variables: male and female.
That's easy to do :)
What I would like to do next, I'm not even sure if it's possible to do with matplotlib, I would like to make these two variables clickable so if I click on male, I would see another page with...
I am looking to create vanity url for my users. How can i do it?
I want something like username.domain.com
My second question is, can i also customize this upon client requests? Like let's say, Client says add a feature to my account, will I be able to do it since it's almost like a separate site within my site?
...
i have this js bookmarklet that makes all the current page's font colors black.
what i wanted is to maintein the effect of the bookmarklet even clicking on the page's links
javascript:(
function(){
var newSS, styles='* { color: black !important }';
if(document.createStyleSheet) {
document.createStyleSheet("javascript:'"+styles+"'"...
i have this jquery code that retrieves external content using ajax, without refereshing the page, and i also have a navigation links that has the different background color when user is on the current page.
the jquery code:
function loadPage(url) //the function that loads pages via AJAX
{
url=url.replace('#page',''); //strip th...
can anybody tell me a way to get all the href attributes(links) in a web site using javascript?if you could give me a code example, i will be most thankful.
...
how can i get links in a web page without loading it? (basically what i want is this. a user enters a URL and i want to load all the available links inside that URL.) can you please tell me a way to achieve this
...
I want to change the behaviour on a "a href" link but only on ones that have a custom made attribute called open
e.g.
<a href="#" action="open">Link 1</a>
<a href="http://www.google.co.uk/"></a>
I want to change only the behaviour of the first one. So I do a:
jQuery('a[action|=open]').live('click', function(evt) {
do ...
Hello there,
I'm working with a CheckBox that needs to hace some links appearing as text, not urls. I'm using something like this:
TransformFilter transformer = new TransformFilter() {
@Override
public String transformUrl(Matcher match, String url) {
Log.d(" ", match.toString() + " |||...