Created
May 16, 2013 12:34
-
-
Save yratof/5591401 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var jbtle = jQuery(".jobtitle a").text(); | |
jQuery(document).ready(function($){ | |
$(".jobtitle a").each(function(){ | |
$(this).click(function (){ | |
$("#thejobtitle").html(jbtle); | |
}); | |
}); | |
}); |
forsvunnet
commented
May 16, 2013
How would you apply the html to an input? #the_job value?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment